@keystrokehq/specific 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.
Files changed (71) hide show
  1. package/dist/actions/create-company.d.cts +13 -1
  2. package/dist/actions/create-company.d.cts.map +1 -1
  3. package/dist/actions/create-company.d.mts +13 -1
  4. package/dist/actions/create-company.d.mts.map +1 -1
  5. package/dist/actions/create-conversation.d.cts +13 -1
  6. package/dist/actions/create-conversation.d.mts +13 -1
  7. package/dist/actions/create-or-update-company.d.cts +13 -1
  8. package/dist/actions/create-or-update-company.d.cts.map +1 -1
  9. package/dist/actions/create-or-update-company.d.mts +13 -1
  10. package/dist/actions/create-or-update-company.d.mts.map +1 -1
  11. package/dist/actions/create-or-update-user.d.cts +13 -1
  12. package/dist/actions/create-or-update-user.d.cts.map +1 -1
  13. package/dist/actions/create-or-update-user.d.mts +13 -1
  14. package/dist/actions/create-or-update-user.d.mts.map +1 -1
  15. package/dist/actions/create-user.d.cts +13 -1
  16. package/dist/actions/create-user.d.cts.map +1 -1
  17. package/dist/actions/create-user.d.mts +13 -1
  18. package/dist/actions/create-user.d.mts.map +1 -1
  19. package/dist/actions/delete-company-attributes.d.cts +13 -1
  20. package/dist/actions/delete-company-attributes.d.mts +13 -1
  21. package/dist/actions/delete-company.d.cts +13 -1
  22. package/dist/actions/delete-company.d.mts +13 -1
  23. package/dist/actions/delete-user-attributes.d.cts +13 -1
  24. package/dist/actions/delete-user-attributes.d.mts +13 -1
  25. package/dist/actions/delete-user.d.cts +13 -1
  26. package/dist/actions/delete-user.d.mts +13 -1
  27. package/dist/actions/get-my-workspace.d.cts +13 -1
  28. package/dist/actions/get-my-workspace.d.cts.map +1 -1
  29. package/dist/actions/get-my-workspace.d.mts +13 -1
  30. package/dist/actions/get-my-workspace.d.mts.map +1 -1
  31. package/dist/actions/list-companies.d.cts +13 -1
  32. package/dist/actions/list-companies.d.mts +13 -1
  33. package/dist/actions/list-conversations.d.cts +13 -1
  34. package/dist/actions/list-conversations.d.mts +13 -1
  35. package/dist/actions/list-custom-fields.d.cts +13 -1
  36. package/dist/actions/list-custom-fields.d.mts +13 -1
  37. package/dist/actions/list-sources.d.cts +13 -1
  38. package/dist/actions/list-sources.d.cts.map +1 -1
  39. package/dist/actions/list-sources.d.mts +13 -1
  40. package/dist/actions/list-sources.d.mts.map +1 -1
  41. package/dist/actions/list-surveys.d.cts +13 -1
  42. package/dist/actions/list-surveys.d.cts.map +1 -1
  43. package/dist/actions/list-surveys.d.mts +13 -1
  44. package/dist/actions/list-surveys.d.mts.map +1 -1
  45. package/dist/actions/list-users.d.cts +13 -1
  46. package/dist/actions/list-users.d.cts.map +1 -1
  47. package/dist/actions/list-users.d.mts +13 -1
  48. package/dist/actions/list-users.d.mts.map +1 -1
  49. package/dist/actions/update-company.d.cts +13 -1
  50. package/dist/actions/update-company.d.cts.map +1 -1
  51. package/dist/actions/update-company.d.mts +13 -1
  52. package/dist/actions/update-company.d.mts.map +1 -1
  53. package/dist/actions/update-user.d.cts +13 -1
  54. package/dist/actions/update-user.d.cts.map +1 -1
  55. package/dist/actions/update-user.d.mts +13 -1
  56. package/dist/actions/update-user.d.mts.map +1 -1
  57. package/dist/app.cjs +5 -2
  58. package/dist/app.cjs.map +1 -1
  59. package/dist/app.d.cts +9 -1
  60. package/dist/app.d.cts.map +1 -1
  61. package/dist/app.d.mts +9 -1
  62. package/dist/app.d.mts.map +1 -1
  63. package/dist/app.mjs +3 -1
  64. package/dist/app.mjs.map +1 -1
  65. package/dist/catalog.cjs +1 -1
  66. package/dist/catalog.cjs.map +1 -1
  67. package/dist/catalog.d.cts +1 -1
  68. package/dist/catalog.d.mts +1 -1
  69. package/dist/catalog.mjs +1 -1
  70. package/dist/catalog.mjs.map +1 -1
  71. package/package.json +1 -1
