@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
|
@@ -18,7 +18,21 @@ declare const SpondyrSearchFilterGetOutput: z.ZodObject<{
|
|
|
18
18
|
declare const spondyrSearchFilterGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
Search: 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 { spondyrSearchFilterGet };
|
|
24
38
|
//# sourceMappingURL=search-filter-get.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const SpondyrSearchFilterGetOutput: z.ZodObject<{
|
|
|
18
18
|
declare const spondyrSearchFilterGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
19
|
Search: 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 { spondyrSearchFilterGet };
|
|
24
38
|
//# sourceMappingURL=search-filter-get.d.mts.map
|
|
@@ -18,7 +18,21 @@ declare const SpondyrSearchFiltersListOutput: z.ZodObject<{
|
|
|
18
18
|
}, z.core.$loose>;
|
|
19
19
|
declare const spondyrSearchFiltersList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
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 { spondyrSearchFiltersList };
|
|
24
38
|
//# sourceMappingURL=search-filters-list.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const SpondyrSearchFiltersListOutput: z.ZodObject<{
|
|
|
18
18
|
}, z.core.$loose>;
|
|
19
19
|
declare const spondyrSearchFiltersList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
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 { spondyrSearchFiltersList };
|
|
24
38
|
//# sourceMappingURL=search-filters-list.d.mts.map
|
|
@@ -61,7 +61,21 @@ declare const spondyrSearchSpondyrs: import("@keystrokehq/action").WorkflowActio
|
|
|
61
61
|
SortColumn?: string | undefined;
|
|
62
62
|
SearchValue?: string | undefined;
|
|
63
63
|
BatchReferenceID?: string | undefined;
|
|
64
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
64
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>;
|
|
65
79
|
//#endregion
|
|
66
80
|
export { spondyrSearchSpondyrs };
|
|
67
81
|
//# sourceMappingURL=search-spondyrs.d.cts.map
|
|
@@ -61,7 +61,21 @@ declare const spondyrSearchSpondyrs: import("@keystrokehq/action").WorkflowActio
|
|
|
61
61
|
SortColumn?: string | undefined;
|
|
62
62
|
SearchValue?: string | undefined;
|
|
63
63
|
BatchReferenceID?: string | undefined;
|
|
64
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
64
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
78
|
+
}, z.core.$strip>>]>;
|
|
65
79
|
//#endregion
|
|
66
80
|
export { spondyrSearchSpondyrs };
|
|
67
81
|
//# sourceMappingURL=search-spondyrs.d.mts.map
|
|
@@ -29,7 +29,21 @@ declare const spondyrSsoStub: import("@keystrokehq/action").WorkflowActionDefini
|
|
|
29
29
|
ApplicationUserID: string;
|
|
30
30
|
TimeZone?: string | undefined;
|
|
31
31
|
TenantToken?: string | undefined;
|
|
32
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
32
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
generic_token: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
33
47
|
//#endregion
|
|
34
48
|
export { spondyrSsoStub };
|
|
35
49
|
//# sourceMappingURL=sso-stub.d.cts.map
|
|
@@ -29,7 +29,21 @@ declare const spondyrSsoStub: import("@keystrokehq/action").WorkflowActionDefini
|
|
|
29
29
|
ApplicationUserID: string;
|
|
30
30
|
TimeZone?: string | undefined;
|
|
31
31
|
TenantToken?: string | undefined;
|
|
32
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
32
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
generic_token: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>;
|
|
33
47
|
//#endregion
|
|
34
48
|
export { spondyrSsoStub };
|
|
35
49
|
//# sourceMappingURL=sso-stub.d.mts.map
|
|
@@ -71,7 +71,21 @@ declare const SpondyrTemplateGetOutput: z.ZodObject<{
|
|
|
71
71
|
declare const spondyrTemplateGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
72
72
|
Template: string;
|
|
73
73
|
TransactionType: string;
|
|
74
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
74
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
81
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
82
|
+
connectionId: z.ZodString;
|
|
83
|
+
entityId: z.ZodString;
|
|
84
|
+
instanceId: z.ZodString;
|
|
85
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
86
|
+
generic_api_key: z.ZodString;
|
|
87
|
+
generic_token: z.ZodString;
|
|
88
|
+
}, z.core.$strip>>]>;
|
|
75
89
|
//#endregion
|
|
76
90
|
export { spondyrTemplateGet };
|
|
77
91
|
//# sourceMappingURL=template-get.d.cts.map
|
|
@@ -71,7 +71,21 @@ declare const SpondyrTemplateGetOutput: z.ZodObject<{
|
|
|
71
71
|
declare const spondyrTemplateGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
72
72
|
Template: string;
|
|
73
73
|
TransactionType: string;
|
|
74
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
74
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
81
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
82
|
+
connectionId: z.ZodString;
|
|
83
|
+
entityId: z.ZodString;
|
|
84
|
+
instanceId: z.ZodString;
|
|
85
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
86
|
+
generic_api_key: z.ZodString;
|
|
87
|
+
generic_token: z.ZodString;
|
|
88
|
+
}, z.core.$strip>>]>;
|
|
75
89
|
//#endregion
|
|
76
90
|
export { spondyrTemplateGet };
|
|
77
91
|
//# sourceMappingURL=template-get.d.mts.map
|
|
@@ -46,7 +46,21 @@ declare const SpondyrTemplatesListOutput: z.ZodObject<{
|
|
|
46
46
|
}, z.core.$loose>;
|
|
47
47
|
declare const spondyrTemplatesList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
48
48
|
TransactionType: string;
|
|
49
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
49
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
50
|
+
connectionId: z.ZodString;
|
|
51
|
+
entityId: z.ZodString;
|
|
52
|
+
instanceId: z.ZodString;
|
|
53
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
54
|
+
generic_api_key: z.ZodString;
|
|
55
|
+
generic_token: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
63
|
+
}, z.core.$strip>>]>;
|
|
50
64
|
//#endregion
|
|
51
65
|
export { spondyrTemplatesList };
|
|
52
66
|
//# sourceMappingURL=templates-list.d.cts.map
|
|
@@ -46,7 +46,21 @@ declare const SpondyrTemplatesListOutput: z.ZodObject<{
|
|
|
46
46
|
}, z.core.$loose>;
|
|
47
47
|
declare const spondyrTemplatesList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
48
48
|
TransactionType: string;
|
|
49
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
49
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"spondyr", z.ZodObject<{
|
|
50
|
+
connectionId: z.ZodString;
|
|
51
|
+
entityId: z.ZodString;
|
|
52
|
+
instanceId: z.ZodString;
|
|
53
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
54
|
+
generic_api_key: z.ZodString;
|
|
55
|
+
generic_token: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"spondyr", 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
|
+
generic_token: z.ZodString;
|
|
63
|
+
}, z.core.$strip>>]>;
|
|
50
64
|
//#endregion
|
|
51
65
|
export { spondyrTemplatesList };
|
|
52
66
|
//# sourceMappingURL=templates-list.d.mts.map
|
|
@@ -16,7 +16,21 @@ declare const SpondyrTransactionTypeGetOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>;
|
|
17
17
|
declare const spondyrTransactionTypeGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
18
|
TransactionType: 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 { spondyrTransactionTypeGet };
|
|
22
36
|
//# sourceMappingURL=transaction-type-get.d.cts.map
|
|
@@ -16,7 +16,21 @@ declare const SpondyrTransactionTypeGetOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>;
|
|
17
17
|
declare const spondyrTransactionTypeGet: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
18
|
TransactionType: 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 { spondyrTransactionTypeGet };
|
|
22
36
|
//# sourceMappingURL=transaction-type-get.d.mts.map
|
|
@@ -18,7 +18,21 @@ declare const spondyrTransactionTypeUpdate: import("@keystrokehq/action").Workfl
|
|
|
18
18
|
Name: string;
|
|
19
19
|
TemplateJSON: 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 { spondyrTransactionTypeUpdate };
|
|
24
38
|
//# sourceMappingURL=transaction-type-update.d.cts.map
|
|
@@ -18,7 +18,21 @@ declare const spondyrTransactionTypeUpdate: import("@keystrokehq/action").Workfl
|
|
|
18
18
|
Name: string;
|
|
19
19
|
TemplateJSON: 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 { spondyrTransactionTypeUpdate };
|
|
24
38
|
//# sourceMappingURL=transaction-type-update.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 spondyr = (0,
|
|
4
|
+
const spondyr = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "spondyr",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
generic_api_key: zod.z.string(),
|
|
9
|
+
generic_token: zod.z.string()
|
|
10
|
+
}
|
|
5
11
|
});
|
|
6
12
|
//#endregion
|
|
7
13
|
exports.spondyr = spondyr;
|
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 spondyr = defineApp({\n slug: \"spondyr\",\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 spondyr = defineApp({\n slug: \"spondyr\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n generic_token: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,WAAA,GAAA,2BAAA,UAAA,CAAoB;CAC/B,MAAM;CACN,MAAM;CACN,YAAY;EACV,iBAAiBA,IAAAA,EAAE,OAAO;EAC1B,eAAeA,IAAAA,EAAE,OAAO;CAC1B;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 spondyr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const spondyr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { spondyr };
|
|
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,OAAA,6BAAO,GAAA,+BAAA,UAAA,YAAA,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 spondyr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const spondyr: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"spondyr", 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_token: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { spondyr };
|
|
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,OAAA,6BAAO,GAAA,+BAAA,UAAA,YAAA,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 spondyr = defineApp({
|
|
4
5
|
slug: "spondyr",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
generic_api_key: z.string(),
|
|
9
|
+
generic_token: z.string()
|
|
10
|
+
}
|
|
6
11
|
});
|
|
7
12
|
//#endregion
|
|
8
13
|
export { spondyr };
|
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 spondyr = defineApp({\n slug: \"spondyr\",\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 spondyr = defineApp({\n slug: \"spondyr\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n generic_token: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,UAAU,UAAU;CAC/B,MAAM;CACN,MAAM;CACN,YAAY;EACV,iBAAiB,EAAE,OAAO;EAC1B,eAAe,EAAE,OAAO;CAC1B;AACF,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -9,12 +9,12 @@ const spondyrCatalog = {
|
|
|
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": "Your Spondyr API Key. Get it from your Spondyr dashboard."
|
|
16
16
|
},
|
|
17
|
-
"
|
|
17
|
+
"generic_token": {
|
|
18
18
|
"label": "Application Token",
|
|
19
19
|
"secret": true,
|
|
20
20
|
"description": "Your Spondyr Application Token. Get it from your Spondyr dashboard."
|
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 spondyrCatalog = {\n \"slug\": \"spondyr\",\n \"name\": \"Spondyr\",\n \"description\": \"Spondyr is a correspondence template management and distribution platform that enables developers to quickly integrate template-driven content delivery via API, supporting email, SMS, fax, and postal mail.\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/spondyr\",\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 spondyrCatalog = {\n \"slug\": \"spondyr\",\n \"name\": \"Spondyr\",\n \"description\": \"Spondyr is a correspondence template management and distribution platform that enables developers to quickly integrate template-driven content delivery via API, supporting email, SMS, fax, and postal mail.\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/spondyr\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Spondyr API Key. Get it from your Spondyr dashboard.\"\n },\n \"generic_token\": {\n \"label\": \"Application Token\",\n \"secret\": true,\n \"description\": \"Your Spondyr Application Token. Get it from your Spondyr dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,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,iBAAiB;GACf,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,12 +9,12 @@ declare const spondyrCatalog: {
|
|
|
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: "Your Spondyr API Key. Get it from your Spondyr dashboard.";
|
|
16
16
|
};
|
|
17
|
-
readonly
|
|
17
|
+
readonly generic_token: {
|
|
18
18
|
readonly label: "Application Token";
|
|
19
19
|
readonly secret: true;
|
|
20
20
|
readonly description: "Your Spondyr Application Token. Get it from your Spondyr dashboard.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,12 +9,12 @@ declare const spondyrCatalog: {
|
|
|
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: "Your Spondyr API Key. Get it from your Spondyr dashboard.";
|
|
16
16
|
};
|
|
17
|
-
readonly
|
|
17
|
+
readonly generic_token: {
|
|
18
18
|
readonly label: "Application Token";
|
|
19
19
|
readonly secret: true;
|
|
20
20
|
readonly description: "Your Spondyr Application Token. Get it from your Spondyr dashboard.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -9,12 +9,12 @@ const spondyrCatalog = {
|
|
|
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": "Your Spondyr API Key. Get it from your Spondyr dashboard."
|
|
16
16
|
},
|
|
17
|
-
"
|
|
17
|
+
"generic_token": {
|
|
18
18
|
"label": "Application Token",
|
|
19
19
|
"secret": true,
|
|
20
20
|
"description": "Your Spondyr Application Token. Get it from your Spondyr dashboard."
|
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 spondyrCatalog = {\n \"slug\": \"spondyr\",\n \"name\": \"Spondyr\",\n \"description\": \"Spondyr is a correspondence template management and distribution platform that enables developers to quickly integrate template-driven content delivery via API, supporting email, SMS, fax, and postal mail.\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/spondyr\",\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 spondyrCatalog = {\n \"slug\": \"spondyr\",\n \"name\": \"Spondyr\",\n \"description\": \"Spondyr is a correspondence template management and distribution platform that enables developers to quickly integrate template-driven content delivery via API, supporting email, SMS, fax, and postal mail.\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/spondyr\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Spondyr API Key. Get it from your Spondyr dashboard.\"\n },\n \"generic_token\": {\n \"label\": \"Application Token\",\n \"secret\": true,\n \"description\": \"Your Spondyr Application Token. Get it from your Spondyr dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,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,iBAAiB;GACf,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
|