@keystrokehq/prisma 0.1.3 → 0.1.4
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/actions/create-connection.d.cts +13 -1
- package/dist/actions/create-connection.d.mts +13 -1
- package/dist/actions/create-database.d.cts +13 -1
- package/dist/actions/create-database.d.mts +13 -1
- package/dist/actions/create-project.d.cts +13 -1
- package/dist/actions/create-project.d.mts +13 -1
- package/dist/actions/delete-connection.d.cts +13 -1
- package/dist/actions/delete-connection.d.mts +13 -1
- package/dist/actions/delete-database.d.cts +13 -1
- package/dist/actions/delete-database.d.mts +13 -1
- package/dist/actions/delete-project.d.cts +13 -1
- package/dist/actions/delete-project.d.mts +13 -1
- package/dist/actions/execute-sql-command.d.cts +13 -1
- package/dist/actions/execute-sql-command.d.cts.map +1 -1
- package/dist/actions/execute-sql-command.d.mts +13 -1
- package/dist/actions/execute-sql-command.d.mts.map +1 -1
- package/dist/actions/execute-sql-query.d.cts +13 -1
- package/dist/actions/execute-sql-query.d.cts.map +1 -1
- package/dist/actions/execute-sql-query.d.mts +13 -1
- package/dist/actions/execute-sql-query.d.mts.map +1 -1
- package/dist/actions/get-database-usage.d.cts +13 -1
- package/dist/actions/get-database-usage.d.mts +13 -1
- package/dist/actions/get-database.d.cts +13 -1
- package/dist/actions/get-database.d.mts +13 -1
- package/dist/actions/get-project.d.cts +13 -1
- package/dist/actions/get-project.d.mts +13 -1
- package/dist/actions/inspect-database-schema.d.cts +13 -1
- package/dist/actions/inspect-database-schema.d.mts +13 -1
- package/dist/actions/list-accelerate-regions.d.cts +13 -1
- package/dist/actions/list-accelerate-regions.d.cts.map +1 -1
- package/dist/actions/list-accelerate-regions.d.mts +13 -1
- package/dist/actions/list-accelerate-regions.d.mts.map +1 -1
- package/dist/actions/list-backups.d.cts +13 -1
- package/dist/actions/list-backups.d.mts +13 -1
- package/dist/actions/list-connections.d.cts +13 -1
- package/dist/actions/list-connections.d.mts +13 -1
- package/dist/actions/list-databases.d.cts +13 -1
- package/dist/actions/list-databases.d.mts +13 -1
- package/dist/actions/list-postgres-regions.d.cts +13 -1
- package/dist/actions/list-postgres-regions.d.cts.map +1 -1
- package/dist/actions/list-postgres-regions.d.mts +13 -1
- package/dist/actions/list-postgres-regions.d.mts.map +1 -1
- package/dist/actions/list-projects.d.cts +13 -1
- package/dist/actions/list-projects.d.mts +13 -1
- package/dist/actions/list-workspace-integrations.d.cts +13 -1
- package/dist/actions/list-workspace-integrations.d.mts +13 -1
- package/dist/actions/list-workspaces.d.cts +13 -1
- package/dist/actions/list-workspaces.d.mts +13 -1
- package/dist/actions/restore-backup.d.cts +13 -1
- package/dist/actions/restore-backup.d.mts +13 -1
- package/dist/actions/transfer-project.d.cts +13 -1
- package/dist/actions/transfer-project.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -24,7 +24,19 @@ declare const PrismaCreateConnectionOutput: z.ZodObject<{
|
|
|
24
24
|
declare const prismaCreateConnection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
name: string;
|
|
26
26
|
databaseId: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { prismaCreateConnection };
|
|
30
42
|
//# sourceMappingURL=create-connection.d.cts.map
|
|
@@ -24,7 +24,19 @@ declare const PrismaCreateConnectionOutput: z.ZodObject<{
|
|
|
24
24
|
declare const prismaCreateConnection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
name: string;
|
|
26
26
|
databaseId: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { prismaCreateConnection };
|
|
30
42
|
//# sourceMappingURL=create-connection.d.mts.map
|
|
@@ -48,7 +48,19 @@ declare const prismaCreateDatabase: import("@keystrokehq/action").WorkflowAction
|
|
|
48
48
|
region: string;
|
|
49
49
|
projectId: string;
|
|
50
50
|
isDefault?: boolean | undefined;
|
|
51
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
51
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
52
|
+
connectionId: z.ZodString;
|
|
53
|
+
entityId: z.ZodString;
|
|
54
|
+
instanceId: z.ZodString;
|
|
55
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
56
|
+
accessToken: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
58
|
+
connectionId: z.ZodString;
|
|
59
|
+
entityId: z.ZodString;
|
|
60
|
+
instanceId: z.ZodString;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
accessToken: z.ZodString;
|
|
63
|
+
}, z.core.$strip>>]>;
|
|
52
64
|
//#endregion
|
|
53
65
|
export { prismaCreateDatabase };
|
|
54
66
|
//# sourceMappingURL=create-database.d.cts.map
|
|
@@ -48,7 +48,19 @@ declare const prismaCreateDatabase: import("@keystrokehq/action").WorkflowAction
|
|
|
48
48
|
region: string;
|
|
49
49
|
projectId: string;
|
|
50
50
|
isDefault?: boolean | undefined;
|
|
51
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
51
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
52
|
+
connectionId: z.ZodString;
|
|
53
|
+
entityId: z.ZodString;
|
|
54
|
+
instanceId: z.ZodString;
|
|
55
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
56
|
+
accessToken: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
58
|
+
connectionId: z.ZodString;
|
|
59
|
+
entityId: z.ZodString;
|
|
60
|
+
instanceId: z.ZodString;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
accessToken: z.ZodString;
|
|
63
|
+
}, z.core.$strip>>]>;
|
|
52
64
|
//#endregion
|
|
53
65
|
export { prismaCreateDatabase };
|
|
54
66
|
//# sourceMappingURL=create-database.d.mts.map
|
|
@@ -50,7 +50,19 @@ declare const PrismaCreateProjectOutput: z.ZodObject<{
|
|
|
50
50
|
declare const prismaCreateProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
51
51
|
name: string;
|
|
52
52
|
region: string;
|
|
53
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
53
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
accessToken: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
accessToken: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
54
66
|
//#endregion
|
|
55
67
|
export { prismaCreateProject };
|
|
56
68
|
//# sourceMappingURL=create-project.d.cts.map
|
|
@@ -50,7 +50,19 @@ declare const PrismaCreateProjectOutput: z.ZodObject<{
|
|
|
50
50
|
declare const prismaCreateProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
51
51
|
name: string;
|
|
52
52
|
region: string;
|
|
53
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
53
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
accessToken: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
accessToken: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
54
66
|
//#endregion
|
|
55
67
|
export { prismaCreateProject };
|
|
56
68
|
//# sourceMappingURL=create-project.d.mts.map
|
|
@@ -7,7 +7,19 @@ declare const PrismaDeleteConnectionInput: z.ZodObject<{
|
|
|
7
7
|
declare const PrismaDeleteConnectionOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const prismaDeleteConnection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
id: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { prismaDeleteConnection };
|
|
13
25
|
//# sourceMappingURL=delete-connection.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const PrismaDeleteConnectionInput: z.ZodObject<{
|
|
|
7
7
|
declare const PrismaDeleteConnectionOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const prismaDeleteConnection: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
id: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { prismaDeleteConnection };
|
|
13
25
|
//# sourceMappingURL=delete-connection.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const PrismaDeleteDatabaseOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const prismaDeleteDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
databaseId: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
accessToken: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
accessToken: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { prismaDeleteDatabase };
|
|
15
27
|
//# sourceMappingURL=delete-database.d.cts.map
|
|
@@ -9,7 +9,19 @@ declare const PrismaDeleteDatabaseOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const prismaDeleteDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
databaseId: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
accessToken: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
accessToken: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { prismaDeleteDatabase };
|
|
15
27
|
//# sourceMappingURL=delete-database.d.mts.map
|
|
@@ -7,7 +7,19 @@ declare const PrismaDeleteProjectInput: z.ZodObject<{
|
|
|
7
7
|
declare const PrismaDeleteProjectOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const prismaDeleteProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
id: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { prismaDeleteProject };
|
|
13
25
|
//# sourceMappingURL=delete-project.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const PrismaDeleteProjectInput: z.ZodObject<{
|
|
|
7
7
|
declare const PrismaDeleteProjectOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const prismaDeleteProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
id: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { prismaDeleteProject };
|
|
13
25
|
//# sourceMappingURL=delete-project.d.mts.map
|
|
@@ -17,7 +17,19 @@ declare const prismaExecuteSqlCommand: import("@keystrokehq/action").WorkflowAct
|
|
|
17
17
|
command: string;
|
|
18
18
|
connectionString: string;
|
|
19
19
|
parameters?: (string | number | boolean | Record<string, unknown>)[] | undefined;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
accessToken: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
accessToken: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
21
33
|
//#endregion
|
|
22
34
|
export { prismaExecuteSqlCommand };
|
|
23
35
|
//# sourceMappingURL=execute-sql-command.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-sql-command.d.cts","names":[],"sources":["../../src/actions/execute-sql-command.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA
|
|
1
|
+
{"version":3,"file":"execute-sql-command.d.cts","names":[],"sources":["../../src/actions/execute-sql-command.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -17,7 +17,19 @@ declare const prismaExecuteSqlCommand: import("@keystrokehq/action").WorkflowAct
|
|
|
17
17
|
command: string;
|
|
18
18
|
connectionString: string;
|
|
19
19
|
parameters?: (string | number | boolean | Record<string, unknown>)[] | undefined;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
accessToken: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
accessToken: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
21
33
|
//#endregion
|
|
22
34
|
export { prismaExecuteSqlCommand };
|
|
23
35
|
//# sourceMappingURL=execute-sql-command.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-sql-command.d.mts","names":[],"sources":["../../src/actions/execute-sql-command.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA
|
|
1
|
+
{"version":3,"file":"execute-sql-command.d.mts","names":[],"sources":["../../src/actions/execute-sql-command.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -21,7 +21,19 @@ declare const prismaExecuteSqlQuery: import("@keystrokehq/action").WorkflowActio
|
|
|
21
21
|
query: string;
|
|
22
22
|
password: string;
|
|
23
23
|
parameters?: (string | number | boolean | Record<string, unknown>)[] | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
accessToken: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
accessToken: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { prismaExecuteSqlQuery };
|
|
27
39
|
//# sourceMappingURL=execute-sql-query.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-sql-query.d.cts","names":[],"sources":["../../src/actions/execute-sql-query.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAY1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA
|
|
1
|
+
{"version":3,"file":"execute-sql-query.d.cts","names":[],"sources":["../../src/actions/execute-sql-query.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAY1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -21,7 +21,19 @@ declare const prismaExecuteSqlQuery: import("@keystrokehq/action").WorkflowActio
|
|
|
21
21
|
query: string;
|
|
22
22
|
password: string;
|
|
23
23
|
parameters?: (string | number | boolean | Record<string, unknown>)[] | undefined;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
accessToken: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
accessToken: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { prismaExecuteSqlQuery };
|
|
27
39
|
//# sourceMappingURL=execute-sql-query.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execute-sql-query.d.mts","names":[],"sources":["../../src/actions/execute-sql-query.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAY1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA
|
|
1
|
+
{"version":3,"file":"execute-sql-query.d.mts","names":[],"sources":["../../src/actions/execute-sql-query.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAY1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -27,7 +27,19 @@ declare const prismaGetDatabaseUsage: import("@keystrokehq/action").WorkflowActi
|
|
|
27
27
|
databaseId: string;
|
|
28
28
|
endDate?: string | undefined;
|
|
29
29
|
startDate?: string | undefined;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
accessToken: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
accessToken: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
31
43
|
//#endregion
|
|
32
44
|
export { prismaGetDatabaseUsage };
|
|
33
45
|
//# sourceMappingURL=get-database-usage.d.cts.map
|
|
@@ -27,7 +27,19 @@ declare const prismaGetDatabaseUsage: import("@keystrokehq/action").WorkflowActi
|
|
|
27
27
|
databaseId: string;
|
|
28
28
|
endDate?: string | undefined;
|
|
29
29
|
startDate?: string | undefined;
|
|
30
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
30
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
accessToken: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
accessToken: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
31
43
|
//#endregion
|
|
32
44
|
export { prismaGetDatabaseUsage };
|
|
33
45
|
//# sourceMappingURL=get-database-usage.d.mts.map
|
|
@@ -24,7 +24,19 @@ declare const PrismaGetDatabaseOutput: z.ZodObject<{
|
|
|
24
24
|
}, z.core.$loose>;
|
|
25
25
|
declare const prismaGetDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
26
26
|
databaseId: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { prismaGetDatabase };
|
|
30
42
|
//# sourceMappingURL=get-database.d.cts.map
|
|
@@ -24,7 +24,19 @@ declare const PrismaGetDatabaseOutput: z.ZodObject<{
|
|
|
24
24
|
}, z.core.$loose>;
|
|
25
25
|
declare const prismaGetDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
26
26
|
databaseId: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { prismaGetDatabase };
|
|
30
42
|
//# sourceMappingURL=get-database.d.mts.map
|
|
@@ -18,7 +18,19 @@ declare const PrismaGetProjectOutput: z.ZodObject<{
|
|
|
18
18
|
}, z.core.$loose>;
|
|
19
19
|
declare const prismaGetProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
20
|
id: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
accessToken: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { prismaGetProject };
|
|
24
36
|
//# sourceMappingURL=get-project.d.cts.map
|
|
@@ -18,7 +18,19 @@ declare const PrismaGetProjectOutput: z.ZodObject<{
|
|
|
18
18
|
}, z.core.$loose>;
|
|
19
19
|
declare const prismaGetProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
20
|
id: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
accessToken: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { prismaGetProject };
|
|
24
36
|
//# sourceMappingURL=get-project.d.mts.map
|
|
@@ -36,7 +36,19 @@ declare const prismaInspectDatabaseSchema: import("@keystrokehq/action").Workflo
|
|
|
36
36
|
password: string;
|
|
37
37
|
tableName?: string | undefined;
|
|
38
38
|
includeIndexes?: boolean | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
accessToken: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
accessToken: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { prismaInspectDatabaseSchema };
|
|
42
54
|
//# sourceMappingURL=inspect-database-schema.d.cts.map
|
|
@@ -36,7 +36,19 @@ declare const prismaInspectDatabaseSchema: import("@keystrokehq/action").Workflo
|
|
|
36
36
|
password: string;
|
|
37
37
|
tableName?: string | undefined;
|
|
38
38
|
includeIndexes?: boolean | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
accessToken: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
accessToken: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { prismaInspectDatabaseSchema };
|
|
42
54
|
//# sourceMappingURL=inspect-database-schema.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const PrismaListAccelerateRegionsOutput: z.ZodObject<{
|
|
|
9
9
|
type: z.ZodNullable<z.ZodString>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const prismaListAccelerateRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const prismaListAccelerateRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
accessToken: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
accessToken: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { prismaListAccelerateRegions };
|
|
15
27
|
//# sourceMappingURL=list-accelerate-regions.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-accelerate-regions.d.cts","names":[],"sources":["../../src/actions/list-accelerate-regions.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-accelerate-regions.d.cts","names":[],"sources":["../../src/actions/list-accelerate-regions.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
|
@@ -9,7 +9,19 @@ declare const PrismaListAccelerateRegionsOutput: z.ZodObject<{
|
|
|
9
9
|
type: z.ZodNullable<z.ZodString>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const prismaListAccelerateRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const prismaListAccelerateRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
accessToken: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
accessToken: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { prismaListAccelerateRegions };
|
|
15
27
|
//# sourceMappingURL=list-accelerate-regions.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-accelerate-regions.d.mts","names":[],"sources":["../../src/actions/list-accelerate-regions.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-accelerate-regions.d.mts","names":[],"sources":["../../src/actions/list-accelerate-regions.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;cAIjC,2BAAA,gCAA2B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
|
@@ -25,7 +25,19 @@ declare const PrismaListBackupsOutput: z.ZodObject<{
|
|
|
25
25
|
declare const prismaListBackups: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
26
26
|
databaseId: string;
|
|
27
27
|
limit?: number | undefined;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
accessToken: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
35
|
+
connectionId: z.ZodString;
|
|
36
|
+
entityId: z.ZodString;
|
|
37
|
+
instanceId: z.ZodString;
|
|
38
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39
|
+
accessToken: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
29
41
|
//#endregion
|
|
30
42
|
export { prismaListBackups };
|
|
31
43
|
//# sourceMappingURL=list-backups.d.cts.map
|
|
@@ -25,7 +25,19 @@ declare const PrismaListBackupsOutput: z.ZodObject<{
|
|
|
25
25
|
declare const prismaListBackups: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
26
26
|
databaseId: string;
|
|
27
27
|
limit?: number | undefined;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
accessToken: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
35
|
+
connectionId: z.ZodString;
|
|
36
|
+
entityId: z.ZodString;
|
|
37
|
+
instanceId: z.ZodString;
|
|
38
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39
|
+
accessToken: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
29
41
|
//#endregion
|
|
30
42
|
export { prismaListBackups };
|
|
31
43
|
//# sourceMappingURL=list-backups.d.mts.map
|
|
@@ -26,7 +26,19 @@ declare const prismaListConnections: import("@keystrokehq/action").WorkflowActio
|
|
|
26
26
|
databaseId: string;
|
|
27
27
|
limit?: number | undefined;
|
|
28
28
|
cursor?: string | undefined;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { prismaListConnections };
|
|
32
44
|
//# sourceMappingURL=list-connections.d.cts.map
|
|
@@ -26,7 +26,19 @@ declare const prismaListConnections: import("@keystrokehq/action").WorkflowActio
|
|
|
26
26
|
databaseId: string;
|
|
27
27
|
limit?: number | undefined;
|
|
28
28
|
cursor?: string | undefined;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { prismaListConnections };
|
|
32
44
|
//# sourceMappingURL=list-connections.d.mts.map
|
|
@@ -32,7 +32,19 @@ declare const prismaListDatabases: import("@keystrokehq/action").WorkflowActionD
|
|
|
32
32
|
projectId: string;
|
|
33
33
|
limit?: number | undefined;
|
|
34
34
|
cursor?: string | undefined;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
42
|
+
connectionId: z.ZodString;
|
|
43
|
+
entityId: z.ZodString;
|
|
44
|
+
instanceId: z.ZodString;
|
|
45
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46
|
+
accessToken: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
36
48
|
//#endregion
|
|
37
49
|
export { prismaListDatabases };
|
|
38
50
|
//# sourceMappingURL=list-databases.d.cts.map
|
|
@@ -32,7 +32,19 @@ declare const prismaListDatabases: import("@keystrokehq/action").WorkflowActionD
|
|
|
32
32
|
projectId: string;
|
|
33
33
|
limit?: number | undefined;
|
|
34
34
|
cursor?: string | undefined;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
42
|
+
connectionId: z.ZodString;
|
|
43
|
+
entityId: z.ZodString;
|
|
44
|
+
instanceId: z.ZodString;
|
|
45
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46
|
+
accessToken: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
36
48
|
//#endregion
|
|
37
49
|
export { prismaListDatabases };
|
|
38
50
|
//# sourceMappingURL=list-databases.d.mts.map
|
|
@@ -10,7 +10,19 @@ declare const PrismaListPostgresRegionsOutput: z.ZodObject<{
|
|
|
10
10
|
status: z.ZodNullable<z.ZodString>;
|
|
11
11
|
}, z.core.$loose>>;
|
|
12
12
|
}, z.core.$loose>;
|
|
13
|
-
declare const prismaListPostgresRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
declare const prismaListPostgresRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
accessToken: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
accessToken: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { prismaListPostgresRegions };
|
|
16
28
|
//# sourceMappingURL=list-postgres-regions.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-postgres-regions.d.cts","names":[],"sources":["../../src/actions/list-postgres-regions.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;cAI/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-postgres-regions.d.cts","names":[],"sources":["../../src/actions/list-postgres-regions.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;cAI/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
|
@@ -10,7 +10,19 @@ declare const PrismaListPostgresRegionsOutput: z.ZodObject<{
|
|
|
10
10
|
status: z.ZodNullable<z.ZodString>;
|
|
11
11
|
}, z.core.$loose>>;
|
|
12
12
|
}, z.core.$loose>;
|
|
13
|
-
declare const prismaListPostgresRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
declare const prismaListPostgresRegions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
accessToken: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
accessToken: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { prismaListPostgresRegions };
|
|
16
28
|
//# sourceMappingURL=list-postgres-regions.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-postgres-regions.d.mts","names":[],"sources":["../../src/actions/list-postgres-regions.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;cAI/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-postgres-regions.d.mts","names":[],"sources":["../../src/actions/list-postgres-regions.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;cAI/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
|
@@ -24,7 +24,19 @@ declare const PrismaListProjectsOutput: z.ZodObject<{
|
|
|
24
24
|
declare const prismaListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
limit?: number | undefined;
|
|
26
26
|
cursor?: string | undefined;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { prismaListProjects };
|
|
30
42
|
//# sourceMappingURL=list-projects.d.cts.map
|
|
@@ -24,7 +24,19 @@ declare const PrismaListProjectsOutput: z.ZodObject<{
|
|
|
24
24
|
declare const prismaListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
limit?: number | undefined;
|
|
26
26
|
cursor?: string | undefined;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { prismaListProjects };
|
|
30
42
|
//# sourceMappingURL=list-projects.d.mts.map
|
|
@@ -30,7 +30,19 @@ declare const prismaListWorkspaceIntegrations: import("@keystrokehq/action").Wor
|
|
|
30
30
|
workspaceId: string;
|
|
31
31
|
limit?: number | undefined;
|
|
32
32
|
cursor?: string | undefined;
|
|
33
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
33
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
accessToken: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>;
|
|
34
46
|
//#endregion
|
|
35
47
|
export { prismaListWorkspaceIntegrations };
|
|
36
48
|
//# sourceMappingURL=list-workspace-integrations.d.cts.map
|
|
@@ -30,7 +30,19 @@ declare const prismaListWorkspaceIntegrations: import("@keystrokehq/action").Wor
|
|
|
30
30
|
workspaceId: string;
|
|
31
31
|
limit?: number | undefined;
|
|
32
32
|
cursor?: string | undefined;
|
|
33
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
33
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
accessToken: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>;
|
|
34
46
|
//#endregion
|
|
35
47
|
export { prismaListWorkspaceIntegrations };
|
|
36
48
|
//# sourceMappingURL=list-workspace-integrations.d.mts.map
|
|
@@ -20,7 +20,19 @@ declare const PrismaListWorkspacesOutput: z.ZodObject<{
|
|
|
20
20
|
declare const prismaListWorkspaces: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
limit?: number | undefined;
|
|
22
22
|
cursor?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
accessToken: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
24
36
|
//#endregion
|
|
25
37
|
export { prismaListWorkspaces };
|
|
26
38
|
//# sourceMappingURL=list-workspaces.d.cts.map
|
|
@@ -20,7 +20,19 @@ declare const PrismaListWorkspacesOutput: z.ZodObject<{
|
|
|
20
20
|
declare const prismaListWorkspaces: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
limit?: number | undefined;
|
|
22
22
|
cursor?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
accessToken: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
24
36
|
//#endregion
|
|
25
37
|
export { prismaListWorkspaces };
|
|
26
38
|
//# sourceMappingURL=list-workspaces.d.mts.map
|
|
@@ -28,7 +28,19 @@ declare const prismaRestoreBackup: import("@keystrokehq/action").WorkflowActionD
|
|
|
28
28
|
backupId: string;
|
|
29
29
|
databaseId: string;
|
|
30
30
|
targetDatabaseName: string;
|
|
31
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
38
|
+
connectionId: z.ZodString;
|
|
39
|
+
entityId: z.ZodString;
|
|
40
|
+
instanceId: z.ZodString;
|
|
41
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
42
|
+
accessToken: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>;
|
|
32
44
|
//#endregion
|
|
33
45
|
export { prismaRestoreBackup };
|
|
34
46
|
//# sourceMappingURL=restore-backup.d.cts.map
|
|
@@ -28,7 +28,19 @@ declare const prismaRestoreBackup: import("@keystrokehq/action").WorkflowActionD
|
|
|
28
28
|
backupId: string;
|
|
29
29
|
databaseId: string;
|
|
30
30
|
targetDatabaseName: string;
|
|
31
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
38
|
+
connectionId: z.ZodString;
|
|
39
|
+
entityId: z.ZodString;
|
|
40
|
+
instanceId: z.ZodString;
|
|
41
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
42
|
+
accessToken: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>;
|
|
32
44
|
//#endregion
|
|
33
45
|
export { prismaRestoreBackup };
|
|
34
46
|
//# sourceMappingURL=restore-backup.d.mts.map
|
|
@@ -12,7 +12,19 @@ declare const PrismaTransferProjectOutput: z.ZodObject<{
|
|
|
12
12
|
declare const prismaTransferProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
id: string;
|
|
14
14
|
recipientAccessToken: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
accessToken: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
accessToken: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { prismaTransferProject };
|
|
18
30
|
//# sourceMappingURL=transfer-project.d.cts.map
|
|
@@ -12,7 +12,19 @@ declare const PrismaTransferProjectOutput: z.ZodObject<{
|
|
|
12
12
|
declare const prismaTransferProject: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
id: string;
|
|
14
14
|
recipientAccessToken: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
accessToken: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
accessToken: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { prismaTransferProject };
|
|
18
30
|
//# sourceMappingURL=transfer-project.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const prisma = (0,
|
|
4
|
+
const prisma = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "prisma",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { accessToken: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.prisma = prisma;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const prisma = defineApp({\n slug: \"prisma\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const prisma = defineApp({\n slug: \"prisma\",\n auth: \"keystroke\",\n credential: {\n accessToken: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,UAAA,GAAA,2BAAA,UAAA,CAAmB;CAC9B,MAAM;CACN,MAAM;CACN,YAAY,EACV,aAAaA,IAAAA,EAAE,OAAO,EACxB;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const prisma: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const prisma: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
accessToken: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { prisma };
|
|
5
13
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,MAAA,6BAAM,GAAA,+BAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const prisma: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const prisma: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"prisma", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
accessToken: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { prisma };
|
|
5
13
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,MAAA,6BAAM,GAAA,+BAAA,UAAA,WAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const prisma = defineApp({
|
|
4
5
|
slug: "prisma",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { accessToken: z.string() }
|
|
6
8
|
});
|
|
7
9
|
//#endregion
|
|
8
10
|
export { prisma };
|
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const prisma = defineApp({\n slug: \"prisma\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const prisma = defineApp({\n slug: \"prisma\",\n auth: \"keystroke\",\n credential: {\n accessToken: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,SAAS,UAAU;CAC9B,MAAM;CACN,MAAM;CACN,YAAY,EACV,aAAa,EAAE,OAAO,EACxB;AACF,CAAC"}
|