@@ -18,7 +18,19 @@ declare const specificCreateCompany: import("@keystrokehq/action").WorkflowActio
18
18
  id?: string | undefined;
19
19
  name?: string | undefined;
20
20
  attributes?: Record<string, unknown> | undefined;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificCreateCompany };
24
36
  //# sourceMappingURL=create-company.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-company.d.cts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAK1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA;;;eAMhC,MAAA;AAAA"}
1
+ {"version":3,"file":"create-company.d.cts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAK1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA"}
@@ -18,7 +18,19 @@ declare const specificCreateCompany: import("@keystrokehq/action").WorkflowActio
18
18
  id?: string | undefined;
19
19
  name?: string | undefined;
20
20
  attributes?: Record<string, unknown> | undefined;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificCreateCompany };
24
36
  //# sourceMappingURL=create-company.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-company.d.mts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAK1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA;;;eAMhC,MAAA;AAAA"}
1
+ {"version":3,"file":"create-company.d.mts","names":[],"sources":["../../src/actions/create-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAK1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA"}
@@ -92,7 +92,19 @@ declare const specificCreateConversation: import("@keystrokehq/action").Workflow
92
92
  sourceUrl?: string | undefined;
93
93
  insertedAt?: string | undefined;
94
94
  customFields?: Record<string, unknown> | undefined;
95
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
95
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
96
+ connectionId: z.ZodString;
97
+ entityId: z.ZodString;
98
+ instanceId: z.ZodString;
99
+ }, z.core.$strip>, z.ZodObject<{
100
+ generic_api_key: z.ZodString;
101
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
102
+ connectionId: z.ZodString;
103
+ entityId: z.ZodString;
104
+ instanceId: z.ZodString;
105
+ }, z.core.$strip>, z.ZodObject<{
106
+ generic_api_key: z.ZodString;
107
+ }, z.core.$strip>>]>;
96
108
  //#endregion
97
109
  export { specificCreateConversation };
98
110
  //# sourceMappingURL=create-conversation.d.cts.map
@@ -92,7 +92,19 @@ declare const specificCreateConversation: import("@keystrokehq/action").Workflow
92
92
  sourceUrl?: string | undefined;
93
93
  insertedAt?: string | undefined;
94
94
  customFields?: Record<string, unknown> | undefined;
95
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
95
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
96
+ connectionId: z.ZodString;
97
+ entityId: z.ZodString;
98
+ instanceId: z.ZodString;
99
+ }, z.core.$strip>, z.ZodObject<{
100
+ generic_api_key: z.ZodString;
101
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
102
+ connectionId: z.ZodString;
103
+ entityId: z.ZodString;
104
+ instanceId: z.ZodString;
105
+ }, z.core.$strip>, z.ZodObject<{
106
+ generic_api_key: z.ZodString;
107
+ }, z.core.$strip>>]>;
96
108
  //#endregion
97
109
  export { specificCreateConversation };
98
110
  //# sourceMappingURL=create-conversation.d.mts.map
@@ -32,7 +32,19 @@ declare const specificCreateOrUpdateCompany: import("@keystrokehq/action").Workf
32
32
  id?: string | undefined;
33
33
  attributes?: Record<string, unknown> | undefined;
34
34
  };
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { specificCreateOrUpdateCompany };
38
50
  //# sourceMappingURL=create-or-update-company.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-or-update-company.d.cts","names":[],"sources":["../../src/actions/create-or-update-company.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;cAiBlC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;cAMnC,6BAAA,gCAA6B,wBAAA;;;;iBAMxC,MAAA;EAAA;;;iBAAA,MAAA;EAAA;AAAA"}
