@keystrokehq/nocrm_io 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/add-a-tag-to-a-lead.d.cts +15 -1
- package/dist/actions/add-a-tag-to-a-lead.d.mts +15 -1
- package/dist/actions/append-to-leads-description.d.cts +15 -1
- package/dist/actions/append-to-leads-description.d.mts +15 -1
- package/dist/actions/assign-lead-to-user.d.cts +15 -1
- package/dist/actions/assign-lead-to-user.d.mts +15 -1
- package/dist/actions/change-lead-status-cancelled.d.cts +15 -1
- package/dist/actions/change-lead-status-cancelled.d.mts +15 -1
- package/dist/actions/change-lead-status-standby.d.cts +15 -1
- package/dist/actions/change-lead-status-standby.d.mts +15 -1
- package/dist/actions/create-lead.d.cts +15 -1
- package/dist/actions/create-lead.d.mts +15 -1
- package/dist/actions/delete-lead.d.cts +15 -1
- package/dist/actions/delete-lead.d.mts +15 -1
- package/dist/actions/duplicate-lead.d.cts +15 -1
- package/dist/actions/duplicate-lead.d.mts +15 -1
- package/dist/actions/list-all-teams.d.cts +15 -1
- package/dist/actions/list-all-teams.d.cts.map +1 -1
- package/dist/actions/list-all-teams.d.mts +15 -1
- package/dist/actions/list-all-teams.d.mts.map +1 -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/package.json +1 -1
|
@@ -12,7 +12,21 @@ declare const NocrmIoAddATagToALeadOutput: z.ZodObject<{
|
|
|
12
12
|
declare const nocrmIoAddATagToALead: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
tag: string;
|
|
14
14
|
lead_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
subdomain: z.ZodString;
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
subdomain: z.ZodString;
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
16
30
|
//#endregion
|
|
17
31
|
export { nocrmIoAddATagToALead };
|
|
18
32
|
//# sourceMappingURL=add-a-tag-to-a-lead.d.cts.map
|
|
@@ -12,7 +12,21 @@ declare const NocrmIoAddATagToALeadOutput: z.ZodObject<{
|
|
|
12
12
|
declare const nocrmIoAddATagToALead: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
tag: string;
|
|
14
14
|
lead_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
subdomain: z.ZodString;
|
|
21
|
+
generic_api_key: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
23
|
+
connectionId: z.ZodString;
|
|
24
|
+
entityId: z.ZodString;
|
|
25
|
+
instanceId: z.ZodString;
|
|
26
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
27
|
+
subdomain: z.ZodString;
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
16
30
|
//#endregion
|
|
17
31
|
export { nocrmIoAddATagToALead };
|
|
18
32
|
//# sourceMappingURL=add-a-tag-to-a-lead.d.mts.map
|
|
@@ -43,7 +43,21 @@ declare const NocrmIoAppendToLeadsDescriptionOutput: z.ZodObject<{
|
|
|
43
43
|
declare const nocrmIoAppendToLeadsDescription: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
44
44
|
id: number;
|
|
45
45
|
append_desc: string;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
subdomain: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
subdomain: z.ZodString;
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
47
61
|
//#endregion
|
|
48
62
|
export { nocrmIoAppendToLeadsDescription };
|
|
49
63
|
//# sourceMappingURL=append-to-leads-description.d.cts.map
|
|
@@ -43,7 +43,21 @@ declare const NocrmIoAppendToLeadsDescriptionOutput: z.ZodObject<{
|
|
|
43
43
|
declare const nocrmIoAppendToLeadsDescription: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
44
44
|
id: number;
|
|
45
45
|
append_desc: string;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
subdomain: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
subdomain: z.ZodString;
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
47
61
|
//#endregion
|
|
48
62
|
export { nocrmIoAppendToLeadsDescription };
|
|
49
63
|
//# sourceMappingURL=append-to-leads-description.d.mts.map
|
|
@@ -13,7 +13,21 @@ declare const NocrmIoAssignLeadToUserOutput: z.ZodObject<{
|
|
|
13
13
|
declare const nocrmIoAssignLeadToUser: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
lead_id: string;
|
|
15
15
|
user_id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
subdomain: z.ZodString;
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
subdomain: z.ZodString;
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
17
31
|
//#endregion
|
|
18
32
|
export { nocrmIoAssignLeadToUser };
|
|
19
33
|
//# sourceMappingURL=assign-lead-to-user.d.cts.map
|
|
@@ -13,7 +13,21 @@ declare const NocrmIoAssignLeadToUserOutput: z.ZodObject<{
|
|
|
13
13
|
declare const nocrmIoAssignLeadToUser: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
lead_id: string;
|
|
15
15
|
user_id: string;
|
|
16
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
subdomain: z.ZodString;
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
subdomain: z.ZodString;
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
17
31
|
//#endregion
|
|
18
32
|
export { nocrmIoAssignLeadToUser };
|
|
19
33
|
//# sourceMappingURL=assign-lead-to-user.d.mts.map
|
|
@@ -11,7 +11,21 @@ declare const NocrmIoChangeLeadStatusCancelledOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const nocrmIoChangeLeadStatusCancelled: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
lead_id: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
subdomain: z.ZodString;
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
subdomain: z.ZodString;
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
15
29
|
//#endregion
|
|
16
30
|
export { nocrmIoChangeLeadStatusCancelled };
|
|
17
31
|
//# sourceMappingURL=change-lead-status-cancelled.d.cts.map
|
|
@@ -11,7 +11,21 @@ declare const NocrmIoChangeLeadStatusCancelledOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const nocrmIoChangeLeadStatusCancelled: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
lead_id: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
subdomain: z.ZodString;
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
subdomain: z.ZodString;
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
15
29
|
//#endregion
|
|
16
30
|
export { nocrmIoChangeLeadStatusCancelled };
|
|
17
31
|
//# sourceMappingURL=change-lead-status-cancelled.d.mts.map
|
|
@@ -11,7 +11,21 @@ declare const nocrmIoChangeLeadStatusStandby: import("@keystrokehq/action").Work
|
|
|
11
11
|
days: number;
|
|
12
12
|
lead_id: string;
|
|
13
13
|
activity_id?: number | undefined;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
subdomain: z.ZodString;
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
subdomain: z.ZodString;
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
15
29
|
//#endregion
|
|
16
30
|
export { nocrmIoChangeLeadStatusStandby };
|
|
17
31
|
//# sourceMappingURL=change-lead-status-standby.d.cts.map
|
|
@@ -11,7 +11,21 @@ declare const nocrmIoChangeLeadStatusStandby: import("@keystrokehq/action").Work
|
|
|
11
11
|
days: number;
|
|
12
12
|
lead_id: string;
|
|
13
13
|
activity_id?: number | undefined;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
subdomain: z.ZodString;
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
22
|
+
connectionId: z.ZodString;
|
|
23
|
+
entityId: z.ZodString;
|
|
24
|
+
instanceId: z.ZodString;
|
|
25
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26
|
+
subdomain: z.ZodString;
|
|
27
|
+
generic_api_key: z.ZodString;
|
|
28
|
+
}, z.core.$strip>>]>;
|
|
15
29
|
//#endregion
|
|
16
30
|
export { nocrmIoChangeLeadStatusStandby };
|
|
17
31
|
//# sourceMappingURL=change-lead-status-standby.d.mts.map
|
|
@@ -49,7 +49,21 @@ declare const nocrmIoCreateLead: import("@keystrokehq/action").WorkflowActionDef
|
|
|
49
49
|
tags?: string[] | undefined;
|
|
50
50
|
user_id?: string | undefined;
|
|
51
51
|
description?: string | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
subdomain: z.ZodString;
|
|
58
|
+
generic_api_key: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
subdomain: z.ZodString;
|
|
65
|
+
generic_api_key: z.ZodString;
|
|
66
|
+
}, z.core.$strip>>]>;
|
|
53
67
|
//#endregion
|
|
54
68
|
export { nocrmIoCreateLead };
|
|
55
69
|
//# sourceMappingURL=create-lead.d.cts.map
|
|
@@ -49,7 +49,21 @@ declare const nocrmIoCreateLead: import("@keystrokehq/action").WorkflowActionDef
|
|
|
49
49
|
tags?: string[] | undefined;
|
|
50
50
|
user_id?: string | undefined;
|
|
51
51
|
description?: string | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
subdomain: z.ZodString;
|
|
58
|
+
generic_api_key: z.ZodString;
|
|
59
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
subdomain: z.ZodString;
|
|
65
|
+
generic_api_key: z.ZodString;
|
|
66
|
+
}, z.core.$strip>>]>;
|
|
53
67
|
//#endregion
|
|
54
68
|
export { nocrmIoCreateLead };
|
|
55
69
|
//# sourceMappingURL=create-lead.d.mts.map
|
|
@@ -9,7 +9,21 @@ declare const NocrmIoDeleteLeadOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const nocrmIoDeleteLead: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
id: number;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
subdomain: z.ZodString;
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
subdomain: z.ZodString;
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
13
27
|
//#endregion
|
|
14
28
|
export { nocrmIoDeleteLead };
|
|
15
29
|
//# sourceMappingURL=delete-lead.d.cts.map
|
|
@@ -9,7 +9,21 @@ declare const NocrmIoDeleteLeadOutput: z.ZodObject<{
|
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
declare const nocrmIoDeleteLead: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
11
|
id: number;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
subdomain: z.ZodString;
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
subdomain: z.ZodString;
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
13
27
|
//#endregion
|
|
14
28
|
export { nocrmIoDeleteLead };
|
|
15
29
|
//# sourceMappingURL=delete-lead.d.mts.map
|
|
@@ -22,7 +22,21 @@ declare const NocrmIoDuplicateLeadOutput: z.ZodObject<{
|
|
|
22
22
|
declare const nocrmIoDuplicateLead: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
step: string;
|
|
24
24
|
lead_id: number;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
subdomain: z.ZodString;
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
subdomain: z.ZodString;
|
|
38
|
+
generic_api_key: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
26
40
|
//#endregion
|
|
27
41
|
export { nocrmIoDuplicateLead };
|
|
28
42
|
//# sourceMappingURL=duplicate-lead.d.cts.map
|
|
@@ -22,7 +22,21 @@ declare const NocrmIoDuplicateLeadOutput: z.ZodObject<{
|
|
|
22
22
|
declare const nocrmIoDuplicateLead: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
step: string;
|
|
24
24
|
lead_id: number;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
subdomain: z.ZodString;
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
subdomain: z.ZodString;
|
|
38
|
+
generic_api_key: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
26
40
|
//#endregion
|
|
27
41
|
export { nocrmIoDuplicateLead };
|
|
28
42
|
//# sourceMappingURL=duplicate-lead.d.mts.map
|
|
@@ -3,7 +3,21 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-all-teams.d.ts
|
|
4
4
|
declare const NocrmIoListAllTeamsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const NocrmIoListAllTeamsOutput: z.ZodUnknown;
|
|
6
|
-
declare const nocrmIoListAllTeams: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
6
|
+
declare const nocrmIoListAllTeams: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
7
|
+
connectionId: z.ZodString;
|
|
8
|
+
entityId: z.ZodString;
|
|
9
|
+
instanceId: z.ZodString;
|
|
10
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11
|
+
subdomain: z.ZodString;
|
|
12
|
+
generic_api_key: z.ZodString;
|
|
13
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
subdomain: z.ZodString;
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>;
|
|
7
21
|
//#endregion
|
|
8
22
|
export { nocrmIoListAllTeams };
|
|
9
23
|
//# sourceMappingURL=list-all-teams.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-all-teams.d.cts","names":[],"sources":["../../src/actions/list-all-teams.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACxB,yBAAA,EAAyB,CAAA,CAAA,UAAc;AAAA,cAEvC,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-all-teams.d.cts","names":[],"sources":["../../src/actions/list-all-teams.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACxB,yBAAA,EAAyB,CAAA,CAAA,UAAc;AAAA,cAEvC,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
|
|
@@ -3,7 +3,21 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-all-teams.d.ts
|
|
4
4
|
declare const NocrmIoListAllTeamsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const NocrmIoListAllTeamsOutput: z.ZodUnknown;
|
|
6
|
-
declare const nocrmIoListAllTeams: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
6
|
+
declare const nocrmIoListAllTeams: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
7
|
+
connectionId: z.ZodString;
|
|
8
|
+
entityId: z.ZodString;
|
|
9
|
+
instanceId: z.ZodString;
|
|
10
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11
|
+
subdomain: z.ZodString;
|
|
12
|
+
generic_api_key: z.ZodString;
|
|
13
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
subdomain: z.ZodString;
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>;
|
|
7
21
|
//#endregion
|
|
8
22
|
export { nocrmIoListAllTeams };
|
|
9
23
|
//# sourceMappingURL=list-all-teams.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-all-teams.d.mts","names":[],"sources":["../../src/actions/list-all-teams.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACxB,yBAAA,EAAyB,CAAA,CAAA,UAAc;AAAA,cAEvC,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-all-teams.d.mts","names":[],"sources":["../../src/actions/list-all-teams.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACxB,yBAAA,EAAyB,CAAA,CAAA,UAAc;AAAA,cAEvC,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
|
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 nocrmIo = (0,
|
|
4
|
+
const nocrmIo = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "nocrm_io",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
subdomain: zod.z.string(),
|
|
9
|
+
generic_api_key: zod.z.string()
|
|
10
|
+
}
|
|
5
11
|
});
|
|
6
12
|
//#endregion
|
|
7
13
|
exports.nocrmIo = nocrmIo;
|
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 nocrmIo = defineApp({\n slug: \"nocrm_io\",\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 nocrmIo = defineApp({\n slug: \"nocrm_io\",\n auth: \"keystroke\",\n credential: {\n subdomain: z.string(),\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,WAAA,GAAA,2BAAA,UAAA,CAAoB;CAC/B,MAAM;CACN,MAAM;CACN,YAAY;EACV,WAAWA,IAAAA,EAAE,OAAO;EACpB,iBAAiBA,IAAAA,EAAE,OAAO;CAC5B;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 nocrmIo: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const nocrmIo: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
subdomain: z.ZodString;
|
|
10
|
+
generic_api_key: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { nocrmIo };
|
|
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,aAAA,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 nocrmIo: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const nocrmIo: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"nocrm_io", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
subdomain: z.ZodString;
|
|
10
|
+
generic_api_key: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { nocrmIo };
|
|
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,aAAA,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 nocrmIo = defineApp({
|
|
4
5
|
slug: "nocrm_io",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
subdomain: z.string(),
|
|
9
|
+
generic_api_key: z.string()
|
|
10
|
+
}
|
|
6
11
|
});
|
|
7
12
|
//#endregion
|
|
8
13
|
export { nocrmIo };
|
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 nocrmIo = defineApp({\n slug: \"nocrm_io\",\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 nocrmIo = defineApp({\n slug: \"nocrm_io\",\n auth: \"keystroke\",\n credential: {\n subdomain: z.string(),\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,UAAU,UAAU;CAC/B,MAAM;CACN,MAAM;CACN,YAAY;EACV,WAAW,EAAE,OAAO;EACpB,iBAAiB,EAAE,OAAO;CAC5B;AACF,CAAC"}
|