@keystrokehq/softr 0.1.3 → 0.1.5
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-database.d.cts +15 -1
- package/dist/actions/create-database.d.mts +15 -1
- package/dist/actions/create-record.d.cts +15 -1
- package/dist/actions/create-record.d.cts.map +1 -1
- package/dist/actions/create-record.d.mts +15 -1
- package/dist/actions/create-record.d.mts.map +1 -1
- package/dist/actions/create-table-field.d.cts +15 -1
- package/dist/actions/create-table-field.d.cts.map +1 -1
- package/dist/actions/create-table-field.d.mts +15 -1
- package/dist/actions/create-table-field.d.mts.map +1 -1
- package/dist/actions/create-table.d.cts +15 -1
- package/dist/actions/create-table.d.cts.map +1 -1
- package/dist/actions/create-table.d.mts +15 -1
- package/dist/actions/create-table.d.mts.map +1 -1
- package/dist/actions/delete-database.d.cts +15 -1
- package/dist/actions/delete-database.d.mts +15 -1
- package/dist/actions/delete-record.d.cts +15 -1
- package/dist/actions/delete-record.d.mts +15 -1
- package/dist/actions/delete-table-field.d.cts +15 -1
- package/dist/actions/delete-table-field.d.mts +15 -1
- package/dist/actions/delete-table.d.cts +15 -1
- package/dist/actions/delete-table.d.mts +15 -1
- package/dist/actions/get-database.d.cts +15 -1
- package/dist/actions/get-database.d.mts +15 -1
- package/dist/actions/get-databases.d.cts +15 -1
- package/dist/actions/get-databases.d.mts +15 -1
- package/dist/actions/get-record.d.cts +15 -1
- package/dist/actions/get-record.d.mts +15 -1
- package/dist/actions/get-records.d.cts +15 -1
- package/dist/actions/get-records.d.mts +15 -1
- package/dist/actions/get-table-field.d.cts +15 -1
- package/dist/actions/get-table-field.d.mts +15 -1
- package/dist/actions/get-table-views.d.cts +15 -1
- package/dist/actions/get-table-views.d.mts +15 -1
- package/dist/actions/get-table.d.cts +15 -1
- package/dist/actions/get-table.d.mts +15 -1
- package/dist/actions/get-tables.d.cts +15 -1
- package/dist/actions/get-tables.d.mts +15 -1
- package/dist/actions/search-records.d.cts +15 -1
- package/dist/actions/search-records.d.cts.map +1 -1
- package/dist/actions/search-records.d.mts +15 -1
- package/dist/actions/search-records.d.mts.map +1 -1
- package/dist/actions/update-database.d.cts +15 -1
- package/dist/actions/update-database.d.mts +15 -1
- package/dist/actions/update-record.d.cts +15 -1
- package/dist/actions/update-record.d.cts.map +1 -1
- package/dist/actions/update-record.d.mts +15 -1
- package/dist/actions/update-record.d.mts.map +1 -1
- package/dist/actions/update-table-field.d.cts +15 -1
- package/dist/actions/update-table-field.d.cts.map +1 -1
- package/dist/actions/update-table-field.d.mts +15 -1
- package/dist/actions/update-table-field.d.mts.map +1 -1
- package/dist/actions/update-table.d.cts +15 -1
- package/dist/actions/update-table.d.mts +15 -1
- package/dist/app.cjs +8 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +10 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +10 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +6 -1
- package/dist/app.mjs.map +1 -1
- package/dist/catalog.cjs +2 -2
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +2 -2
- package/dist/catalog.d.mts +2 -2
- package/dist/catalog.mjs +2 -2
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,21 @@ declare const softrCreateDatabase: import("@keystrokehq/action").WorkflowActionD
|
|
|
18
18
|
name: string;
|
|
19
19
|
workspaceId: string;
|
|
20
20
|
description?: string | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
generic_id: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { softrCreateDatabase };
|
|
24
38
|
//# sourceMappingURL=create-database.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const softrCreateDatabase: import("@keystrokehq/action").WorkflowActionD
|
|
|
18
18
|
name: string;
|
|
19
19
|
workspaceId: string;
|
|
20
20
|
description?: string | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
generic_id: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { softrCreateDatabase };
|
|
24
38
|
//# sourceMappingURL=create-database.d.mts.map
|
|
@@ -18,7 +18,21 @@ declare const softrCreateRecord: import("@keystrokehq/action").WorkflowActionDef
|
|
|
18
18
|
fields: Record<string, unknown>;
|
|
19
19
|
table_id: string;
|
|
20
20
|
database_id: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
generic_id: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { softrCreateRecord };
|
|
24
38
|
//# sourceMappingURL=create-record.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-record.d.cts","names":[],"sources":["../../src/actions/create-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;cAWtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-record.d.cts","names":[],"sources":["../../src/actions/create-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;cAWtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -18,7 +18,21 @@ declare const softrCreateRecord: import("@keystrokehq/action").WorkflowActionDef
|
|
|
18
18
|
fields: Record<string, unknown>;
|
|
19
19
|
table_id: string;
|
|
20
20
|
database_id: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
generic_id: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { softrCreateRecord };
|
|
24
38
|
//# sourceMappingURL=create-record.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-record.d.mts","names":[],"sources":["../../src/actions/create-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;cAWtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-record.d.mts","names":[],"sources":["../../src/actions/create-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;cAWtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -61,7 +61,21 @@ declare const softrCreateTableField: import("@keystrokehq/action").WorkflowActio
|
|
|
61
61
|
tableId: string;
|
|
62
62
|
databaseId: string;
|
|
63
63
|
options?: Record<string, unknown> | undefined;
|
|
64
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
64
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
65
|
+
connectionId: z.ZodString;
|
|
66
|
+
entityId: z.ZodString;
|
|
67
|
+
instanceId: z.ZodString;
|
|
68
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
69
|
+
generic_api_key: z.ZodString;
|
|
70
|
+
generic_id: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
72
|
+
connectionId: z.ZodString;
|
|
73
|
+
entityId: z.ZodString;
|
|
74
|
+
instanceId: z.ZodString;
|
|
75
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
76
|
+
generic_api_key: z.ZodString;
|
|
77
|
+
generic_id: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>;
|
|
65
79
|
//#endregion
|
|
66
80
|
export { softrCreateTableField };
|
|
67
81
|
//# sourceMappingURL=create-table-field.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-table-field.d.cts","names":[],"sources":["../../src/actions/create-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-table-field.d.cts","names":[],"sources":["../../src/actions/create-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -61,7 +61,21 @@ declare const softrCreateTableField: import("@keystrokehq/action").WorkflowActio
|
|
|
61
61
|
tableId: string;
|
|
62
62
|
databaseId: string;
|
|
63
63
|
options?: Record<string, unknown> | undefined;
|
|
64
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
64
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
65
|
+
connectionId: z.ZodString;
|
|
66
|
+
entityId: z.ZodString;
|
|
67
|
+
instanceId: z.ZodString;
|
|
68
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
69
|
+
generic_api_key: z.ZodString;
|
|
70
|
+
generic_id: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
72
|
+
connectionId: z.ZodString;
|
|
73
|
+
entityId: z.ZodString;
|
|
74
|
+
instanceId: z.ZodString;
|
|
75
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
76
|
+
generic_api_key: z.ZodString;
|
|
77
|
+
generic_id: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>;
|
|
65
79
|
//#endregion
|
|
66
80
|
export { softrCreateTableField };
|
|
67
81
|
//# sourceMappingURL=create-table-field.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-table-field.d.mts","names":[],"sources":["../../src/actions/create-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-table-field.d.mts","names":[],"sources":["../../src/actions/create-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -80,7 +80,21 @@ declare const softrCreateTable: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
80
80
|
database_id: string;
|
|
81
81
|
description?: string | undefined;
|
|
82
82
|
primary_field_name?: string | undefined;
|
|
83
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
83
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
84
|
+
connectionId: z.ZodString;
|
|
85
|
+
entityId: z.ZodString;
|
|
86
|
+
instanceId: z.ZodString;
|
|
87
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
88
|
+
generic_api_key: z.ZodString;
|
|
89
|
+
generic_id: z.ZodString;
|
|
90
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
91
|
+
connectionId: z.ZodString;
|
|
92
|
+
entityId: z.ZodString;
|
|
93
|
+
instanceId: z.ZodString;
|
|
94
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
95
|
+
generic_api_key: z.ZodString;
|
|
96
|
+
generic_id: z.ZodString;
|
|
97
|
+
}, z.core.$strip>>]>;
|
|
84
98
|
//#endregion
|
|
85
99
|
export { softrCreateTable };
|
|
86
100
|
//# sourceMappingURL=create-table.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-table.d.cts","names":[],"sources":["../../src/actions/create-table.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-table.d.cts","names":[],"sources":["../../src/actions/create-table.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA"}
|
|
@@ -80,7 +80,21 @@ declare const softrCreateTable: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
80
80
|
database_id: string;
|
|
81
81
|
description?: string | undefined;
|
|
82
82
|
primary_field_name?: string | undefined;
|
|
83
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
83
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
84
|
+
connectionId: z.ZodString;
|
|
85
|
+
entityId: z.ZodString;
|
|
86
|
+
instanceId: z.ZodString;
|
|
87
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
88
|
+
generic_api_key: z.ZodString;
|
|
89
|
+
generic_id: z.ZodString;
|
|
90
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
91
|
+
connectionId: z.ZodString;
|
|
92
|
+
entityId: z.ZodString;
|
|
93
|
+
instanceId: z.ZodString;
|
|
94
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
95
|
+
generic_api_key: z.ZodString;
|
|
96
|
+
generic_id: z.ZodString;
|
|
97
|
+
}, z.core.$strip>>]>;
|
|
84
98
|
//#endregion
|
|
85
99
|
export { softrCreateTable };
|
|
86
100
|
//# sourceMappingURL=create-table.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-table.d.mts","names":[],"sources":["../../src/actions/create-table.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-table.d.mts","names":[],"sources":["../../src/actions/create-table.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAItB,gBAAA,gCAAgB,wBAAA"}
|
|
@@ -12,7 +12,21 @@ declare const SoftrDeleteDatabaseOutput: z.ZodObject<{
|
|
|
12
12
|
declare const softrDeleteDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
database_id: string;
|
|
14
14
|
force?: boolean | undefined;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
generic_id: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
generic_id: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
16
30
|
//#endregion
|
|
17
31
|
export { softrDeleteDatabase };
|
|
18
32
|
//# sourceMappingURL=delete-database.d.cts.map
|
|
@@ -12,7 +12,21 @@ declare const SoftrDeleteDatabaseOutput: z.ZodObject<{
|
|
|
12
12
|
declare const softrDeleteDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
database_id: string;
|
|
14
14
|
force?: boolean | undefined;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
generic_id: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
generic_id: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
16
30
|
//#endregion
|
|
17
31
|
export { softrDeleteDatabase };
|
|
18
32
|
//# sourceMappingURL=delete-database.d.mts.map
|
|
@@ -13,7 +13,21 @@ declare const softrDeleteRecord: import("@keystrokehq/action").WorkflowActionDef
|
|
|
13
13
|
table_id: string;
|
|
14
14
|
record_id: string;
|
|
15
15
|
database_id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
generic_id: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
generic_id: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
17
31
|
//#endregion
|
|
18
32
|
export { softrDeleteRecord };
|
|
19
33
|
//# sourceMappingURL=delete-record.d.cts.map
|
|
@@ -13,7 +13,21 @@ declare const softrDeleteRecord: import("@keystrokehq/action").WorkflowActionDef
|
|
|
13
13
|
table_id: string;
|
|
14
14
|
record_id: string;
|
|
15
15
|
database_id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
generic_id: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
generic_id: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
17
31
|
//#endregion
|
|
18
32
|
export { softrDeleteRecord };
|
|
19
33
|
//# sourceMappingURL=delete-record.d.mts.map
|
|
@@ -14,7 +14,21 @@ declare const softrDeleteTableField: import("@keystrokehq/action").WorkflowActio
|
|
|
14
14
|
field_id: string;
|
|
15
15
|
table_id: string;
|
|
16
16
|
database_id: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
generic_id: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
generic_id: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
18
32
|
//#endregion
|
|
19
33
|
export { softrDeleteTableField };
|
|
20
34
|
//# sourceMappingURL=delete-table-field.d.cts.map
|
|
@@ -14,7 +14,21 @@ declare const softrDeleteTableField: import("@keystrokehq/action").WorkflowActio
|
|
|
14
14
|
field_id: string;
|
|
15
15
|
table_id: string;
|
|
16
16
|
database_id: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
generic_id: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
generic_id: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
18
32
|
//#endregion
|
|
19
33
|
export { softrDeleteTableField };
|
|
20
34
|
//# sourceMappingURL=delete-table-field.d.mts.map
|
|
@@ -14,7 +14,21 @@ declare const softrDeleteTable: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
14
14
|
table_id: string;
|
|
15
15
|
database_id: string;
|
|
16
16
|
force?: boolean | undefined;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
generic_id: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
generic_id: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
18
32
|
//#endregion
|
|
19
33
|
export { softrDeleteTable };
|
|
20
34
|
//# sourceMappingURL=delete-table.d.cts.map
|
|
@@ -14,7 +14,21 @@ declare const softrDeleteTable: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
14
14
|
table_id: string;
|
|
15
15
|
database_id: string;
|
|
16
16
|
force?: boolean | undefined;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
generic_id: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
generic_id: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
18
32
|
//#endregion
|
|
19
33
|
export { softrDeleteTable };
|
|
20
34
|
//# sourceMappingURL=delete-table.d.mts.map
|
|
@@ -16,7 +16,21 @@ declare const SoftrGetDatabaseOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>;
|
|
17
17
|
declare const softrGetDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
18
|
database_id: string;
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
generic_id: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
generic_id: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
20
34
|
//#endregion
|
|
21
35
|
export { softrGetDatabase };
|
|
22
36
|
//# sourceMappingURL=get-database.d.cts.map
|
|
@@ -16,7 +16,21 @@ declare const SoftrGetDatabaseOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>;
|
|
17
17
|
declare const softrGetDatabase: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
18
|
database_id: string;
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
generic_id: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
generic_id: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
20
34
|
//#endregion
|
|
21
35
|
export { softrGetDatabase };
|
|
22
36
|
//# sourceMappingURL=get-database.d.mts.map
|
|
@@ -18,7 +18,21 @@ declare const SoftrGetDatabasesOutput: z.ZodObject<{
|
|
|
18
18
|
declare const softrGetDatabases: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
offset?: number | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
generic_id: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { softrGetDatabases };
|
|
24
38
|
//# sourceMappingURL=get-databases.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const SoftrGetDatabasesOutput: z.ZodObject<{
|
|
|
18
18
|
declare const softrGetDatabases: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
offset?: number | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
generic_id: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { softrGetDatabases };
|
|
24
38
|
//# sourceMappingURL=get-databases.d.mts.map
|
|
@@ -19,7 +19,21 @@ declare const softrGetRecord: import("@keystrokehq/action").WorkflowActionDefini
|
|
|
19
19
|
tableId: string;
|
|
20
20
|
recordId: string;
|
|
21
21
|
databaseId: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
generic_id: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
generic_id: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
23
37
|
//#endregion
|
|
24
38
|
export { softrGetRecord };
|
|
25
39
|
//# sourceMappingURL=get-record.d.cts.map
|
|
@@ -19,7 +19,21 @@ declare const softrGetRecord: import("@keystrokehq/action").WorkflowActionDefini
|
|
|
19
19
|
tableId: string;
|
|
20
20
|
recordId: string;
|
|
21
21
|
databaseId: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
generic_id: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
generic_id: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
23
37
|
//#endregion
|
|
24
38
|
export { softrGetRecord };
|
|
25
39
|
//# sourceMappingURL=get-record.d.mts.map
|
|
@@ -26,7 +26,21 @@ declare const softrGetRecords: import("@keystrokehq/action").WorkflowActionDefin
|
|
|
26
26
|
databaseId: string;
|
|
27
27
|
limit?: number | undefined;
|
|
28
28
|
offset?: number | undefined;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
generic_id: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
generic_id: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>;
|
|
30
44
|
//#endregion
|
|
31
45
|
export { softrGetRecords };
|
|
32
46
|
//# sourceMappingURL=get-records.d.cts.map
|
|
@@ -26,7 +26,21 @@ declare const softrGetRecords: import("@keystrokehq/action").WorkflowActionDefin
|
|
|
26
26
|
databaseId: string;
|
|
27
27
|
limit?: number | undefined;
|
|
28
28
|
offset?: number | undefined;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
generic_api_key: z.ZodString;
|
|
35
|
+
generic_id: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
generic_id: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>;
|
|
30
44
|
//#endregion
|
|
31
45
|
export { softrGetRecords };
|
|
32
46
|
//# sourceMappingURL=get-records.d.mts.map
|
|
@@ -25,7 +25,21 @@ declare const softrGetTableField: import("@keystrokehq/action").WorkflowActionDe
|
|
|
25
25
|
fieldId: string;
|
|
26
26
|
tableId: string;
|
|
27
27
|
databaseId: string;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
generic_id: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
generic_api_key: z.ZodString;
|
|
41
|
+
generic_id: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
29
43
|
//#endregion
|
|
30
44
|
export { softrGetTableField };
|
|
31
45
|
//# sourceMappingURL=get-table-field.d.cts.map
|