1
+ {"version":3,"file":"create-or-update-company.d.cts","names":[],"sources":["../../src/actions/create-or-update-company.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;cAiBlC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;cAMnC,6BAAA,gCAA6B,wBAAA"}
@@ -32,7 +32,19 @@ declare const specificCreateOrUpdateCompany: import("@keystrokehq/action").Workf
32
32
  id?: string | undefined;
33
33
  attributes?: Record<string, unknown> | undefined;
34
34
  };
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { specificCreateOrUpdateCompany };
38
50
  //# sourceMappingURL=create-or-update-company.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-or-update-company.d.mts","names":[],"sources":["../../src/actions/create-or-update-company.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;cAiBlC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;cAMnC,6BAAA,gCAA6B,wBAAA;;;;iBAMxC,MAAA;EAAA;;;iBAAA,MAAA;EAAA;AAAA"}
1
+ {"version":3,"file":"create-or-update-company.d.mts","names":[],"sources":["../../src/actions/create-or-update-company.ts"],"mappings":";;;cAIa,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;cAiBlC,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;;;;;cAMnC,6BAAA,gCAA6B,wBAAA"}
@@ -44,7 +44,19 @@ declare const specificCreateOrUpdateUser: import("@keystrokehq/action").Workflow
44
44
  id?: string | undefined;
45
45
  email?: string | undefined;
46
46
  };
47
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ generic_api_key: z.ZodString;
53
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
54
+ connectionId: z.ZodString;
55
+ entityId: z.ZodString;
56
+ instanceId: z.ZodString;
57
+ }, z.core.$strip>, z.ZodObject<{
58
+ generic_api_key: z.ZodString;
59
+ }, z.core.$strip>>]>;
48
60
  //#endregion
49
61
  export { specificCreateOrUpdateUser };
50
62
  //# sourceMappingURL=create-or-update-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-or-update-user.d.cts","names":[],"sources":["../../src/actions/create-or-update-user.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0B/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA;;;;;;;;iBAMrC,MAAA;EAAA"}
1
+ {"version":3,"file":"create-or-update-user.d.cts","names":[],"sources":["../../src/actions/create-or-update-user.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0B/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA"}
@@ -44,7 +44,19 @@ declare const specificCreateOrUpdateUser: import("@keystrokehq/action").Workflow
44
44
  id?: string | undefined;
45
45
  email?: string | undefined;
46
46
  };
47
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ generic_api_key: z.ZodString;
53
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
54
+ connectionId: z.ZodString;
55
+ entityId: z.ZodString;
56
+ instanceId: z.ZodString;
57
+ }, z.core.$strip>, z.ZodObject<{
58
+ generic_api_key: z.ZodString;
59
+ }, z.core.$strip>>]>;
48
60
  //#endregion
49
61
  export { specificCreateOrUpdateUser };
50
62
  //# sourceMappingURL=create-or-update-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-or-update-user.d.mts","names":[],"sources":["../../src/actions/create-or-update-user.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0B/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA;;;;;;;;iBAMrC,MAAA;EAAA"}
1
+ {"version":3,"file":"create-or-update-user.d.mts","names":[],"sources":["../../src/actions/create-or-update-user.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0B/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMhC,0BAAA,gCAA0B,wBAAA"}
@@ -35,7 +35,19 @@ declare const specificCreateUser: import("@keystrokehq/action").WorkflowActionDe
35
35
  };
36
36
  } | undefined;
37
37
  attributes?: Record<string, unknown> | undefined;
38
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ generic_api_key: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { specificCreateUser };
41
53
  //# sourceMappingURL=create-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-user.d.cts","names":[],"sources":["../../src/actions/create-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;cAevB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAWxB,kBAAA,gCAAkB,wBAAA;;;;;;;;;eAM7B,MAAA;AAAA"}
1
+ {"version":3,"file":"create-user.d.cts","names":[],"sources":["../../src/actions/create-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;cAevB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAWxB,kBAAA,gCAAkB,wBAAA"}
@@ -35,7 +35,19 @@ declare const specificCreateUser: import("@keystrokehq/action").WorkflowActionDe
35
35
  };
36
36
  } | undefined;
37
37
  attributes?: Record<string, unknown> | undefined;
38
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
38
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
39
+ connectionId: z.ZodString;
40
+ entityId: z.ZodString;
41
+ instanceId: z.ZodString;
42
+ }, z.core.$strip>, z.ZodObject<{
43
+ generic_api_key: z.ZodString;
44
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
45
+ connectionId: z.ZodString;
46
+ entityId: z.ZodString;
47
+ instanceId: z.ZodString;
48
+ }, z.core.$strip>, z.ZodObject<{
49
+ generic_api_key: z.ZodString;
50
+ }, z.core.$strip>>]>;
39
51
  //#endregion
