@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/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-CU5Oy_Wv.mjs';
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
- export { type CliCommandExecutedEvent, type CliCommandExecutedEventData, type CliEventContext, RESERVED_CLI_OPTIONS, ReservedCliParameter, SHARED_COMMAND_CLI_OPTIONS, type ZapierCliSdkOptions, buildCliCommandExecutedEvent, createZapierCliSdk, getReservedCliOption };
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-CU5Oy_Wv.js';
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
- export { type CliCommandExecutedEvent, type CliCommandExecutedEventData, type CliEventContext, RESERVED_CLI_OPTIONS, ReservedCliParameter, SHARED_COMMAND_CLI_OPTIONS, type ZapierCliSdkOptions, buildCliCommandExecutedEvent, createZapierCliSdk, getReservedCliOption };
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 };