- Add Strike API credentials configuration - Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates) - Add comprehensive operation descriptions for all resources - Include CLAUDE.MD documentation - Set up build configuration with TypeScript, ESLint, and Prettier 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
593 B
Bash
26 lines
593 B
Bash
#!/bin/zsh
|
|
|
|
# Borrowed from grunt-cli
|
|
# http://gruntjs.com/
|
|
#
|
|
# Copyright (c) 2012 Tyler Kellen, contributors
|
|
# Licensed under the MIT license.
|
|
# https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
|
|
|
|
# Usage:
|
|
#
|
|
# To enable zsh <tab> completion for gulp, add the following line (minus the
|
|
# leading #, which is the zsh comment character) to your ~/.zshrc file:
|
|
#
|
|
# eval "$(gulp --completion=zsh)"
|
|
|
|
# Enable zsh autocompletion.
|
|
function _gulp_completion() {
|
|
# Grab tasks
|
|
compls=$(gulp --tasks-simple)
|
|
completions=(${=compls})
|
|
compadd -- $completions
|
|
}
|
|
|
|
compdef _gulp_completion gulp
|