40
52
  export { specificCreateUser };
41
53
  //# sourceMappingURL=create-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"create-user.d.mts","names":[],"sources":["../../src/actions/create-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;cAevB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAWxB,kBAAA,gCAAkB,wBAAA;;;;;;;;;eAM7B,MAAA;AAAA"}
1
+ {"version":3,"file":"create-user.d.mts","names":[],"sources":["../../src/actions/create-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;cAevB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAWxB,kBAAA,gCAAkB,wBAAA"}
@@ -14,7 +14,19 @@ declare const SpecificDeleteCompanyAttributesOutput: z.ZodObject<{
14
14
  declare const specificDeleteCompanyAttributes: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  keys: string[];
16
16
  company_id: string;
17
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificDeleteCompanyAttributes };
20
32
  //# sourceMappingURL=delete-company-attributes.d.cts.map
@@ -14,7 +14,19 @@ declare const SpecificDeleteCompanyAttributesOutput: z.ZodObject<{
14
14
  declare const specificDeleteCompanyAttributes: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  keys: string[];
16
16
  company_id: string;
17
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
17
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificDeleteCompanyAttributes };
20
32
  //# sourceMappingURL=delete-company-attributes.d.mts.map
@@ -12,7 +12,19 @@ declare const SpecificDeleteCompanyOutput: z.ZodObject<{
12
12
  }, z.core.$loose>;
13
13
  declare const specificDeleteCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  id: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { specificDeleteCompany };
18
30
  //# sourceMappingURL=delete-company.d.cts.map
@@ -12,7 +12,19 @@ declare const SpecificDeleteCompanyOutput: z.ZodObject<{
12
12
  }, z.core.$loose>;
13
13
  declare const specificDeleteCompany: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  id: string;
15
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
16
+ connectionId: z.ZodString;
17
+ entityId: z.ZodString;
18
+ instanceId: z.ZodString;
19
+ }, z.core.$strip>, z.ZodObject<{
20
+ generic_api_key: z.ZodString;
21
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
22
+ connectionId: z.ZodString;
23
+ entityId: z.ZodString;
24
+ instanceId: z.ZodString;
25
+ }, z.core.$strip>, z.ZodObject<{
26
+ generic_api_key: z.ZodString;
27
+ }, z.core.$strip>>]>;
16
28
  //#endregion
17
29
  export { specificDeleteCompany };
18
30
  //# sourceMappingURL=delete-company.d.mts.map
@@ -32,7 +32,19 @@ declare const specificDeleteUserAttributes: import("@keystrokehq/action").Workfl
32
32
  id?: string | undefined;
33
33
  email?: string | undefined;
34
34
  };
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { specificDeleteUserAttributes };
38
50
  //# sourceMappingURL=delete-user-attributes.d.cts.map
@@ -32,7 +32,19 @@ declare const specificDeleteUserAttributes: import("@keystrokehq/action").Workfl
32
32
  id?: string | undefined;
33
33
  email?: string | undefined;
34
34
  };
35
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
35
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>;
36
48
  //#endregion
37
49
  export { specificDeleteUserAttributes };
38
50
  //# sourceMappingURL=delete-user-attributes.d.mts.map
@@ -18,7 +18,19 @@ declare const SpecificDeleteUserOutput: z.ZodObject<{
18
18
  declare const specificDeleteUser: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  email?: string | undefined;
20
20
  user_id?: string | undefined;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificDeleteUser };
24
36
  //# sourceMappingURL=delete-user.d.cts.map
@@ -18,7 +18,19 @@ declare const SpecificDeleteUserOutput: z.ZodObject<{
18
18
  declare const specificDeleteUser: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  email?: string | undefined;
20
20
  user_id?: string | undefined;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificDeleteUser };
24
36
  //# sourceMappingURL=delete-user.d.mts.map
@@ -10,7 +10,19 @@ declare const SpecificGetMyWorkspaceOutput: z.ZodObject<{
10
10
  }, z.core.$loose>>;
11
11
  }, z.core.$loose>>;
12
12
  }, z.core.$loose>;
