@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
|
@@ -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.mts.map
|
|
@@ -18,7 +18,21 @@ declare const SoftrGetTableViewsOutput: z.ZodObject<{
|
|
|
18
18
|
declare const softrGetTableViews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
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 { softrGetTableViews };
|
|
24
38
|
//# sourceMappingURL=get-table-views.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const SoftrGetTableViewsOutput: z.ZodObject<{
|
|
|
18
18
|
declare const softrGetTableViews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
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 { softrGetTableViews };
|
|
24
38
|
//# sourceMappingURL=get-table-views.d.mts.map
|
|
@@ -64,7 +64,21 @@ declare const SoftrGetTableOutput: z.ZodObject<{
|
|
|
64
64
|
declare const softrGetTable: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
65
65
|
table_id: string;
|
|
66
66
|
database_id: string;
|
|
67
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
67
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
68
|
+
connectionId: z.ZodString;
|
|
69
|
+
entityId: z.ZodString;
|
|
70
|
+
instanceId: z.ZodString;
|
|
71
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
72
|
+
generic_api_key: z.ZodString;
|
|
73
|
+
generic_id: z.ZodString;
|
|
74
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
75
|
+
connectionId: z.ZodString;
|
|
76
|
+
entityId: z.ZodString;
|
|
77
|
+
instanceId: z.ZodString;
|
|
78
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
79
|
+
generic_api_key: z.ZodString;
|
|
80
|
+
generic_id: z.ZodString;
|
|
81
|
+
}, z.core.$strip>>]>;
|
|
68
82
|
//#endregion
|
|
69
83
|
export { softrGetTable };
|
|
70
84
|
//# sourceMappingURL=get-table.d.cts.map
|
|
@@ -64,7 +64,21 @@ declare const SoftrGetTableOutput: z.ZodObject<{
|
|
|
64
64
|
declare const softrGetTable: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
65
65
|
table_id: string;
|
|
66
66
|
database_id: string;
|
|
67
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
67
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
68
|
+
connectionId: z.ZodString;
|
|
69
|
+
entityId: z.ZodString;
|
|
70
|
+
instanceId: z.ZodString;
|
|
71
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
72
|
+
generic_api_key: z.ZodString;
|
|
73
|
+
generic_id: z.ZodString;
|
|
74
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
75
|
+
connectionId: z.ZodString;
|
|
76
|
+
entityId: z.ZodString;
|
|
77
|
+
instanceId: z.ZodString;
|
|
78
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
79
|
+
generic_api_key: z.ZodString;
|
|
80
|
+
generic_id: z.ZodString;
|
|
81
|
+
}, z.core.$strip>>]>;
|
|
68
82
|
//#endregion
|
|
69
83
|
export { softrGetTable };
|
|
70
84
|
//# sourceMappingURL=get-table.d.mts.map
|
|
@@ -17,7 +17,21 @@ declare const SoftrGetTablesOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const softrGetTables: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
databaseId: string;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
generic_id: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
generic_id: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
21
35
|
//#endregion
|
|
22
36
|
export { softrGetTables };
|
|
23
37
|
//# sourceMappingURL=get-tables.d.cts.map
|
|
@@ -17,7 +17,21 @@ declare const SoftrGetTablesOutput: z.ZodObject<{
|
|
|
17
17
|
}, z.core.$loose>;
|
|
18
18
|
declare const softrGetTables: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
databaseId: string;
|
|
20
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
20
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
generic_id: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
generic_id: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>;
|
|
21
35
|
//#endregion
|
|
22
36
|
export { softrGetTables };
|
|
23
37
|
//# sourceMappingURL=get-tables.d.mts.map
|
|
@@ -32,7 +32,21 @@ declare const softrSearchRecords: import("@keystrokehq/action").WorkflowActionDe
|
|
|
32
32
|
limit?: number | undefined;
|
|
33
33
|
offset?: number | undefined;
|
|
34
34
|
} | undefined;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
generic_id: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>;
|
|
36
50
|
//#endregion
|
|
37
51
|
export { softrSearchRecords };
|
|
38
52
|
//# sourceMappingURL=search-records.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-records.d.cts","names":[],"sources":["../../src/actions/search-records.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAsBvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAKxB,kBAAA,gCAAkB,wBAAA
|
|
1
|
+
{"version":3,"file":"search-records.d.cts","names":[],"sources":["../../src/actions/search-records.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAsBvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAKxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -32,7 +32,21 @@ declare const softrSearchRecords: import("@keystrokehq/action").WorkflowActionDe
|
|
|
32
32
|
limit?: number | undefined;
|
|
33
33
|
offset?: number | undefined;
|
|
34
34
|
} | undefined;
|
|
35
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
generic_id: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>;
|
|
36
50
|
//#endregion
|
|
37
51
|
export { softrSearchRecords };
|
|
38
52
|
//# sourceMappingURL=search-records.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-records.d.mts","names":[],"sources":["../../src/actions/search-records.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAsBvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAKxB,kBAAA,gCAAkB,wBAAA
|
|
1
|
+
{"version":3,"file":"search-records.d.mts","names":[],"sources":["../../src/actions/search-records.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAsBvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAKxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -20,7 +20,21 @@ declare const softrUpdateDatabase: import("@keystrokehq/action").WorkflowActionD
|
|
|
20
20
|
database_id: string;
|
|
21
21
|
name?: string | undefined;
|
|
22
22
|
description?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
generic_id: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
24
38
|
//#endregion
|
|
25
39
|
export { softrUpdateDatabase };
|
|
26
40
|
//# sourceMappingURL=update-database.d.cts.map
|
|
@@ -20,7 +20,21 @@ declare const softrUpdateDatabase: import("@keystrokehq/action").WorkflowActionD
|
|
|
20
20
|
database_id: string;
|
|
21
21
|
name?: string | undefined;
|
|
22
22
|
description?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
generic_id: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
24
38
|
//#endregion
|
|
25
39
|
export { softrUpdateDatabase };
|
|
26
40
|
//# sourceMappingURL=update-database.d.mts.map
|
|
@@ -21,7 +21,21 @@ declare const softrUpdateRecord: import("@keystrokehq/action").WorkflowActionDef
|
|
|
21
21
|
table_id: string;
|
|
22
22
|
record_id: string;
|
|
23
23
|
database_id: string;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
generic_api_key: z.ZodString;
|
|
37
|
+
generic_id: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
25
39
|
//#endregion
|
|
26
40
|
export { softrUpdateRecord };
|
|
27
41
|
//# sourceMappingURL=update-record.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-record.d.cts","names":[],"sources":["../../src/actions/update-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;cAatB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-record.d.cts","names":[],"sources":["../../src/actions/update-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;cAatB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -21,7 +21,21 @@ declare const softrUpdateRecord: import("@keystrokehq/action").WorkflowActionDef
|
|
|
21
21
|
table_id: string;
|
|
22
22
|
record_id: string;
|
|
23
23
|
database_id: string;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
generic_api_key: z.ZodString;
|
|
37
|
+
generic_id: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
25
39
|
//#endregion
|
|
26
40
|
export { softrUpdateRecord };
|
|
27
41
|
//# sourceMappingURL=update-record.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-record.d.mts","names":[],"sources":["../../src/actions/update-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;cAatB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-record.d.mts","names":[],"sources":["../../src/actions/update-record.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;cAatB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -61,7 +61,21 @@ declare const softrUpdateTableField: import("@keystrokehq/action").WorkflowActio
|
|
|
61
61
|
table_id: string;
|
|
62
62
|
database_id: string;
|
|
63
63
|
name?: string | 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 { softrUpdateTableField };
|
|
67
81
|
//# sourceMappingURL=update-table-field.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-table-field.d.cts","names":[],"sources":["../../src/actions/update-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAc3B,qBAAA,gCAAqB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-table-field.d.cts","names":[],"sources":["../../src/actions/update-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAc3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -61,7 +61,21 @@ declare const softrUpdateTableField: import("@keystrokehq/action").WorkflowActio
|
|
|
61
61
|
table_id: string;
|
|
62
62
|
database_id: string;
|
|
63
63
|
name?: string | 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 { softrUpdateTableField };
|
|
67
81
|
//# sourceMappingURL=update-table-field.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-table-field.d.mts","names":[],"sources":["../../src/actions/update-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAc3B,qBAAA,gCAAqB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-table-field.d.mts","names":[],"sources":["../../src/actions/update-table-field.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAQ1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAc3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -36,7 +36,21 @@ declare const softrUpdateTable: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
36
36
|
table_id: string;
|
|
37
37
|
database_id: string;
|
|
38
38
|
description?: string | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
generic_id: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
generic_api_key: z.ZodString;
|
|
52
|
+
generic_id: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>;
|
|
40
54
|
//#endregion
|
|
41
55
|
export { softrUpdateTable };
|
|
42
56
|
//# sourceMappingURL=update-table.d.cts.map
|
|
@@ -36,7 +36,21 @@ declare const softrUpdateTable: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
36
36
|
table_id: string;
|
|
37
37
|
database_id: string;
|
|
38
38
|
description?: string | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
generic_id: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
generic_api_key: z.ZodString;
|
|
52
|
+
generic_id: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>;
|
|
40
54
|
//#endregion
|
|
41
55
|
export { softrUpdateTable };
|
|
42
56
|
//# sourceMappingURL=update-table.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const softr = (0,
|
|
4
|
+
const softr = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "softr",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
generic_api_key: zod.z.string(),
|
|
9
|
+
generic_id: zod.z.string()
|
|
10
|
+
}
|
|
5
11
|
});
|
|
6
12
|
//#endregion
|
|
7
13
|
exports.softr = softr;
|
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 softr = defineApp({\n slug: \"softr\",\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 softr = defineApp({\n slug: \"softr\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n generic_id: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,SAAA,GAAA,2BAAA,UAAA,CAAkB;CAC7B,MAAM;CACN,MAAM;CACN,YAAY;EACV,iBAAiBA,IAAAA,EAAE,OAAO;EAC1B,YAAYA,IAAAA,EAAE,OAAO;CACvB;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const softr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const softr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
generic_id: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { softr };
|
|
5
14
|
//# 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,KAAA,6BAAK,GAAA,+BAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const softr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const softr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"softr", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
generic_id: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { softr };
|
|
5
14
|
//# 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,KAAA,6BAAK,GAAA,+BAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const softr = defineApp({
|
|
4
5
|
slug: "softr",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
generic_api_key: z.string(),
|
|
9
|
+
generic_id: z.string()
|
|
10
|
+
}
|
|
6
11
|
});
|
|
7
12
|
//#endregion
|
|
8
13
|
export { softr };
|
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 softr = defineApp({\n slug: \"softr\",\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 softr = defineApp({\n slug: \"softr\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n generic_id: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,QAAQ,UAAU;CAC7B,MAAM;CACN,MAAM;CACN,YAAY;EACV,iBAAiB,EAAE,OAAO;EAC1B,YAAY,EAAE,OAAO;CACvB;AACF,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -9,12 +9,12 @@ const softrCatalog = {
|
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
11
|
"credentialFields": {
|
|
12
|
-
"
|
|
12
|
+
"generic_api_key": {
|
|
13
13
|
"label": "API Key",
|
|
14
14
|
"secret": true,
|
|
15
15
|
"description": "Navigate to Dashboard → Profile icon → My account → API Settings and click \"Generate API key\". You must be an application owner or workspace collaborator."
|
|
16
16
|
},
|
|
17
|
-
"
|
|
17
|
+
"generic_id": {
|
|
18
18
|
"label": "Domain",
|
|
19
19
|
"description": "Your Softr app domain or subdomain (e.g., \"yourdomain.softr.app\" or \"yourdomain.com\"). Access your app on Softr → Publish to find your subdomain. Your app must be published before making API calls."
|
|
20
20
|
}
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const softrCatalog = {\n \"slug\": \"softr\",\n \"name\": \"Softr\",\n \"description\": \"Build custom apps and portals from Airtable in minutes with no-code. Softr provides user management and database APIs for building client portals, internal tools, and web applications.\",\n \"category\": \"App Builder\",\n \"logo\": \"https://logos.composio.dev/api/softr\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const softrCatalog = {\n \"slug\": \"softr\",\n \"name\": \"Softr\",\n \"description\": \"Build custom apps and portals from Airtable in minutes with no-code. Softr provides user management and database APIs for building client portals, internal tools, and web applications.\",\n \"category\": \"App Builder\",\n \"logo\": \"https://logos.composio.dev/api/softr\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Navigate to Dashboard → Profile icon → My account → API Settings and click \\\"Generate API key\\\". You must be an application owner or workspace collaborator.\"\n },\n \"generic_id\": {\n \"label\": \"Domain\",\n \"description\": \"Your Softr app domain or subdomain (e.g., \\\"yourdomain.softr.app\\\" or \\\"yourdomain.com\\\"). Access your app on Softr → Publish to find your subdomain. Your app must be published before making API calls.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,cAAc;GACZ,SAAS;GACT,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,12 +9,12 @@ declare const softrCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Navigate to Dashboard → Profile icon → My account → API Settings and click \"Generate API key\". You must be an application owner or workspace collaborator.";
|
|
16
16
|
};
|
|
17
|
-
readonly
|
|
17
|
+
readonly generic_id: {
|
|
18
18
|
readonly label: "Domain";
|
|
19
19
|
readonly description: "Your Softr app domain or subdomain (e.g., \"yourdomain.softr.app\" or \"yourdomain.com\"). Access your app on Softr → Publish to find your subdomain. Your app must be published before making API calls.";
|
|
20
20
|
};
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,12 +9,12 @@ declare const softrCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Navigate to Dashboard → Profile icon → My account → API Settings and click \"Generate API key\". You must be an application owner or workspace collaborator.";
|
|
16
16
|
};
|
|
17
|
-
readonly
|
|
17
|
+
readonly generic_id: {
|
|
18
18
|
readonly label: "Domain";
|
|
19
19
|
readonly description: "Your Softr app domain or subdomain (e.g., \"yourdomain.softr.app\" or \"yourdomain.com\"). Access your app on Softr → Publish to find your subdomain. Your app must be published before making API calls.";
|
|
20
20
|
};
|
package/dist/catalog.mjs
CHANGED
|
@@ -9,12 +9,12 @@ const softrCatalog = {
|
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
11
|
"credentialFields": {
|
|
12
|
-
"
|
|
12
|
+
"generic_api_key": {
|
|
13
13
|
"label": "API Key",
|
|
14
14
|
"secret": true,
|
|
15
15
|
"description": "Navigate to Dashboard → Profile icon → My account → API Settings and click \"Generate API key\". You must be an application owner or workspace collaborator."
|
|
16
16
|
},
|
|
17
|
-
"
|
|
17
|
+
"generic_id": {
|
|
18
18
|
"label": "Domain",
|
|
19
19
|
"description": "Your Softr app domain or subdomain (e.g., \"yourdomain.softr.app\" or \"yourdomain.com\"). Access your app on Softr → Publish to find your subdomain. Your app must be published before making API calls."
|
|
20
20
|
}
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const softrCatalog = {\n \"slug\": \"softr\",\n \"name\": \"Softr\",\n \"description\": \"Build custom apps and portals from Airtable in minutes with no-code. Softr provides user management and database APIs for building client portals, internal tools, and web applications.\",\n \"category\": \"App Builder\",\n \"logo\": \"https://logos.composio.dev/api/softr\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const softrCatalog = {\n \"slug\": \"softr\",\n \"name\": \"Softr\",\n \"description\": \"Build custom apps and portals from Airtable in minutes with no-code. Softr provides user management and database APIs for building client portals, internal tools, and web applications.\",\n \"category\": \"App Builder\",\n \"logo\": \"https://logos.composio.dev/api/softr\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Navigate to Dashboard → Profile icon → My account → API Settings and click \\\"Generate API key\\\". You must be an application owner or workspace collaborator.\"\n },\n \"generic_id\": {\n \"label\": \"Domain\",\n \"description\": \"Your Softr app domain or subdomain (e.g., \\\"yourdomain.softr.app\\\" or \\\"yourdomain.com\\\"). Access your app on Softr → Publish to find your subdomain. Your app must be published before making API calls.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,cAAc;GACZ,SAAS;GACT,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|