@zapier/zapier-sdk-cli 0.43.0 → 0.43.3
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 +26 -0
- package/dist/cli.cjs +434 -519
- package/dist/cli.mjs +437 -522
- package/dist/index.cjs +436 -521
- package/dist/index.d.mts +395 -23
- package/dist/index.d.ts +395 -23
- package/dist/index.mjs +440 -525
- package/dist/package.json +2 -1
- package/dist/src/plugins/add/index.d.ts +250 -11
- package/dist/src/plugins/add/index.js +8 -16
- package/dist/src/plugins/buildManifest/index.d.ts +116 -9
- package/dist/src/plugins/buildManifest/index.js +14 -23
- package/dist/src/plugins/bundleCode/index.d.ts +19 -10
- package/dist/src/plugins/bundleCode/index.js +7 -17
- package/dist/src/plugins/cliOverrides/index.d.ts +12 -10
- package/dist/src/plugins/cliOverrides/index.js +16 -20
- package/dist/src/plugins/curl/index.d.ts +69 -10
- package/dist/src/plugins/curl/index.js +3 -2
- package/dist/src/plugins/feedback/index.d.ts +18 -13
- package/dist/src/plugins/feedback/index.js +17 -25
- package/dist/src/plugins/generateAppTypes/index.d.ts +261 -9
- package/dist/src/plugins/generateAppTypes/index.js +17 -45
- package/dist/src/plugins/getLoginConfigPath/index.d.ts +12 -10
- package/dist/src/plugins/getLoginConfigPath/index.js +8 -18
- package/dist/src/plugins/init/index.d.ts +15 -11
- package/dist/src/plugins/init/index.js +9 -17
- package/dist/src/plugins/login/index.d.ts +18 -13
- package/dist/src/plugins/login/index.js +9 -17
- package/dist/src/plugins/logout/index.d.ts +12 -11
- package/dist/src/plugins/logout/index.js +10 -16
- package/dist/src/plugins/mcp/index.d.ts +18 -15
- package/dist/src/plugins/mcp/index.js +9 -21
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
|
@@ -1,16 +1,20 @@
|
|
|
1
|
-
import type { Plugin } from "@zapier/zapier-sdk";
|
|
2
|
-
import { InitSchema, type InitOptions } from "./schemas";
|
|
3
1
|
export { toProjectName } from "./utils";
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
export declare const initPlugin: (sdk: {
|
|
3
|
+
context: import("@zapier/zapier-sdk").EventEmissionContext;
|
|
4
|
+
} & {
|
|
5
|
+
context: {
|
|
6
|
+
meta: Record<string, import("@zapier/zapier-sdk").PluginMeta>;
|
|
7
|
+
};
|
|
8
|
+
}) => {
|
|
9
|
+
init: (options?: {
|
|
10
|
+
projectName: string;
|
|
11
|
+
skipPrompts?: boolean | undefined;
|
|
12
|
+
} | undefined) => Promise<void>;
|
|
13
|
+
} & {
|
|
6
14
|
context: {
|
|
7
15
|
meta: {
|
|
8
|
-
init:
|
|
9
|
-
inputSchema: typeof InitSchema;
|
|
10
|
-
categories: string[];
|
|
11
|
-
};
|
|
16
|
+
init: import("@zapier/zapier-sdk").PluginMeta;
|
|
12
17
|
};
|
|
13
18
|
};
|
|
14
|
-
}
|
|
15
|
-
export
|
|
16
|
-
export type { InitPluginProvides };
|
|
19
|
+
};
|
|
20
|
+
export type InitPluginProvides = ReturnType<typeof initPlugin>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createPluginMethod, definePlugin, } from "@zapier/zapier-sdk";
|
|
2
2
|
import { InitSchema } from "./schemas";
|
|
3
3
|
import { detectPackageManager } from "../../utils/package-manager-detector";
|
|
4
4
|
import { validateInitOptions, withInterruptCleanup } from "./utils";
|
|
@@ -6,8 +6,12 @@ import { getInitSteps, runStep } from "./steps";
|
|
|
6
6
|
import { createConsoleDisplayHooks, displaySummaryAndNextSteps, } from "./display";
|
|
7
7
|
import { ZapierCliExitError } from "../../utils/errors";
|
|
8
8
|
export { toProjectName } from "./utils";
|
|
9
|
-
export const initPlugin = () => {
|
|
10
|
-
|
|
9
|
+
export const initPlugin = definePlugin((sdk) => createPluginMethod(sdk, {
|
|
10
|
+
name: "init",
|
|
11
|
+
categories: ["utility"],
|
|
12
|
+
inputSchema: InitSchema,
|
|
13
|
+
supportsJsonOutput: false,
|
|
14
|
+
handler: async ({ options }) => {
|
|
11
15
|
const { projectName: rawName, skipPrompts = false } = options;
|
|
12
16
|
const cwd = process.cwd();
|
|
13
17
|
const { projectName, projectDir } = validateInitOptions({ rawName, cwd });
|
|
@@ -46,17 +50,5 @@ export const initPlugin = () => {
|
|
|
46
50
|
completedSetupStepIds,
|
|
47
51
|
packageManager,
|
|
48
52
|
});
|
|
49
|
-
},
|
|
50
|
-
|
|
51
|
-
init,
|
|
52
|
-
context: {
|
|
53
|
-
meta: {
|
|
54
|
-
init: {
|
|
55
|
-
categories: ["utility"],
|
|
56
|
-
inputSchema: InitSchema,
|
|
57
|
-
supportsJsonOutput: false,
|
|
58
|
-
},
|
|
59
|
-
},
|
|
60
|
-
},
|
|
61
|
-
};
|
|
62
|
-
};
|
|
53
|
+
},
|
|
54
|
+
}));
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import { LoginSchema, type LoginOptions } from "./schemas";
|
|
1
|
+
import type { ResolvedCredentials } from "@zapier/zapier-sdk";
|
|
3
2
|
interface CliContext {
|
|
4
3
|
session_id?: string | null;
|
|
5
4
|
selected_api?: string | null;
|
|
@@ -7,18 +6,24 @@ interface CliContext {
|
|
|
7
6
|
app_version_id?: number | null;
|
|
8
7
|
resolveCredentials: () => Promise<ResolvedCredentials | undefined>;
|
|
9
8
|
}
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
export declare const loginPlugin: (sdk: {
|
|
10
|
+
context: import("@zapier/zapier-sdk").EventEmissionContext;
|
|
11
|
+
} & {
|
|
12
|
+
context: CliContext;
|
|
13
|
+
} & {
|
|
14
|
+
context: {
|
|
15
|
+
meta: Record<string, import("@zapier/zapier-sdk").PluginMeta>;
|
|
16
|
+
};
|
|
17
|
+
}) => {
|
|
18
|
+
login: (options?: {
|
|
19
|
+
timeout?: string | undefined;
|
|
20
|
+
} | undefined) => Promise<void>;
|
|
21
|
+
} & {
|
|
12
22
|
context: {
|
|
13
23
|
meta: {
|
|
14
|
-
login:
|
|
15
|
-
inputSchema: typeof LoginSchema;
|
|
16
|
-
categories: string[];
|
|
17
|
-
};
|
|
24
|
+
login: import("@zapier/zapier-sdk").PluginMeta;
|
|
18
25
|
};
|
|
19
26
|
};
|
|
20
|
-
}
|
|
21
|
-
export
|
|
22
|
-
|
|
23
|
-
}, LoginPluginProvides>;
|
|
24
|
-
export type { LoginPluginProvides };
|
|
27
|
+
};
|
|
28
|
+
export type LoginPluginProvides = ReturnType<typeof loginPlugin>;
|
|
29
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isCredentialsObject, buildApplicationLifecycleEvent, } from "@zapier/zapier-sdk";
|
|
1
|
+
import { createPluginMethod, definePlugin, isCredentialsObject, buildApplicationLifecycleEvent, } from "@zapier/zapier-sdk";
|
|
2
2
|
import login from "../../utils/auth/login";
|
|
3
3
|
import { getLoggedInUser } from "../../login";
|
|
4
4
|
import { LoginSchema } from "./schemas";
|
|
@@ -15,8 +15,12 @@ function toPkceCredentials(credentials) {
|
|
|
15
15
|
}
|
|
16
16
|
return undefined;
|
|
17
17
|
}
|
|
18
|
-
export const loginPlugin = (sdk) => {
|
|
19
|
-
|
|
18
|
+
export const loginPlugin = definePlugin((sdk) => createPluginMethod(sdk, {
|
|
19
|
+
name: "login",
|
|
20
|
+
categories: ["account"],
|
|
21
|
+
inputSchema: LoginSchema,
|
|
22
|
+
supportsJsonOutput: false,
|
|
23
|
+
handler: async ({ sdk, options }) => {
|
|
20
24
|
const timeoutSeconds = options.timeout
|
|
21
25
|
? parseInt(options.timeout, 10)
|
|
22
26
|
: 300;
|
|
@@ -32,17 +36,5 @@ export const loginPlugin = (sdk) => {
|
|
|
32
36
|
const user = await getLoggedInUser();
|
|
33
37
|
sdk.context.eventEmission.emit("platform.sdk.ApplicationLifecycleEvent", buildApplicationLifecycleEvent({ lifecycle_event_type: "login_success" }, { customuser_id: user.customUserId, account_id: user.accountId }));
|
|
34
38
|
console.log(`✅ Successfully logged in as ${user.email}`);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
login: loginFn,
|
|
38
|
-
context: {
|
|
39
|
-
meta: {
|
|
40
|
-
login: {
|
|
41
|
-
categories: ["account"],
|
|
42
|
-
inputSchema: LoginSchema,
|
|
43
|
-
supportsJsonOutput: false,
|
|
44
|
-
},
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
};
|
|
48
|
-
};
|
|
39
|
+
},
|
|
40
|
+
}));
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export declare const logoutPlugin: (sdk: {
|
|
2
|
+
context: import("@zapier/zapier-sdk").EventEmissionContext;
|
|
3
|
+
} & {
|
|
4
|
+
context: {
|
|
5
|
+
meta: Record<string, import("@zapier/zapier-sdk").PluginMeta>;
|
|
6
|
+
};
|
|
7
|
+
}) => {
|
|
8
|
+
logout: (options?: Record<string, never> | undefined) => Promise<void>;
|
|
9
|
+
} & {
|
|
5
10
|
context: {
|
|
6
11
|
meta: {
|
|
7
|
-
logout:
|
|
8
|
-
inputSchema: typeof LogoutSchema;
|
|
9
|
-
categories: string[];
|
|
10
|
-
};
|
|
12
|
+
logout: import("@zapier/zapier-sdk").PluginMeta;
|
|
11
13
|
};
|
|
12
14
|
};
|
|
13
|
-
}
|
|
14
|
-
export
|
|
15
|
-
export type { LogoutPluginProvides };
|
|
15
|
+
};
|
|
16
|
+
export type LogoutPluginProvides = ReturnType<typeof logoutPlugin>;
|
|
@@ -1,19 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createPluginMethod, definePlugin, } from "@zapier/zapier-sdk";
|
|
2
2
|
import { logout } from "../../login";
|
|
3
3
|
import { LogoutSchema } from "./schemas";
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
logout: {
|
|
13
|
-
categories: ["account"],
|
|
14
|
-
inputSchema: LogoutSchema,
|
|
15
|
-
supportsJsonOutput: false,
|
|
16
|
-
},
|
|
17
|
-
},
|
|
4
|
+
export const logoutPlugin = definePlugin((sdk) => createPluginMethod(sdk, {
|
|
5
|
+
name: "logout",
|
|
6
|
+
categories: ["account"],
|
|
7
|
+
inputSchema: LogoutSchema,
|
|
8
|
+
supportsJsonOutput: false,
|
|
9
|
+
handler: async () => {
|
|
10
|
+
await logout();
|
|
11
|
+
console.log("✅ Successfully logged out");
|
|
18
12
|
},
|
|
19
|
-
});
|
|
13
|
+
}));
|
|
@@ -1,21 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
import { McpSchema, type McpOptions } from "./schemas";
|
|
3
|
-
interface McpPluginProvides {
|
|
4
|
-
mcp: (options: McpOptions) => Promise<void>;
|
|
1
|
+
export declare const mcpPlugin: (sdk: {
|
|
5
2
|
context: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
inputSchema: typeof McpSchema;
|
|
9
|
-
categories: string[];
|
|
10
|
-
};
|
|
3
|
+
options?: {
|
|
4
|
+
debug?: boolean;
|
|
11
5
|
};
|
|
12
6
|
};
|
|
13
|
-
}
|
|
14
|
-
|
|
7
|
+
} & {
|
|
8
|
+
context: import("@zapier/zapier-sdk").EventEmissionContext;
|
|
9
|
+
} & {
|
|
15
10
|
context: {
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
meta: Record<string, import("@zapier/zapier-sdk").PluginMeta>;
|
|
12
|
+
};
|
|
13
|
+
}) => {
|
|
14
|
+
mcp: (options?: {
|
|
15
|
+
port?: string | undefined;
|
|
16
|
+
} | undefined) => Promise<void>;
|
|
17
|
+
} & {
|
|
18
|
+
context: {
|
|
19
|
+
meta: {
|
|
20
|
+
mcp: import("@zapier/zapier-sdk").PluginMeta;
|
|
18
21
|
};
|
|
19
22
|
};
|
|
20
|
-
}
|
|
21
|
-
export type
|
|
23
|
+
};
|
|
24
|
+
export type McpPluginProvides = ReturnType<typeof mcpPlugin>;
|
|
@@ -1,24 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createPluginMethod, definePlugin, } from "@zapier/zapier-sdk";
|
|
2
2
|
import { startMcpServer } from "@zapier/zapier-sdk-mcp";
|
|
3
3
|
import { McpSchema } from "./schemas";
|
|
4
|
-
export const mcpPlugin = (sdk) => {
|
|
5
|
-
|
|
4
|
+
export const mcpPlugin = definePlugin((sdk) => createPluginMethod(sdk, {
|
|
5
|
+
name: "mcp",
|
|
6
|
+
categories: ["utility"],
|
|
7
|
+
inputSchema: McpSchema,
|
|
8
|
+
handler: async ({ sdk, options }) => {
|
|
6
9
|
// Pass through the SDK's debug option to the MCP server
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
};
|
|
11
|
-
return await startMcpServer(mcpOptions);
|
|
12
|
-
}, McpSchema);
|
|
13
|
-
return {
|
|
14
|
-
mcp: mcpWithSdk,
|
|
15
|
-
context: {
|
|
16
|
-
meta: {
|
|
17
|
-
mcp: {
|
|
18
|
-
categories: ["utility"],
|
|
19
|
-
inputSchema: McpSchema,
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
};
|
|
24
|
-
};
|
|
10
|
+
await startMcpServer({ ...options, debug: sdk.context.options?.debug });
|
|
11
|
+
},
|
|
12
|
+
}));
|