13
- declare const specificGetMyWorkspace: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
+ declare const specificGetMyWorkspace: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificGetMyWorkspace };
16
28
  //# sourceMappingURL=get-my-workspace.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-my-workspace.d.cts","names":[],"sources":["../../src/actions/get-my-workspace.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQ3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-my-workspace.d.cts","names":[],"sources":["../../src/actions/get-my-workspace.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQ3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
@@ -10,7 +10,19 @@ declare const SpecificGetMyWorkspaceOutput: z.ZodObject<{
10
10
  }, z.core.$loose>>;
11
11
  }, z.core.$loose>>;
12
12
  }, z.core.$loose>;
13
- declare const specificGetMyWorkspace: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
+ declare const specificGetMyWorkspace: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificGetMyWorkspace };
16
28
  //# sourceMappingURL=get-my-workspace.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-my-workspace.d.mts","names":[],"sources":["../../src/actions/get-my-workspace.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQ3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-my-workspace.d.mts","names":[],"sources":["../../src/actions/get-my-workspace.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQ3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;cAI5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
@@ -76,7 +76,19 @@ declare const specificListCompanies: import("@keystrokehq/action").WorkflowActio
76
76
  startsWith?: string | undefined;
77
77
  } | undefined;
78
78
  } | undefined;
79
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
79
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
80
+ connectionId: z.ZodString;
81
+ entityId: z.ZodString;
82
+ instanceId: z.ZodString;
83
+ }, z.core.$strip>, z.ZodObject<{
84
+ generic_api_key: z.ZodString;
85
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
86
+ connectionId: z.ZodString;
87
+ entityId: z.ZodString;
88
+ instanceId: z.ZodString;
89
+ }, z.core.$strip>, z.ZodObject<{
90
+ generic_api_key: z.ZodString;
91
+ }, z.core.$strip>>]>;
80
92
  //#endregion
81
93
  export { specificListCompanies };
82
94
  //# sourceMappingURL=list-companies.d.cts.map
@@ -76,7 +76,19 @@ declare const specificListCompanies: import("@keystrokehq/action").WorkflowActio
76
76
  startsWith?: string | undefined;
77
77
  } | undefined;
78
78
  } | undefined;
79
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
79
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
80
+ connectionId: z.ZodString;
81
+ entityId: z.ZodString;
82
+ instanceId: z.ZodString;
83
+ }, z.core.$strip>, z.ZodObject<{
84
+ generic_api_key: z.ZodString;
85
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
86
+ connectionId: z.ZodString;
87
+ entityId: z.ZodString;
88
+ instanceId: z.ZodString;
89
+ }, z.core.$strip>, z.ZodObject<{
90
+ generic_api_key: z.ZodString;
91
+ }, z.core.$strip>>]>;
80
92
  //#endregion
81
93
  export { specificListCompanies };
82
94
  //# sourceMappingURL=list-companies.d.mts.map
@@ -47,7 +47,19 @@ declare const specificListConversations: import("@keystrokehq/action").WorkflowA
47
47
  where?: {
48
48
  sources: string[];
49
49
  } | undefined;
50
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
50
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
51
+ connectionId: z.ZodString;
52
+ entityId: z.ZodString;
53
+ instanceId: z.ZodString;
54
+ }, z.core.$strip>, z.ZodObject<{
55
+ generic_api_key: z.ZodString;
56
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
57
+ connectionId: z.ZodString;
58
+ entityId: z.ZodString;
59
+ instanceId: z.ZodString;
60
+ }, z.core.$strip>, z.ZodObject<{
61
+ generic_api_key: z.ZodString;
62
+ }, z.core.$strip>>]>;
51
63
  //#endregion
52
64
  export { specificListConversations };
53
65
  //# sourceMappingURL=list-conversations.d.cts.map
@@ -47,7 +47,19 @@ declare const specificListConversations: import("@keystrokehq/action").WorkflowA
47
47
  where?: {
48
48
  sources: string[];
49
49
  } | undefined;
50
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
50
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
51
+ connectionId: z.ZodString;
52
+ entityId: z.ZodString;
53
+ instanceId: z.ZodString;
54
+ }, z.core.$strip>, z.ZodObject<{
55
+ generic_api_key: z.ZodString;
56
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
57
+ connectionId: z.ZodString;
58
+ entityId: z.ZodString;
59
+ instanceId: z.ZodString;
60
+ }, z.core.$strip>, z.ZodObject<{
61
+ generic_api_key: z.ZodString;
62
+ }, z.core.$strip>>]>;
51
63
  //#endregion
