@keystrokehq/sms_alert 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/change-password.d.cts +14 -2
- package/dist/actions/change-password.d.mts +14 -2
- package/dist/actions/get-balance-check.d.cts +13 -1
- package/dist/actions/get-balance-check.d.cts.map +1 -1
- package/dist/actions/get-balance-check.d.mts +13 -1
- package/dist/actions/get-balance-check.d.mts.map +1 -1
- package/dist/actions/get-delivery-report.d.cts +13 -1
- package/dist/actions/get-delivery-report.d.mts +13 -1
- package/dist/actions/get-group-detail.d.cts +13 -1
- package/dist/actions/get-group-detail.d.mts +13 -1
- package/dist/actions/get-group-list.d.cts +13 -1
- package/dist/actions/get-group-list.d.cts.map +1 -1
- package/dist/actions/get-group-list.d.mts +13 -1
- package/dist/actions/get-group-list.d.mts.map +1 -1
- package/dist/actions/get-sender-id-list.d.cts +13 -1
- package/dist/actions/get-sender-id-list.d.cts.map +1 -1
- package/dist/actions/get-sender-id-list.d.mts +13 -1
- package/dist/actions/get-sender-id-list.d.mts.map +1 -1
- package/dist/actions/get-template-list.d.cts +13 -1
- package/dist/actions/get-template-list.d.mts +13 -1
- package/dist/actions/get-user-profile.d.cts +13 -1
- package/dist/actions/get-user-profile.d.cts.map +1 -1
- package/dist/actions/get-user-profile.d.mts +13 -1
- package/dist/actions/get-user-profile.d.mts.map +1 -1
- package/dist/actions/post-create-contact.d.cts +13 -1
- package/dist/actions/post-create-contact.d.mts +13 -1
- package/dist/actions/post-create-group.d.cts +13 -1
- package/dist/actions/post-create-group.d.mts +13 -1
- package/dist/actions/post-create-short-url.d.cts +13 -1
- package/dist/actions/post-create-short-url.d.mts +13 -1
- package/dist/actions/post-create-template.d.cts +13 -1
- package/dist/actions/post-create-template.d.mts +13 -1
- package/dist/actions/post-delete-contact.d.cts +13 -1
- package/dist/actions/post-delete-contact.d.mts +13 -1
- package/dist/actions/post-delete-group.d.cts +13 -1
- package/dist/actions/post-delete-group.d.mts +13 -1
- package/dist/actions/post-delete-short-url.d.cts +13 -1
- package/dist/actions/post-delete-short-url.d.mts +13 -1
- package/dist/actions/post-delete-template.d.cts +13 -1
- package/dist/actions/post-delete-template.d.mts +13 -1
- package/dist/actions/post-edit-contact.d.cts +13 -1
- package/dist/actions/post-edit-contact.d.mts +13 -1
- package/dist/actions/post-edit-group.d.cts +13 -1
- package/dist/actions/post-edit-group.d.mts +13 -1
- package/dist/actions/post-edit-profile.d.cts +14 -2
- package/dist/actions/post-edit-profile.d.mts +14 -2
- package/dist/actions/post-edit-template.d.cts +13 -1
- package/dist/actions/post-edit-template.d.mts +13 -1
- package/dist/actions/post-generate-otp.d.cts +13 -1
- package/dist/actions/post-generate-otp.d.mts +13 -1
- package/dist/actions/post-sent-sms-report.d.cts +13 -1
- package/dist/actions/post-sent-sms-report.d.mts +13 -1
- package/dist/actions/send-sms-xml.d.cts +13 -1
- package/dist/actions/send-sms-xml.d.mts +13 -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
|
@@ -9,8 +9,8 @@ declare const SmsAlertChangePasswordInput: z.ZodObject<{
|
|
|
9
9
|
declare const SmsAlertChangePasswordOutput: z.ZodObject<{
|
|
10
10
|
status: z.ZodNullable<z.ZodEnum<{
|
|
11
11
|
success: "success";
|
|
12
|
-
failure: "failure";
|
|
13
12
|
error: "error";
|
|
13
|
+
failure: "failure";
|
|
14
14
|
}>>;
|
|
15
15
|
description: z.ZodNullable<z.ZodString>;
|
|
16
16
|
}, z.core.$loose>;
|
|
@@ -18,7 +18,19 @@ declare const smsAlertChangePassword: import("@keystrokehq/action").WorkflowActi
|
|
|
18
18
|
pwd: string;
|
|
19
19
|
cnfpwd: string;
|
|
20
20
|
newpwd: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { smsAlertChangePassword };
|
|
24
36
|
//# sourceMappingURL=change-password.d.cts.map
|
|
@@ -9,8 +9,8 @@ declare const SmsAlertChangePasswordInput: z.ZodObject<{
|
|
|
9
9
|
declare const SmsAlertChangePasswordOutput: z.ZodObject<{
|
|
10
10
|
status: z.ZodNullable<z.ZodEnum<{
|
|
11
11
|
success: "success";
|
|
12
|
-
failure: "failure";
|
|
13
12
|
error: "error";
|
|
13
|
+
failure: "failure";
|
|
14
14
|
}>>;
|
|
15
15
|
description: z.ZodNullable<z.ZodString>;
|
|
16
16
|
}, z.core.$loose>;
|
|
@@ -18,7 +18,19 @@ declare const smsAlertChangePassword: import("@keystrokehq/action").WorkflowActi
|
|
|
18
18
|
pwd: string;
|
|
19
19
|
cnfpwd: string;
|
|
20
20
|
newpwd: string;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { smsAlertChangePassword };
|
|
24
36
|
//# sourceMappingURL=change-password.d.mts.map
|
|
@@ -16,7 +16,19 @@ declare const SmsAlertGetBalanceCheckOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>>;
|
|
17
17
|
}, z.core.$loose>>;
|
|
18
18
|
}, z.core.$loose>;
|
|
19
|
-
declare const smsAlertGetBalanceCheck: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
declare const smsAlertGetBalanceCheck: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>;
|
|
20
32
|
//#endregion
|
|
21
33
|
export { smsAlertGetBalanceCheck };
|
|
22
34
|
//# sourceMappingURL=get-balance-check.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-balance-check.d.cts","names":[],"sources":["../../src/actions/get-balance-check.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAK7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-balance-check.d.cts","names":[],"sources":["../../src/actions/get-balance-check.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAK7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -16,7 +16,19 @@ declare const SmsAlertGetBalanceCheckOutput: z.ZodObject<{
|
|
|
16
16
|
}, z.core.$loose>>;
|
|
17
17
|
}, z.core.$loose>>;
|
|
18
18
|
}, z.core.$loose>;
|
|
19
|
-
declare const smsAlertGetBalanceCheck: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
19
|
+
declare const smsAlertGetBalanceCheck: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>;
|
|
20
32
|
//#endregion
|
|
21
33
|
export { smsAlertGetBalanceCheck };
|
|
22
34
|
//# sourceMappingURL=get-balance-check.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-balance-check.d.mts","names":[],"sources":["../../src/actions/get-balance-check.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAK7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-balance-check.d.mts","names":[],"sources":["../../src/actions/get-balance-check.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAU5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAK7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -33,7 +33,19 @@ declare const smsAlertGetDeliveryReport: import("@keystrokehq/action").WorkflowA
|
|
|
33
33
|
text?: string | undefined;
|
|
34
34
|
sender?: string | undefined;
|
|
35
35
|
schedule?: string | undefined;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { smsAlertGetDeliveryReport };
|
|
39
51
|
//# sourceMappingURL=get-delivery-report.d.cts.map
|
|
@@ -33,7 +33,19 @@ declare const smsAlertGetDeliveryReport: import("@keystrokehq/action").WorkflowA
|
|
|
33
33
|
text?: string | undefined;
|
|
34
34
|
sender?: string | undefined;
|
|
35
35
|
schedule?: string | undefined;
|
|
36
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
36
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
37
|
+
connectionId: z.ZodString;
|
|
38
|
+
entityId: z.ZodString;
|
|
39
|
+
instanceId: z.ZodString;
|
|
40
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
generic_api_key: z.ZodString;
|
|
48
|
+
}, z.core.$strip>>]>;
|
|
37
49
|
//#endregion
|
|
38
50
|
export { smsAlertGetDeliveryReport };
|
|
39
51
|
//# sourceMappingURL=get-delivery-report.d.mts.map
|
|
@@ -10,7 +10,19 @@ declare const SmsAlertGetGroupDetailOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const smsAlertGetGroupDetail: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
group_id: number;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { smsAlertGetGroupDetail };
|
|
16
28
|
//# sourceMappingURL=get-group-detail.d.cts.map
|
|
@@ -10,7 +10,19 @@ declare const SmsAlertGetGroupDetailOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const smsAlertGetGroupDetail: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
group_id: number;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { smsAlertGetGroupDetail };
|
|
16
28
|
//# sourceMappingURL=get-group-detail.d.mts.map
|
|
@@ -15,7 +15,19 @@ declare const SmsAlertGetGroupListOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>>;
|
|
16
16
|
}, z.core.$loose>>;
|
|
17
17
|
}, z.core.$loose>;
|
|
18
|
-
declare const smsAlertGetGroupList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
declare const smsAlertGetGroupList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { smsAlertGetGroupList };
|
|
21
33
|
//# sourceMappingURL=get-group-list.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-group-list.d.cts","names":[],"sources":["../../src/actions/get-group-list.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-group-list.d.cts","names":[],"sources":["../../src/actions/get-group-list.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -15,7 +15,19 @@ declare const SmsAlertGetGroupListOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>>;
|
|
16
16
|
}, z.core.$loose>>;
|
|
17
17
|
}, z.core.$loose>;
|
|
18
|
-
declare const smsAlertGetGroupList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
declare const smsAlertGetGroupList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { smsAlertGetGroupList };
|
|
21
33
|
//# sourceMappingURL=get-group-list.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-group-list.d.mts","names":[],"sources":["../../src/actions/get-group-list.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-group-list.d.mts","names":[],"sources":["../../src/actions/get-group-list.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAYzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -11,7 +11,19 @@ declare const SmsAlertGetSenderIdListOutput: z.ZodObject<{
|
|
|
11
11
|
desc: z.ZodNullable<z.ZodString>;
|
|
12
12
|
}, z.core.$loose>>>;
|
|
13
13
|
}, z.core.$loose>;
|
|
14
|
-
declare const smsAlertGetSenderIdList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
declare const smsAlertGetSenderIdList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { smsAlertGetSenderIdList };
|
|
17
29
|
//# sourceMappingURL=get-sender-id-list.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-sender-id-list.d.cts","names":[],"sources":["../../src/actions/get-sender-id-list.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-sender-id-list.d.cts","names":[],"sources":["../../src/actions/get-sender-id-list.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -11,7 +11,19 @@ declare const SmsAlertGetSenderIdListOutput: z.ZodObject<{
|
|
|
11
11
|
desc: z.ZodNullable<z.ZodString>;
|
|
12
12
|
}, z.core.$loose>>>;
|
|
13
13
|
}, z.core.$loose>;
|
|
14
|
-
declare const smsAlertGetSenderIdList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
declare const smsAlertGetSenderIdList: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { smsAlertGetSenderIdList };
|
|
17
29
|
//# sourceMappingURL=get-sender-id-list.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-sender-id-list.d.mts","names":[],"sources":["../../src/actions/get-sender-id-list.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-sender-id-list.d.mts","names":[],"sources":["../../src/actions/get-sender-id-list.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;cAM7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -18,7 +18,19 @@ declare const SmsAlertGetTemplateListOutput: z.ZodObject<{
|
|
|
18
18
|
}, z.core.$loose>;
|
|
19
19
|
declare const smsAlertGetTemplateList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
20
|
template_type?: string | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { smsAlertGetTemplateList };
|
|
24
36
|
//# sourceMappingURL=get-template-list.d.cts.map
|
|
@@ -18,7 +18,19 @@ declare const SmsAlertGetTemplateListOutput: z.ZodObject<{
|
|
|
18
18
|
}, z.core.$loose>;
|
|
19
19
|
declare const smsAlertGetTemplateList: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
20
20
|
template_type?: string | undefined;
|
|
21
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
21
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
generic_api_key: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>;
|
|
22
34
|
//#endregion
|
|
23
35
|
export { smsAlertGetTemplateList };
|
|
24
36
|
//# sourceMappingURL=get-template-list.d.mts.map
|
|
@@ -20,7 +20,19 @@ declare const SmsAlertGetUserProfileOutput: z.ZodObject<{
|
|
|
20
20
|
two_factor_auth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
21
21
|
}, z.core.$loose>, z.ZodString]>;
|
|
22
22
|
}, z.core.$loose>;
|
|
23
|
-
declare const smsAlertGetUserProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
declare const smsAlertGetUserProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
24
36
|
//#endregion
|
|
25
37
|
export { smsAlertGetUserProfile };
|
|
26
38
|
//# sourceMappingURL=get-user-profile.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-profile.d.cts","names":[],"sources":["../../src/actions/get-user-profile.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAgB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-user-profile.d.cts","names":[],"sources":["../../src/actions/get-user-profile.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAgB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -20,7 +20,19 @@ declare const SmsAlertGetUserProfileOutput: z.ZodObject<{
|
|
|
20
20
|
two_factor_auth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
21
21
|
}, z.core.$loose>, z.ZodString]>;
|
|
22
22
|
}, z.core.$loose>;
|
|
23
|
-
declare const smsAlertGetUserProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
23
|
+
declare const smsAlertGetUserProfile: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
24
36
|
//#endregion
|
|
25
37
|
export { smsAlertGetUserProfile };
|
|
26
38
|
//# sourceMappingURL=get-user-profile.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user-profile.d.mts","names":[],"sources":["../../src/actions/get-user-profile.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAgB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-user-profile.d.mts","names":[],"sources":["../../src/actions/get-user-profile.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAgB3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;cAK5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -19,7 +19,19 @@ declare const smsAlertPostCreateContact: import("@keystrokehq/action").WorkflowA
|
|
|
19
19
|
name: string;
|
|
20
20
|
group: string;
|
|
21
21
|
mobile: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
23
35
|
//#endregion
|
|
24
36
|
export { smsAlertPostCreateContact };
|
|
25
37
|
//# sourceMappingURL=post-create-contact.d.cts.map
|
|
@@ -19,7 +19,19 @@ declare const smsAlertPostCreateContact: import("@keystrokehq/action").WorkflowA
|
|
|
19
19
|
name: string;
|
|
20
20
|
group: string;
|
|
21
21
|
mobile: string;
|
|
22
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
22
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
23
35
|
//#endregion
|
|
24
36
|
export { smsAlertPostCreateContact };
|
|
25
37
|
//# sourceMappingURL=post-create-contact.d.mts.map
|
|
@@ -15,7 +15,19 @@ declare const SmsAlertPostCreateGroupOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const smsAlertPostCreateGroup: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
name: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { smsAlertPostCreateGroup };
|
|
21
33
|
//# sourceMappingURL=post-create-group.d.cts.map
|
|
@@ -15,7 +15,19 @@ declare const SmsAlertPostCreateGroupOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const smsAlertPostCreateGroup: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
name: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { smsAlertPostCreateGroup };
|
|
21
33
|
//# sourceMappingURL=post-create-group.d.mts.map
|
|
@@ -14,7 +14,19 @@ declare const SmsAlertPostCreateShortUrlOutput: z.ZodObject<{
|
|
|
14
14
|
declare const smsAlertPostCreateShortUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
url: string;
|
|
16
16
|
alias?: string | undefined;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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<"sms_alert", 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 { smsAlertPostCreateShortUrl };
|
|
20
32
|
//# sourceMappingURL=post-create-short-url.d.cts.map
|
|
@@ -14,7 +14,19 @@ declare const SmsAlertPostCreateShortUrlOutput: z.ZodObject<{
|
|
|
14
14
|
declare const smsAlertPostCreateShortUrl: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
15
|
url: string;
|
|
16
16
|
alias?: string | undefined;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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<"sms_alert", 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 { smsAlertPostCreateShortUrl };
|
|
20
32
|
//# sourceMappingURL=post-create-short-url.d.mts.map
|
|
@@ -15,7 +15,19 @@ declare const SmsAlertPostCreateTemplateOutput: z.ZodObject<{
|
|
|
15
15
|
declare const smsAlertPostCreateTemplate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
name: string;
|
|
17
17
|
text: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { smsAlertPostCreateTemplate };
|
|
21
33
|
//# sourceMappingURL=post-create-template.d.cts.map
|
|
@@ -15,7 +15,19 @@ declare const SmsAlertPostCreateTemplateOutput: z.ZodObject<{
|
|
|
15
15
|
declare const smsAlertPostCreateTemplate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
name: string;
|
|
17
17
|
text: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { smsAlertPostCreateTemplate };
|
|
21
33
|
//# sourceMappingURL=post-create-template.d.mts.map
|
|
@@ -10,7 +10,19 @@ declare const SmsAlertPostDeleteContactOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const smsAlertPostDeleteContact: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"sms_alert", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"sms_alert", 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
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { smsAlertPostDeleteContact };
|
|
16
28
|
//# sourceMappingURL=post-delete-contact.d.cts.map
|