@zapier/zapier-sdk-cli 0.77.8 → 0.78.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 +17 -0
- package/README.md +3 -3
- package/dist/cli.cjs +462 -143
- package/dist/cli.mjs +462 -143
- package/dist/experimental.cjs +561 -242
- package/dist/experimental.d.mts +1 -1
- package/dist/experimental.d.ts +1 -1
- package/dist/experimental.mjs +560 -241
- package/dist/{extensions-DDUiDbHe.d.mts → extensions-B2RUri85.d.mts} +6 -2
- package/dist/{extensions-DDUiDbHe.d.ts → extensions-B2RUri85.d.ts} +6 -2
- package/dist/index.cjs +562 -243
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +561 -242
- package/package.json +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _zapier_zapier_sdk from '@zapier/zapier-sdk';
|
|
2
|
-
import { AppItem, Manifest, PluginSurface, MethodPlugin, LeafSummary, PluginSummary, GetProfilePluginProvides, ListConnectionsPluginProvides, ZapierSdk, Plugin, PluginProvides } from '@zapier/zapier-sdk';
|
|
2
|
+
import { AppItem, Manifest, PluginSurface, MethodPlugin, LeafSummary, PluginSummary, GetProfilePluginProvides, ListConnectionsPluginProvides, apiPluginRef, resolveCredentialsPluginRef, eventEmissionPluginRef, sdkOptionsPluginRef, ZapierSdk, Plugin, PluginProvides } from '@zapier/zapier-sdk';
|
|
3
3
|
import * as _zapier_kitcore from '@zapier/kitcore';
|
|
4
4
|
import * as zod from 'zod';
|
|
5
5
|
import { z } from 'zod';
|
|
@@ -784,7 +784,11 @@ type SetupImportPlugins = readonly [
|
|
|
784
784
|
MethodRef<"listConnections", ListConnectionsPluginProvides["listConnections"]>,
|
|
785
785
|
MethodRef<"login", LoginPluginProvides["login"]>,
|
|
786
786
|
MethodRef<"logout", LogoutPluginProvides["logout"]>,
|
|
787
|
-
MethodRef<"signup", SignupPluginProvides["signup"]
|
|
787
|
+
MethodRef<"signup", SignupPluginProvides["signup"]>,
|
|
788
|
+
typeof apiPluginRef,
|
|
789
|
+
typeof resolveCredentialsPluginRef,
|
|
790
|
+
typeof eventEmissionPluginRef,
|
|
791
|
+
typeof sdkOptionsPluginRef
|
|
788
792
|
];
|
|
789
793
|
declare const setupImports: SetupImportPlugins;
|
|
790
794
|
type SetupPlugin = MethodPlugin<"setup", SetupOptions, Promise<void>> & LeafSummary<"", "setup", typeof setupImports>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _zapier_zapier_sdk from '@zapier/zapier-sdk';
|
|
2
|
-
import { AppItem, Manifest, PluginSurface, MethodPlugin, LeafSummary, PluginSummary, GetProfilePluginProvides, ListConnectionsPluginProvides, ZapierSdk, Plugin, PluginProvides } from '@zapier/zapier-sdk';
|
|
2
|
+
import { AppItem, Manifest, PluginSurface, MethodPlugin, LeafSummary, PluginSummary, GetProfilePluginProvides, ListConnectionsPluginProvides, apiPluginRef, resolveCredentialsPluginRef, eventEmissionPluginRef, sdkOptionsPluginRef, ZapierSdk, Plugin, PluginProvides } from '@zapier/zapier-sdk';
|
|
3
3
|
import * as _zapier_kitcore from '@zapier/kitcore';
|
|
4
4
|
import * as zod from 'zod';
|
|
5
5
|
import { z } from 'zod';
|
|
@@ -784,7 +784,11 @@ type SetupImportPlugins = readonly [
|
|
|
784
784
|
MethodRef<"listConnections", ListConnectionsPluginProvides["listConnections"]>,
|
|
785
785
|
MethodRef<"login", LoginPluginProvides["login"]>,
|
|
786
786
|
MethodRef<"logout", LogoutPluginProvides["logout"]>,
|
|
787
|
-
MethodRef<"signup", SignupPluginProvides["signup"]
|
|
787
|
+
MethodRef<"signup", SignupPluginProvides["signup"]>,
|
|
788
|
+
typeof apiPluginRef,
|
|
789
|
+
typeof resolveCredentialsPluginRef,
|
|
790
|
+
typeof eventEmissionPluginRef,
|
|
791
|
+
typeof sdkOptionsPluginRef
|
|
788
792
|
];
|
|
789
793
|
declare const setupImports: SetupImportPlugins;
|
|
790
794
|
type SetupPlugin = MethodPlugin<"setup", SetupOptions, Promise<void>> & LeafSummary<"", "setup", typeof setupImports>;
|