52
64
  export { specificListConversations };
53
65
  //# sourceMappingURL=list-conversations.d.mts.map
@@ -21,7 +21,19 @@ declare const SpecificListCustomFieldsOutput: z.ZodObject<{
21
21
  }, z.core.$loose>;
22
22
  declare const specificListCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
23
23
  field_type?: "user" | "group" | "conversation" | undefined;
24
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>;
25
37
  //#endregion
26
38
  export { specificListCustomFields };
27
39
  //# sourceMappingURL=list-custom-fields.d.cts.map
@@ -21,7 +21,19 @@ declare const SpecificListCustomFieldsOutput: z.ZodObject<{
21
21
  }, z.core.$loose>;
22
22
  declare const specificListCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
23
23
  field_type?: "user" | "group" | "conversation" | undefined;
24
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
31
+ connectionId: z.ZodString;
32
+ entityId: z.ZodString;
33
+ instanceId: z.ZodString;
34
+ }, z.core.$strip>, z.ZodObject<{
35
+ generic_api_key: z.ZodString;
36
+ }, z.core.$strip>>]>;
25
37
  //#endregion
26
38
  export { specificListCustomFields };
27
39
  //# sourceMappingURL=list-custom-fields.d.mts.map
@@ -10,7 +10,19 @@ declare const SpecificListSourcesOutput: z.ZodObject<{
10
10
  }, z.core.$loose>>;
11
11
  }, z.core.$loose>>;
12
12
  }, z.core.$loose>;
13
- declare const specificListSources: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
+ declare const specificListSources: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificListSources };
16
28
  //# sourceMappingURL=list-sources.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-sources.d.cts","names":[],"sources":["../../src/actions/list-sources.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-sources.d.cts","names":[],"sources":["../../src/actions/list-sources.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
@@ -10,7 +10,19 @@ declare const SpecificListSourcesOutput: z.ZodObject<{
10
10
  }, z.core.$loose>>;
11
11
  }, z.core.$loose>>;
12
12
  }, z.core.$loose>;
13
- declare const specificListSources: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
+ declare const specificListSources: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificListSources };
16
28
  //# sourceMappingURL=list-sources.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-sources.d.mts","names":[],"sources":["../../src/actions/list-sources.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-sources.d.mts","names":[],"sources":["../../src/actions/list-sources.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
@@ -23,7 +23,19 @@ declare const SpecificListSurveysOutput: z.ZodObject<{
23
23
  }, z.core.$loose>>;
24
24
  }, z.core.$loose>>;
25
25
  }, z.core.$loose>;
26
- declare const specificListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ declare const specificListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", 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
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { specificListSurveys };
29
41
  //# sourceMappingURL=list-surveys.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-surveys.d.cts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAsBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-surveys.d.cts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAsBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
@@ -23,7 +23,19 @@ declare const SpecificListSurveysOutput: z.ZodObject<{
23
23
  }, z.core.$loose>>;
24
24
  }, z.core.$loose>>;
25
25
  }, z.core.$loose>;
26
- declare const specificListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ declare const specificListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", 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
+ }, z.core.$strip>>]>;
27
39
  //#endregion
28
40
  export { specificListSurveys };
29
41
  //# sourceMappingURL=list-surveys.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-surveys.d.mts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAsBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-surveys.d.mts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAsBxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
@@ -84,7 +84,19 @@ declare const specificListUsers: import("@keystrokehq/action").WorkflowActionDef
84
84
  } | undefined;
85
85
  attributes?: Record<string, unknown> | undefined;
86
86
  } | undefined;
87
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
87
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
88
+ connectionId: z.ZodString;
89
+ entityId: z.ZodString;
90
+ instanceId: z.ZodString;
91
+ }, z.core.$strip>, z.ZodObject<{
92
+ generic_api_key: z.ZodString;
93
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
94
+ connectionId: z.ZodString;
95
+ entityId: z.ZodString;
96
+ instanceId: z.ZodString;
97
+ }, z.core.$strip>, z.ZodObject<{
98
+ generic_api_key: z.ZodString;
99
+ }, z.core.$strip>>]>;
88
100
  //#endregion
89
101
  export { specificListUsers };
