@keystrokehq/folk 0.1.4 → 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-company.d.cts +13 -1
- package/dist/actions/create-company.d.cts.map +1 -1
- package/dist/actions/create-company.d.mts +13 -1
- package/dist/actions/create-company.d.mts.map +1 -1
- package/dist/actions/create-note.d.cts +13 -1
- package/dist/actions/create-note.d.mts +13 -1
- package/dist/actions/create-person.d.cts +13 -1
- package/dist/actions/create-person.d.cts.map +1 -1
- package/dist/actions/create-person.d.mts +13 -1
- package/dist/actions/create-person.d.mts.map +1 -1
- package/dist/actions/delete-company.d.cts +13 -1
- package/dist/actions/delete-company.d.mts +13 -1
- package/dist/actions/delete-note.d.cts +13 -1
- package/dist/actions/delete-note.d.mts +13 -1
- package/dist/actions/delete-person.d.cts +13 -1
- package/dist/actions/delete-person.d.mts +13 -1
- package/dist/actions/delete-reminder.d.cts +13 -1
- package/dist/actions/delete-reminder.d.mts +13 -1
- package/dist/actions/get-company.d.cts +13 -1
- package/dist/actions/get-company.d.mts +13 -1
- package/dist/actions/get-current-workspace-user.d.cts +13 -1
- package/dist/actions/get-current-workspace-user.d.cts.map +1 -1
- package/dist/actions/get-current-workspace-user.d.mts +13 -1
- package/dist/actions/get-current-workspace-user.d.mts.map +1 -1
- package/dist/actions/get-note.d.cts +13 -1
- package/dist/actions/get-note.d.mts +13 -1
- package/dist/actions/get-person.d.cts +13 -1
- package/dist/actions/get-person.d.mts +13 -1
- package/dist/actions/get-user.d.cts +13 -1
- package/dist/actions/get-user.d.mts +13 -1
- package/dist/actions/list-companies.d.cts +13 -1
- package/dist/actions/list-companies.d.cts.map +1 -1
- package/dist/actions/list-companies.d.mts +13 -1
- package/dist/actions/list-companies.d.mts.map +1 -1
- package/dist/actions/list-group-custom-fields.d.cts +13 -1
- package/dist/actions/list-group-custom-fields.d.mts +13 -1
- package/dist/actions/list-groups.d.cts +13 -1
- package/dist/actions/list-groups.d.mts +13 -1
- package/dist/actions/list-notes.d.cts +13 -1
- package/dist/actions/list-notes.d.mts +13 -1
- package/dist/actions/list-people.d.cts +13 -1
- package/dist/actions/list-people.d.cts.map +1 -1
- package/dist/actions/list-people.d.mts +13 -1
- package/dist/actions/list-people.d.mts.map +1 -1
- package/dist/actions/list-reminders.d.cts +13 -1
- package/dist/actions/list-reminders.d.mts +13 -1
- package/dist/actions/list-users.d.cts +13 -1
- package/dist/actions/list-users.d.mts +13 -1
- package/dist/actions/list-webhooks.d.cts +13 -1
- package/dist/actions/list-webhooks.d.mts +13 -1
- package/dist/actions/update-company.d.cts +13 -1
- package/dist/actions/update-company.d.cts.map +1 -1
- package/dist/actions/update-company.d.mts +13 -1
- package/dist/actions/update-company.d.mts.map +1 -1
- package/dist/actions/update-note.d.cts +13 -1
- package/dist/actions/update-note.d.mts +13 -1
- package/dist/actions/update-person.d.cts +13 -1
- package/dist/actions/update-person.d.cts.map +1 -1
- package/dist/actions/update-person.d.mts +13 -1
- package/dist/actions/update-person.d.mts.map +1 -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
|
@@ -63,7 +63,19 @@ declare const folkCreateCompany: import("@keystrokehq/action").WorkflowActionDef
|
|
|
63
63
|
foundationYear?: string | undefined;
|
|
64
64
|
lastFundingDate?: string | undefined;
|
|
65
65
|
customFieldValues?: Record<string, unknown> | undefined;
|
|
66
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
66
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
67
|
+
connectionId: z.ZodString;
|
|
68
|
+
entityId: z.ZodString;
|
|
69
|
+
instanceId: z.ZodString;
|
|
70
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
71
|
+
generic_api_key: z.ZodString;
|
|
72
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
73
|
+
connectionId: z.ZodString;
|
|
74
|
+
entityId: z.ZodString;
|
|
75
|
+
instanceId: z.ZodString;
|
|
76
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
77
|
+
generic_api_key: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>;
|
|
67
79
|
//#endregion
|
|
68
80
|
export { folkCreateCompany };
|
|
69
81
|
//# sourceMappingURL=create-company.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-company.d.cts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cA4CtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-company.d.cts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cA4CtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -63,7 +63,19 @@ declare const folkCreateCompany: import("@keystrokehq/action").WorkflowActionDef
|
|
|
63
63
|
foundationYear?: string | undefined;
|
|
64
64
|
lastFundingDate?: string | undefined;
|
|
65
65
|
customFieldValues?: Record<string, unknown> | undefined;
|
|
66
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
66
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
67
|
+
connectionId: z.ZodString;
|
|
68
|
+
entityId: z.ZodString;
|
|
69
|
+
instanceId: z.ZodString;
|
|
70
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
71
|
+
generic_api_key: z.ZodString;
|
|
72
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
73
|
+
connectionId: z.ZodString;
|
|
74
|
+
entityId: z.ZodString;
|
|
75
|
+
instanceId: z.ZodString;
|
|
76
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
77
|
+
generic_api_key: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>;
|
|
67
79
|
//#endregion
|
|
68
80
|
export { folkCreateCompany };
|
|
69
81
|
//# sourceMappingURL=create-company.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-company.d.mts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cA4CtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-company.d.mts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cA4CtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -47,7 +47,19 @@ declare const folkCreateNote: import("@keystrokehq/action").WorkflowActionDefini
|
|
|
47
47
|
parentNote?: {
|
|
48
48
|
id: string;
|
|
49
49
|
} | undefined;
|
|
50
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
50
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
57
|
+
connectionId: z.ZodString;
|
|
58
|
+
entityId: z.ZodString;
|
|
59
|
+
instanceId: z.ZodString;
|
|
60
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
61
|
+
generic_api_key: z.ZodString;
|
|
62
|
+
}, z.core.$strip>>]>;
|
|
51
63
|
//#endregion
|
|
52
64
|
export { folkCreateNote };
|
|
53
65
|
//# sourceMappingURL=create-note.d.cts.map
|
|
@@ -47,7 +47,19 @@ declare const folkCreateNote: import("@keystrokehq/action").WorkflowActionDefini
|
|
|
47
47
|
parentNote?: {
|
|
48
48
|
id: string;
|
|
49
49
|
} | undefined;
|
|
50
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
50
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
57
|
+
connectionId: z.ZodString;
|
|
58
|
+
entityId: z.ZodString;
|
|
59
|
+
instanceId: z.ZodString;
|
|
60
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
61
|
+
generic_api_key: z.ZodString;
|
|
62
|
+
}, z.core.$strip>>]>;
|
|
51
63
|
//#endregion
|
|
52
64
|
export { folkCreateNote };
|
|
53
65
|
//# sourceMappingURL=create-note.d.mts.map
|
|
@@ -68,7 +68,19 @@ declare const folkCreatePerson: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
68
68
|
lastName?: string | undefined;
|
|
69
69
|
firstName?: string | undefined;
|
|
70
70
|
customFieldValues?: Record<string, unknown> | undefined;
|
|
71
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
71
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
78
|
+
connectionId: z.ZodString;
|
|
79
|
+
entityId: z.ZodString;
|
|
80
|
+
instanceId: z.ZodString;
|
|
81
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
82
|
+
generic_api_key: z.ZodString;
|
|
83
|
+
}, z.core.$strip>>]>;
|
|
72
84
|
//#endregion
|
|
73
85
|
export { folkCreatePerson };
|
|
74
86
|
//# sourceMappingURL=create-person.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-person.d.cts","names":[],"sources":["../../src/actions/create-person.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;cAwDrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKtB,gBAAA,gCAAgB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-person.d.cts","names":[],"sources":["../../src/actions/create-person.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;cAwDrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKtB,gBAAA,gCAAgB,wBAAA"}
|
|
@@ -68,7 +68,19 @@ declare const folkCreatePerson: import("@keystrokehq/action").WorkflowActionDefi
|
|
|
68
68
|
lastName?: string | undefined;
|
|
69
69
|
firstName?: string | undefined;
|
|
70
70
|
customFieldValues?: Record<string, unknown> | undefined;
|
|
71
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
71
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
78
|
+
connectionId: z.ZodString;
|
|
79
|
+
entityId: z.ZodString;
|
|
80
|
+
instanceId: z.ZodString;
|
|
81
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
82
|
+
generic_api_key: z.ZodString;
|
|
83
|
+
}, z.core.$strip>>]>;
|
|
72
84
|
//#endregion
|
|
73
85
|
export { folkCreatePerson };
|
|
74
86
|
//# sourceMappingURL=create-person.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-person.d.mts","names":[],"sources":["../../src/actions/create-person.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;cAwDrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKtB,gBAAA,gCAAgB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-person.d.mts","names":[],"sources":["../../src/actions/create-person.ts"],"mappings":";;;cAIa,qBAAA,EAAqB,CAAA,CAAA,SAAA;;;;;;;;;;cAwDrB,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKtB,gBAAA,gCAAgB,wBAAA"}
|
|
@@ -12,7 +12,19 @@ declare const FolkDeleteCompanyOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeleteCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
company_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeleteCompany };
|
|
18
30
|
//# sourceMappingURL=delete-company.d.cts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeleteCompanyOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeleteCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
company_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeleteCompany };
|
|
18
30
|
//# sourceMappingURL=delete-company.d.mts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeleteNoteOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeleteNote: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
note_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeleteNote };
|
|
18
30
|
//# sourceMappingURL=delete-note.d.cts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeleteNoteOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeleteNote: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
note_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeleteNote };
|
|
18
30
|
//# sourceMappingURL=delete-note.d.mts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeletePersonOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeletePerson: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
person_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeletePerson };
|
|
18
30
|
//# sourceMappingURL=delete-person.d.cts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeletePersonOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeletePerson: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
person_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeletePerson };
|
|
18
30
|
//# sourceMappingURL=delete-person.d.mts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeleteReminderOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeleteReminder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
reminder_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeleteReminder };
|
|
18
30
|
//# sourceMappingURL=delete-reminder.d.cts.map
|
|
@@ -12,7 +12,19 @@ declare const FolkDeleteReminderOutput: z.ZodObject<{
|
|
|
12
12
|
}, z.core.$loose>;
|
|
13
13
|
declare const folkDeleteReminder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
reminder_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
16
28
|
//#endregion
|
|
17
29
|
export { folkDeleteReminder };
|
|
18
30
|
//# sourceMappingURL=delete-reminder.d.mts.map
|
|
@@ -22,7 +22,19 @@ declare const FolkGetCompanyOutput: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const folkGetCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
company_id: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
generic_api_key: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { folkGetCompany };
|
|
28
40
|
//# sourceMappingURL=get-company.d.cts.map
|
|
@@ -22,7 +22,19 @@ declare const FolkGetCompanyOutput: z.ZodObject<{
|
|
|
22
22
|
}, z.core.$loose>;
|
|
23
23
|
declare const folkGetCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
24
24
|
company_id: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
generic_api_key: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { folkGetCompany };
|
|
28
40
|
//# sourceMappingURL=get-company.d.mts.map
|
|
@@ -9,7 +9,19 @@ declare const FolkGetCurrentWorkspaceUserOutput: z.ZodObject<{
|
|
|
9
9
|
fullName: z.ZodNullable<z.ZodString>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const folkGetCurrentWorkspaceUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const folkGetCurrentWorkspaceUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { folkGetCurrentWorkspaceUser };
|
|
15
27
|
//# sourceMappingURL=get-current-workspace-user.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-current-workspace-user.d.cts","names":[],"sources":["../../src/actions/get-current-workspace-user.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":"get-current-workspace-user.d.cts","names":[],"sources":["../../src/actions/get-current-workspace-user.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,SAAA,CAAA,CAAA,SAAA"}
|
|
@@ -9,7 +9,19 @@ declare const FolkGetCurrentWorkspaceUserOutput: z.ZodObject<{
|
|
|
9
9
|
fullName: z.ZodNullable<z.ZodString>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const folkGetCurrentWorkspaceUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const folkGetCurrentWorkspaceUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
generic_api_key: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
13
25
|
//#endregion
|
|
14
26
|
export { folkGetCurrentWorkspaceUser };
|
|
15
27
|
//# sourceMappingURL=get-current-workspace-user.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-current-workspace-user.d.mts","names":[],"sources":["../../src/actions/get-current-workspace-user.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":"get-current-workspace-user.d.mts","names":[],"sources":["../../src/actions/get-current-workspace-user.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,SAAA,CAAA,CAAA,SAAA"}
|
|
@@ -75,7 +75,19 @@ declare const FolkGetNoteOutput: z.ZodObject<{
|
|
|
75
75
|
}, z.core.$loose>;
|
|
76
76
|
declare const folkGetNote: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
77
77
|
note_id: string;
|
|
78
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
78
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
79
|
+
connectionId: z.ZodString;
|
|
80
|
+
entityId: z.ZodString;
|
|
81
|
+
instanceId: z.ZodString;
|
|
82
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
83
|
+
generic_api_key: z.ZodString;
|
|
84
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
85
|
+
connectionId: z.ZodString;
|
|
86
|
+
entityId: z.ZodString;
|
|
87
|
+
instanceId: z.ZodString;
|
|
88
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
89
|
+
generic_api_key: z.ZodString;
|
|
90
|
+
}, z.core.$strip>>]>;
|
|
79
91
|
//#endregion
|
|
80
92
|
export { folkGetNote };
|
|
81
93
|
//# sourceMappingURL=get-note.d.cts.map
|
|
@@ -75,7 +75,19 @@ declare const FolkGetNoteOutput: z.ZodObject<{
|
|
|
75
75
|
}, z.core.$loose>;
|
|
76
76
|
declare const folkGetNote: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
77
77
|
note_id: string;
|
|
78
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
78
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
79
|
+
connectionId: z.ZodString;
|
|
80
|
+
entityId: z.ZodString;
|
|
81
|
+
instanceId: z.ZodString;
|
|
82
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
83
|
+
generic_api_key: z.ZodString;
|
|
84
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
85
|
+
connectionId: z.ZodString;
|
|
86
|
+
entityId: z.ZodString;
|
|
87
|
+
instanceId: z.ZodString;
|
|
88
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
89
|
+
generic_api_key: z.ZodString;
|
|
90
|
+
}, z.core.$strip>>]>;
|
|
79
91
|
//#endregion
|
|
80
92
|
export { folkGetNote };
|
|
81
93
|
//# sourceMappingURL=get-note.d.mts.map
|
|
@@ -36,7 +36,19 @@ declare const FolkGetPersonOutput: z.ZodObject<{
|
|
|
36
36
|
}, z.core.$loose>;
|
|
37
37
|
declare const folkGetPerson: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
38
38
|
person_id: string;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { folkGetPerson };
|
|
42
54
|
//# sourceMappingURL=get-person.d.cts.map
|
|
@@ -36,7 +36,19 @@ declare const FolkGetPersonOutput: z.ZodObject<{
|
|
|
36
36
|
}, z.core.$loose>;
|
|
37
37
|
declare const folkGetPerson: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
38
38
|
person_id: string;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { folkGetPerson };
|
|
42
54
|
//# sourceMappingURL=get-person.d.mts.map
|
|
@@ -14,7 +14,19 @@ declare const FolkGetUserOutput: z.ZodObject<{
|
|
|
14
14
|
}, z.core.$loose>;
|
|
15
15
|
declare const folkGetUser: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
user_id: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
18
30
|
//#endregion
|
|
19
31
|
export { folkGetUser };
|
|
20
32
|
//# sourceMappingURL=get-user.d.cts.map
|
|
@@ -14,7 +14,19 @@ declare const FolkGetUserOutput: z.ZodObject<{
|
|
|
14
14
|
}, z.core.$loose>;
|
|
15
15
|
declare const folkGetUser: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
user_id: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", 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
|
+
}, z.core.$strip>>]>;
|
|
18
30
|
//#endregion
|
|
19
31
|
export { folkGetUser };
|
|
20
32
|
//# sourceMappingURL=get-user.d.mts.map
|
|
@@ -48,7 +48,19 @@ declare const folkListCompanies: import("@keystrokehq/action").WorkflowActionDef
|
|
|
48
48
|
cursor?: string | undefined;
|
|
49
49
|
filter?: Record<string, unknown> | undefined;
|
|
50
50
|
combinator?: "and" | "or" | undefined;
|
|
51
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
51
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
52
|
+
connectionId: z.ZodString;
|
|
53
|
+
entityId: z.ZodString;
|
|
54
|
+
instanceId: z.ZodString;
|
|
55
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
56
|
+
generic_api_key: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
58
|
+
connectionId: z.ZodString;
|
|
59
|
+
entityId: z.ZodString;
|
|
60
|
+
instanceId: z.ZodString;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
generic_api_key: z.ZodString;
|
|
63
|
+
}, z.core.$strip>>]>;
|
|
52
64
|
//#endregion
|
|
53
65
|
export { folkListCompanies };
|
|
54
66
|
//# sourceMappingURL=list-companies.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-companies.d.cts","names":[],"sources":["../../src/actions/list-companies.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;cAwCtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"list-companies.d.cts","names":[],"sources":["../../src/actions/list-companies.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;cAwCtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA"}
|
|
@@ -48,7 +48,19 @@ declare const folkListCompanies: import("@keystrokehq/action").WorkflowActionDef
|
|
|
48
48
|
cursor?: string | undefined;
|
|
49
49
|
filter?: Record<string, unknown> | undefined;
|
|
50
50
|
combinator?: "and" | "or" | undefined;
|
|
51
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
51
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
52
|
+
connectionId: z.ZodString;
|
|
53
|
+
entityId: z.ZodString;
|
|
54
|
+
instanceId: z.ZodString;
|
|
55
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
56
|
+
generic_api_key: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"folk", z.ZodObject<{
|
|
58
|
+
connectionId: z.ZodString;
|
|
59
|
+
entityId: z.ZodString;
|
|
60
|
+
instanceId: z.ZodString;
|
|
61
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
62
|
+
generic_api_key: z.ZodString;
|
|
63
|
+
}, z.core.$strip>>]>;
|
|
52
64
|
//#endregion
|
|
53
65
|
export { folkListCompanies };
|
|
54
66
|
//# sourceMappingURL=list-companies.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-companies.d.mts","names":[],"sources":["../../src/actions/list-companies.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;cAwCtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA
|
|
1
|
+
{"version":3,"file":"list-companies.d.mts","names":[],"sources":["../../src/actions/list-companies.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;cAwCtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKvB,iBAAA,gCAAiB,wBAAA"}
|