@keystrokehq/spondyr 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/conditions-list.d.cts +15 -1
- package/dist/actions/conditions-list.d.mts +15 -1
- package/dist/actions/create-condition.d.cts +15 -1
- package/dist/actions/create-condition.d.mts +15 -1
- package/dist/actions/create-transaction-type.d.cts +15 -1
- package/dist/actions/create-transaction-type.d.mts +15 -1
- package/dist/actions/deliver-spondyr.d.cts +15 -1
- package/dist/actions/deliver-spondyr.d.mts +15 -1
- package/dist/actions/event-type-update.d.cts +15 -1
- package/dist/actions/event-type-update.d.mts +15 -1
- package/dist/actions/get-event-types.d.cts +15 -1
- package/dist/actions/get-event-types.d.mts +15 -1
- package/dist/actions/get-spondyr-status.d.cts +15 -1
- package/dist/actions/get-spondyr-status.d.mts +15 -1
- package/dist/actions/get-transaction-types.d.cts +15 -1
- package/dist/actions/get-transaction-types.d.cts.map +1 -1
- package/dist/actions/get-transaction-types.d.mts +15 -1
- package/dist/actions/get-transaction-types.d.mts.map +1 -1
- package/dist/actions/recipient-delete.d.cts +15 -1
- package/dist/actions/recipient-delete.d.mts +15 -1
- package/dist/actions/recipient-get.d.cts +15 -1
- package/dist/actions/recipient-get.d.mts +15 -1
- package/dist/actions/recipients-list.d.cts +15 -1
- package/dist/actions/recipients-list.d.mts +15 -1
- package/dist/actions/search-filter-create.d.cts +15 -1
- package/dist/actions/search-filter-create.d.mts +15 -1
- package/dist/actions/search-filter-delete.d.cts +15 -1
- package/dist/actions/search-filter-delete.d.mts +15 -1
- package/dist/actions/search-filter-get.d.cts +15 -1
- package/dist/actions/search-filter-get.d.mts +15 -1
- package/dist/actions/search-filters-list.d.cts +15 -1
- package/dist/actions/search-filters-list.d.mts +15 -1
- package/dist/actions/search-spondyrs.d.cts +15 -1
- package/dist/actions/search-spondyrs.d.mts +15 -1
- package/dist/actions/sso-stub.d.cts +15 -1
- package/dist/actions/sso-stub.d.mts +15 -1
- package/dist/actions/template-get.d.cts +15 -1
- package/dist/actions/template-get.d.mts +15 -1
- package/dist/actions/templates-list.d.cts +15 -1
- package/dist/actions/templates-list.d.mts +15 -1
- package/dist/actions/transaction-type-get.d.cts +15 -1
- package/dist/actions/transaction-type-get.d.mts +15 -1
- package/dist/actions/transaction-type-update.d.cts +15 -1
- package/dist/actions/transaction-type-update.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
|
@@ -19,7 +19,21 @@ declare const SpondyrConditionsListOutput: z.ZodObject<{
|
|
|
19
19
|
}, z.core.$loose>;
|
|
20
20
|
declare const spondyrConditionsList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
TransactionType: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
23
37
|
//#endregion
|
|
24
38
|
export { spondyrConditionsList };
|
|
25
39
|
//# sourceMappingURL=conditions-list.d.cts.map
|
|
@@ -19,7 +19,21 @@ declare const SpondyrConditionsListOutput: z.ZodObject<{
|
|
|
19
19
|
}, z.core.$loose>;
|
|
20
20
|
declare const spondyrConditionsList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
21
21
|
TransactionType: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
23
37
|
//#endregion
|
|
24
38
|
export { spondyrConditionsList };
|
|
25
39
|
//# sourceMappingURL=conditions-list.d.mts.map
|
|
@@ -20,7 +20,21 @@ declare const spondyrCreateCondition: import("@keystrokehq/action").WorkflowActi
|
|
|
20
20
|
FieldName: string;
|
|
21
21
|
TransactionType: string;
|
|
22
22
|
PossibleValues?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
24
38
|
//#endregion
|
|
25
39
|
export { spondyrCreateCondition };
|
|
26
40
|
//# sourceMappingURL=create-condition.d.cts.map
|
|
@@ -20,7 +20,21 @@ declare const spondyrCreateCondition: import("@keystrokehq/action").WorkflowActi
|
|
|
20
20
|
FieldName: string;
|
|
21
21
|
TransactionType: string;
|
|
22
22
|
PossibleValues?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
24
38
|
//#endregion
|
|
25
39
|
export { spondyrCreateCondition };
|
|
26
40
|
//# sourceMappingURL=create-condition.d.mts.map
|
|
@@ -16,7 +16,21 @@ declare const SpondyrCreateTransactionTypeOutput: z.ZodObject<{
|
|
|
16
16
|
declare const spondyrCreateTransactionType: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
Name: string;
|
|
18
18
|
TemplateJSON: string;
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
20
34
|
//#endregion
|
|
21
35
|
export { spondyrCreateTransactionType };
|
|
22
36
|
//# sourceMappingURL=create-transaction-type.d.cts.map
|
|
@@ -16,7 +16,21 @@ declare const SpondyrCreateTransactionTypeOutput: z.ZodObject<{
|
|
|
16
16
|
declare const spondyrCreateTransactionType: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
Name: string;
|
|
18
18
|
TemplateJSON: string;
|
|
19
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
20
34
|
//#endregion
|
|
21
35
|
export { spondyrCreateTransactionType };
|
|
22
36
|
//# sourceMappingURL=create-transaction-type.d.mts.map
|
|
@@ -54,7 +54,21 @@ declare const spondyrDeliverSpondyr: import("@keystrokehq/action").WorkflowActio
|
|
|
54
54
|
TargetedDeliveryMethod?: "Fax" | "Email" | "Mail" | "Text" | undefined;
|
|
55
55
|
}[] | undefined;
|
|
56
56
|
OriginalRecipients?: string | undefined;
|
|
57
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
57
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>;
|
|
58
72
|
//#endregion
|
|
59
73
|
export { spondyrDeliverSpondyr };
|
|
60
74
|
//# sourceMappingURL=deliver-spondyr.d.cts.map
|
|
@@ -54,7 +54,21 @@ declare const spondyrDeliverSpondyr: import("@keystrokehq/action").WorkflowActio
|
|
|
54
54
|
TargetedDeliveryMethod?: "Fax" | "Email" | "Mail" | "Text" | undefined;
|
|
55
55
|
}[] | undefined;
|
|
56
56
|
OriginalRecipients?: string | undefined;
|
|
57
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
57
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>;
|
|
58
72
|
//#endregion
|
|
59
73
|
export { spondyrDeliverSpondyr };
|
|
60
74
|
//# sourceMappingURL=deliver-spondyr.d.mts.map
|
|
@@ -18,7 +18,21 @@ declare const spondyrEventTypeUpdate: import("@keystrokehq/action").WorkflowActi
|
|
|
18
18
|
Name: string;
|
|
19
19
|
EventType: string;
|
|
20
20
|
TransactionType: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { spondyrEventTypeUpdate };
|
|
24
38
|
//# sourceMappingURL=event-type-update.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const spondyrEventTypeUpdate: import("@keystrokehq/action").WorkflowActi
|
|
|
18
18
|
Name: string;
|
|
19
19
|
EventType: string;
|
|
20
20
|
TransactionType: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { spondyrEventTypeUpdate };
|
|
24
38
|
//# sourceMappingURL=event-type-update.d.mts.map
|
|
@@ -14,7 +14,21 @@ declare const SpondyrGetEventTypesOutput: z.ZodObject<{
|
|
|
14
14
|
}, z.core.$loose>;
|
|
15
15
|
declare const spondyrGetEventTypes: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
TransactionType: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
18
32
|
//#endregion
|
|
19
33
|
export { spondyrGetEventTypes };
|
|
20
34
|
//# sourceMappingURL=get-event-types.d.cts.map
|
|
@@ -14,7 +14,21 @@ declare const SpondyrGetEventTypesOutput: z.ZodObject<{
|
|
|
14
14
|
}, z.core.$loose>;
|
|
15
15
|
declare const spondyrGetEventTypes: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
TransactionType: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>;
|
|
18
32
|
//#endregion
|
|
19
33
|
export { spondyrGetEventTypes };
|
|
20
34
|
//# sourceMappingURL=get-event-types.d.mts.map
|
|
@@ -59,7 +59,21 @@ declare const spondyrGetSpondyrStatus: import("@keystrokehq/action").WorkflowAct
|
|
|
59
59
|
FirstName?: string | undefined;
|
|
60
60
|
IncludeData?: boolean | undefined;
|
|
61
61
|
ApplicationUserID?: string | undefined;
|
|
62
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
62
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
63
|
+
connectionId: z.ZodString;
|
|
64
|
+
entityId: z.ZodString;
|
|
65
|
+
instanceId: z.ZodString;
|
|
66
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
67
|
+
generic_api_key: z.ZodString;
|
|
68
|
+
generic_token: z.ZodString;
|
|
69
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
70
|
+
connectionId: z.ZodString;
|
|
71
|
+
entityId: z.ZodString;
|
|
72
|
+
instanceId: z.ZodString;
|
|
73
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
74
|
+
generic_api_key: z.ZodString;
|
|
75
|
+
generic_token: z.ZodString;
|
|
76
|
+
}, z.core.$strip>>]>;
|
|
63
77
|
//#endregion
|
|
64
78
|
export { spondyrGetSpondyrStatus };
|
|
65
79
|
//# sourceMappingURL=get-spondyr-status.d.cts.map
|
|
@@ -59,7 +59,21 @@ declare const spondyrGetSpondyrStatus: import("@keystrokehq/action").WorkflowAct
|
|
|
59
59
|
FirstName?: string | undefined;
|
|
60
60
|
IncludeData?: boolean | undefined;
|
|
61
61
|
ApplicationUserID?: string | undefined;
|
|
62
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
62
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
63
|
+
connectionId: z.ZodString;
|
|
64
|
+
entityId: z.ZodString;
|
|
65
|
+
instanceId: z.ZodString;
|
|
66
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
67
|
+
generic_api_key: z.ZodString;
|
|
68
|
+
generic_token: z.ZodString;
|
|
69
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
70
|
+
connectionId: z.ZodString;
|
|
71
|
+
entityId: z.ZodString;
|
|
72
|
+
instanceId: z.ZodString;
|
|
73
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
74
|
+
generic_api_key: z.ZodString;
|
|
75
|
+
generic_token: z.ZodString;
|
|
76
|
+
}, z.core.$strip>>]>;
|
|
63
77
|
//#endregion
|
|
64
78
|
export { spondyrGetSpondyrStatus };
|
|
65
79
|
//# sourceMappingURL=get-spondyr-status.d.mts.map
|
|
@@ -11,7 +11,21 @@ declare const SpondyrGetTransactionTypesOutput: z.ZodObject<{
|
|
|
11
11
|
APIStatus: z.ZodNullable<z.ZodString>;
|
|
12
12
|
ErrorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
13
|
}, z.core.$loose>;
|
|
14
|
-
declare const spondyrGetTransactionTypes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
declare const spondyrGetTransactionTypes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
generic_token: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
15
29
|
//#endregion
|
|
16
30
|
export { spondyrGetTransactionTypes };
|
|
17
31
|
//# sourceMappingURL=get-transaction-types.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-transaction-types.d.cts","names":[],"sources":["../../src/actions/get-transaction-types.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-transaction-types.d.cts","names":[],"sources":["../../src/actions/get-transaction-types.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
|
|
@@ -11,7 +11,21 @@ declare const SpondyrGetTransactionTypesOutput: z.ZodObject<{
|
|
|
11
11
|
APIStatus: z.ZodNullable<z.ZodString>;
|
|
12
12
|
ErrorMessage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
13
|
}, z.core.$loose>;
|
|
14
|
-
declare const spondyrGetTransactionTypes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
declare const spondyrGetTransactionTypes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
generic_token: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
15
29
|
//#endregion
|
|
16
30
|
export { spondyrGetTransactionTypes };
|
|
17
31
|
//# sourceMappingURL=get-transaction-types.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-transaction-types.d.mts","names":[],"sources":["../../src/actions/get-transaction-types.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-transaction-types.d.mts","names":[],"sources":["../../src/actions/get-transaction-types.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
|
|
@@ -15,7 +15,21 @@ declare const SpondyrRecipientDeleteOutput: z.ZodObject<{
|
|
|
15
15
|
declare const spondyrRecipientDelete: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
Recipient: string;
|
|
17
17
|
TransactionType: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
19
33
|
//#endregion
|
|
20
34
|
export { spondyrRecipientDelete };
|
|
21
35
|
//# sourceMappingURL=recipient-delete.d.cts.map
|
|
@@ -15,7 +15,21 @@ declare const SpondyrRecipientDeleteOutput: z.ZodObject<{
|
|
|
15
15
|
declare const spondyrRecipientDelete: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
Recipient: string;
|
|
17
17
|
TransactionType: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
19
33
|
//#endregion
|
|
20
34
|
export { spondyrRecipientDelete };
|
|
21
35
|
//# sourceMappingURL=recipient-delete.d.mts.map
|
|
@@ -28,7 +28,21 @@ declare const SpondyrRecipientGetOutput: z.ZodObject<{
|
|
|
28
28
|
declare const spondyrRecipientGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
29
29
|
Recipient: string;
|
|
30
30
|
TransactionType: string;
|
|
31
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
generic_api_key: z.ZodString;
|
|
44
|
+
generic_token: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>;
|
|
32
46
|
//#endregion
|
|
33
47
|
export { spondyrRecipientGet };
|
|
34
48
|
//# sourceMappingURL=recipient-get.d.cts.map
|
|
@@ -28,7 +28,21 @@ declare const SpondyrRecipientGetOutput: z.ZodObject<{
|
|
|
28
28
|
declare const spondyrRecipientGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
29
29
|
Recipient: string;
|
|
30
30
|
TransactionType: string;
|
|
31
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
generic_api_key: z.ZodString;
|
|
44
|
+
generic_token: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>;
|
|
32
46
|
//#endregion
|
|
33
47
|
export { spondyrRecipientGet };
|
|
34
48
|
//# sourceMappingURL=recipient-get.d.mts.map
|
|
@@ -25,7 +25,21 @@ declare const SpondyrRecipientsListOutput: z.ZodObject<{
|
|
|
25
25
|
}, z.core.$loose>;
|
|
26
26
|
declare const spondyrRecipientsList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
27
|
TransactionType: string;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
29
43
|
//#endregion
|
|
30
44
|
export { spondyrRecipientsList };
|
|
31
45
|
//# sourceMappingURL=recipients-list.d.cts.map
|
|
@@ -25,7 +25,21 @@ declare const SpondyrRecipientsListOutput: z.ZodObject<{
|
|
|
25
25
|
}, z.core.$loose>;
|
|
26
26
|
declare const spondyrRecipientsList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
27
|
TransactionType: string;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>;
|
|
29
43
|
//#endregion
|
|
30
44
|
export { spondyrRecipientsList };
|
|
31
45
|
//# sourceMappingURL=recipients-list.d.mts.map
|
|
@@ -18,7 +18,21 @@ declare const spondyrSearchFilterCreate: import("@keystrokehq/action").WorkflowA
|
|
|
18
18
|
Tag: string;
|
|
19
19
|
Name: string;
|
|
20
20
|
TransactionType: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { spondyrSearchFilterCreate };
|
|
24
38
|
//# sourceMappingURL=search-filter-create.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const spondyrSearchFilterCreate: import("@keystrokehq/action").WorkflowA
|
|
|
18
18
|
Tag: string;
|
|
19
19
|
Name: string;
|
|
20
20
|
TransactionType: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>;
|
|
22
36
|
//#endregion
|
|
23
37
|
export { spondyrSearchFilterCreate };
|
|
24
38
|
//# sourceMappingURL=search-filter-create.d.mts.map
|
|
@@ -15,7 +15,21 @@ declare const SpondyrSearchFilterDeleteOutput: z.ZodObject<{
|
|
|
15
15
|
declare const spondyrSearchFilterDelete: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
Search: string;
|
|
17
17
|
TransactionType: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
19
33
|
//#endregion
|
|
20
34
|
export { spondyrSearchFilterDelete };
|
|
21
35
|
//# sourceMappingURL=search-filter-delete.d.cts.map
|
|
@@ -15,7 +15,21 @@ declare const SpondyrSearchFilterDeleteOutput: z.ZodObject<{
|
|
|
15
15
|
declare const spondyrSearchFilterDelete: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
Search: string;
|
|
17
17
|
TransactionType: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>;
|
|
19
33
|
//#endregion
|
|
20
34
|
export { spondyrSearchFilterDelete };
|
|
21
35
|
//# sourceMappingURL=search-filter-delete.d.mts.map
|