90
102
  //# sourceMappingURL=list-users.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-users.d.cts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgDtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAM5B,MAAA;EAAA;AAAA"}
1
+ {"version":3,"file":"list-users.d.cts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgDtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA"}
@@ -84,7 +84,19 @@ declare const specificListUsers: import("@keystrokehq/action").WorkflowActionDef
84
84
  } | undefined;
85
85
  attributes?: Record<string, unknown> | undefined;
86
86
  } | undefined;
87
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
87
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
88
+ connectionId: z.ZodString;
89
+ entityId: z.ZodString;
90
+ instanceId: z.ZodString;
91
+ }, z.core.$strip>, z.ZodObject<{
92
+ generic_api_key: z.ZodString;
93
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
94
+ connectionId: z.ZodString;
95
+ entityId: z.ZodString;
96
+ instanceId: z.ZodString;
97
+ }, z.core.$strip>, z.ZodObject<{
98
+ generic_api_key: z.ZodString;
99
+ }, z.core.$strip>>]>;
88
100
  //#endregion
89
101
  export { specificListUsers };
90
102
  //# sourceMappingURL=list-users.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-users.d.mts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgDtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAM5B,MAAA;EAAA;AAAA"}
1
+ {"version":3,"file":"list-users.d.mts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAgDtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAIvB,iBAAA,gCAAiB,wBAAA"}
@@ -18,7 +18,19 @@ declare const specificUpdateCompany: import("@keystrokehq/action").WorkflowActio
18
18
  id: string;
19
19
  name?: string | undefined;
20
20
  attributes?: Record<string, unknown> | undefined;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificUpdateCompany };
24
36
  //# sourceMappingURL=update-company.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-company.d.cts","names":[],"sources":["../../src/actions/update-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAW1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA;;;eAMhC,MAAA;AAAA"}
1
+ {"version":3,"file":"update-company.d.cts","names":[],"sources":["../../src/actions/update-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAW1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
@@ -18,7 +18,19 @@ declare const specificUpdateCompany: import("@keystrokehq/action").WorkflowActio
18
18
  id: string;
19
19
  name?: string | undefined;
20
20
  attributes?: Record<string, unknown> | undefined;
21
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
21
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", 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<"specific", 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 { specificUpdateCompany };
24
36
  //# sourceMappingURL=update-company.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-company.d.mts","names":[],"sources":["../../src/actions/update-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAW1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA;;;eAMhC,MAAA;AAAA"}
1
+ {"version":3,"file":"update-company.d.mts","names":[],"sources":["../../src/actions/update-company.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;cAW1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
@@ -44,7 +44,19 @@ declare const specificUpdateUser: import("@keystrokehq/action").WorkflowActionDe
44
44
  id?: string | undefined;
45
45
  email?: string | undefined;
46
46
  };
47
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ generic_api_key: z.ZodString;
53
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
54
+ connectionId: z.ZodString;
55
+ entityId: z.ZodString;
56
+ instanceId: z.ZodString;
57
+ }, z.core.$strip>, z.ZodObject<{
58
+ generic_api_key: z.ZodString;
59
+ }, z.core.$strip>>]>;
48
60
  //#endregion
49
61
  export { specificUpdateUser };
50
62
  //# sourceMappingURL=update-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-user.d.cts","names":[],"sources":["../../src/actions/update-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0BvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMxB,kBAAA,gCAAkB,wBAAA;;;;;;;;iBAM7B,MAAA;EAAA"}
1
+ {"version":3,"file":"update-user.d.cts","names":[],"sources":["../../src/actions/update-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0BvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMxB,kBAAA,gCAAkB,wBAAA"}
@@ -44,7 +44,19 @@ declare const specificUpdateUser: import("@keystrokehq/action").WorkflowActionDe
44
44
  id?: string | undefined;
45
45
  email?: string | undefined;
46
46
  };
47
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ generic_api_key: z.ZodString;
53
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"specific", z.ZodObject<{
54
+ connectionId: z.ZodString;
55
+ entityId: z.ZodString;
56
+ instanceId: z.ZodString;
57
+ }, z.core.$strip>, z.ZodObject<{
58
+ generic_api_key: z.ZodString;
59
+ }, z.core.$strip>>]>;
48
60
  //#endregion
49
61
  export { specificUpdateUser };
