@zapier/zapier-sdk-cli 0.68.0 → 0.70.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/README.md +26 -7
- package/dist/cli.cjs +1719 -293
- package/dist/cli.mjs +1721 -297
- package/dist/experimental.cjs +1793 -30
- package/dist/experimental.d.mts +1 -1
- package/dist/experimental.d.ts +1 -1
- package/dist/experimental.mjs +1791 -33
- package/dist/{extensions-CU5Oy_Wv.d.mts → extensions-DSCQgX9d.d.mts} +177 -2
- package/dist/{extensions-CU5Oy_Wv.d.ts → extensions-DSCQgX9d.d.ts} +177 -2
- package/dist/index.cjs +1804 -33
- package/dist/index.d.mts +13 -2
- package/dist/index.d.ts +13 -2
- package/dist/index.mjs +1800 -35
- package/package.json +6 -4
- package/templates/setup/zapier-slack-test.mjs +38 -0
- package/templates/setup/zapier-slack-test.ts +38 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ZapierSdkOptions, BaseEvent } from '@zapier/zapier-sdk';
|
|
2
|
-
import { E as Extension, Z as ZapierSdkCli } from './extensions-
|
|
2
|
+
import { E as Extension, Z as ZapierSdkCli } from './extensions-DSCQgX9d.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'zod/v4/core';
|
|
5
5
|
|
|
@@ -125,4 +125,15 @@ declare function getReservedCliOption(name: ReservedCliParameter): Readonly<CliO
|
|
|
125
125
|
/** CLI options automatically added to every SDK-generated command. */
|
|
126
126
|
declare const SHARED_COMMAND_CLI_OPTIONS: readonly Readonly<CliOption>[];
|
|
127
127
|
|
|
128
|
-
|
|
128
|
+
/**
|
|
129
|
+
* The kebab-case flag name (without leading dashes) of a boolean param's
|
|
130
|
+
* disable spelling, or undefined when the param's schema doesn't declare
|
|
131
|
+
* `negatable` metadata. Exported for the docs generator, so the CLI's
|
|
132
|
+
* rendering of the metadata lives in one place.
|
|
133
|
+
*/
|
|
134
|
+
declare function negationKebabName(param: {
|
|
135
|
+
name: string;
|
|
136
|
+
negatable?: true | string;
|
|
137
|
+
}): string | undefined;
|
|
138
|
+
|
|
139
|
+
export { type CliCommandExecutedEvent, type CliCommandExecutedEventData, type CliEventContext, RESERVED_CLI_OPTIONS, ReservedCliParameter, SHARED_COMMAND_CLI_OPTIONS, type ZapierCliSdkOptions, buildCliCommandExecutedEvent, createZapierCliSdk, getReservedCliOption, negationKebabName };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ZapierSdkOptions, BaseEvent } from '@zapier/zapier-sdk';
|
|
2
|
-
import { E as Extension, Z as ZapierSdkCli } from './extensions-
|
|
2
|
+
import { E as Extension, Z as ZapierSdkCli } from './extensions-DSCQgX9d.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'zod/v4/core';
|
|
5
5
|
|
|
@@ -125,4 +125,15 @@ declare function getReservedCliOption(name: ReservedCliParameter): Readonly<CliO
|
|
|
125
125
|
/** CLI options automatically added to every SDK-generated command. */
|
|
126
126
|
declare const SHARED_COMMAND_CLI_OPTIONS: readonly Readonly<CliOption>[];
|
|
127
127
|
|
|
128
|
-
|
|
128
|
+
/**
|
|
129
|
+
* The kebab-case flag name (without leading dashes) of a boolean param's
|
|
130
|
+
* disable spelling, or undefined when the param's schema doesn't declare
|
|
131
|
+
* `negatable` metadata. Exported for the docs generator, so the CLI's
|
|
132
|
+
* rendering of the metadata lives in one place.
|
|
133
|
+
*/
|
|
134
|
+
declare function negationKebabName(param: {
|
|
135
|
+
name: string;
|
|
136
|
+
negatable?: true | string;
|
|
137
|
+
}): string | undefined;
|
|
138
|
+
|
|
139
|
+
export { type CliCommandExecutedEvent, type CliCommandExecutedEventData, type CliEventContext, RESERVED_CLI_OPTIONS, ReservedCliParameter, SHARED_COMMAND_CLI_OPTIONS, type ZapierCliSdkOptions, buildCliCommandExecutedEvent, createZapierCliSdk, getReservedCliOption, negationKebabName };
|