50
62
  //# sourceMappingURL=update-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-user.d.mts","names":[],"sources":["../../src/actions/update-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0BvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMxB,kBAAA,gCAAkB,wBAAA;;;;;;;;iBAM7B,MAAA;EAAA"}
1
+ {"version":3,"file":"update-user.d.mts","names":[],"sources":["../../src/actions/update-user.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA0BvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAMxB,kBAAA,gCAAkB,wBAAA"}
package/dist/app.cjs CHANGED
@@ -1,7 +1,10 @@
1
+ let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
2
+ let zod = require("zod");
1
3
  //#region src/app.ts
2
- const specific = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const specific = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "specific",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.specific = specific;
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 specific = defineApp({\n slug: \"specific\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,YAAA,uCAAA,CAAA,CAAA,UAAA,CAAqB;CAChC,MAAM;CACN,MAAM;AACR,CAAC"}
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 specific = defineApp({\n slug: \"specific\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,YAAA,GAAA,2BAAA,UAAA,CAAqB;CAChC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiBA,IAAAA,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/app.d.cts CHANGED
@@ -1,5 +1,13 @@
1
+ import { z } from "zod";
2
+
1
3
  //#region src/app.d.ts
2
- declare const specific: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const specific: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"specific", 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
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { specific };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,QAAA,6BAAQ,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,QAAA,6BAAQ,GAAA,+BAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
package/dist/app.d.mts CHANGED
@@ -1,5 +1,13 @@
1
+ import { z } from "zod";
2
+
1
3
  //#region src/app.d.ts
2
- declare const specific: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const specific: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"specific", 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
+ }, z.core.$strip>>>;
3
11
  //#endregion
4
12
  export { specific };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,QAAA,6BAAQ,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,QAAA,6BAAQ,GAAA,+BAAA,UAAA,aAAA,CAAA,CAAA,SAAA"}
package/dist/app.mjs CHANGED
@@ -1,8 +1,10 @@
1
1
  import { defineApp } from "@keystrokehq/keystroke/app";
2
+ import { z } from "zod";
2
3
  //#region src/app.ts
3
4
  const specific = defineApp({
4
5
  slug: "specific",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { specific };
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 specific = defineApp({\n slug: \"specific\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,WAAW,UAAU;CAChC,MAAM;CACN,MAAM;AACR,CAAC"}
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 specific = defineApp({\n slug: \"specific\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,WAAW,UAAU;CAChC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const specificCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/specific",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "API Key",
13
13
  "secret": true,
14
14
  "description": "Generate your API Key from Preferences → Administration → API in your Specific workspace"
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const specificCatalog = {\n \"slug\": \"specific\",\n \"name\": \"Specific\",\n \"description\": \"Sales call analytics to drive revenue\",\n \"category\": \"AI Sales Tools\",\n \"logo\": \"https://logos.composio.dev/api/specific\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Generate your API Key from Preferences → Administration → API in your Specific workspace\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const specificCatalog = {\n \"slug\": \"specific\",\n \"name\": \"Specific\",\n \"description\": \"Sales call analytics to drive revenue\",\n \"category\": \"AI Sales Tools\",\n \"logo\": \"https://logos.composio.dev/api/specific\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Generate your API Key from Preferences → Administration → API in your Specific workspace\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const specificCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Generate your API Key from Preferences → Administration → API in your Specific workspace";
@@ -9,7 +9,7 @@ declare const specificCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Generate your API Key from Preferences → Administration → API in your Specific workspace";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const specificCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/specific",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "API Key",
13
13
  "secret": true,
14
14
  "description": "Generate your API Key from Preferences → Administration → API in your Specific workspace"
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const specificCatalog = {\n \"slug\": \"specific\",\n \"name\": \"Specific\",\n \"description\": \"Sales call analytics to drive revenue\",\n \"category\": \"AI Sales Tools\",\n \"logo\": \"https://logos.composio.dev/api/specific\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Generate your API Key from Preferences → Administration → API in your Specific workspace\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const specificCatalog = {\n \"slug\": \"specific\",\n \"name\": \"Specific\",\n \"description\": \"Sales call analytics to drive revenue\",\n \"category\": \"AI Sales Tools\",\n \"logo\": \"https://logos.composio.dev/api/specific\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Generate your API Key from Preferences → Administration → API in your Specific workspace\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/specific",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"