@keystrokehq/signaturely 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 (37) hide show
  1. package/dist/actions/create-folder.d.cts +13 -1
  2. package/dist/actions/create-folder.d.mts +13 -1
  3. package/dist/actions/get-current-user.d.cts +14 -2
  4. package/dist/actions/get-current-user.d.cts.map +1 -1
  5. package/dist/actions/get-current-user.d.mts +14 -2
  6. package/dist/actions/get-current-user.d.mts.map +1 -1
  7. package/dist/actions/get-folder.d.cts +13 -1
  8. package/dist/actions/get-folder.d.mts +13 -1
  9. package/dist/actions/get-recent-document.d.cts +13 -1
  10. package/dist/actions/get-recent-document.d.mts +13 -1
  11. package/dist/actions/list-documents.d.cts +13 -1
  12. package/dist/actions/list-documents.d.mts +13 -1
  13. package/dist/actions/list-folders.d.cts +13 -1
  14. package/dist/actions/list-folders.d.mts +13 -1
  15. package/dist/actions/list-team-members.d.cts +13 -1
  16. package/dist/actions/list-team-members.d.cts.map +1 -1
  17. package/dist/actions/list-team-members.d.mts +13 -1
  18. package/dist/actions/list-team-members.d.mts.map +1 -1
  19. package/dist/actions/rename-folder.d.cts +13 -1
  20. package/dist/actions/rename-folder.d.mts +13 -1
  21. package/dist/actions/search-templates-documents.d.cts +13 -1
  22. package/dist/actions/search-templates-documents.d.mts +13 -1
  23. package/dist/app.cjs +5 -2
  24. package/dist/app.cjs.map +1 -1
  25. package/dist/app.d.cts +9 -1
  26. package/dist/app.d.cts.map +1 -1
  27. package/dist/app.d.mts +9 -1
  28. package/dist/app.d.mts.map +1 -1
  29. package/dist/app.mjs +3 -1
  30. package/dist/app.mjs.map +1 -1
  31. package/dist/catalog.cjs +1 -1
  32. package/dist/catalog.cjs.map +1 -1
  33. package/dist/catalog.d.cts +1 -1
  34. package/dist/catalog.d.mts +1 -1
  35. package/dist/catalog.mjs +1 -1
  36. package/dist/catalog.mjs.map +1 -1
  37. package/package.json +1 -1
@@ -13,7 +13,19 @@ declare const SignaturelyCreateFolderOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const signaturelyCreateFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  title: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { signaturelyCreateFolder };
19
31
  //# sourceMappingURL=create-folder.d.cts.map
@@ -13,7 +13,19 @@ declare const SignaturelyCreateFolderOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const signaturelyCreateFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  title: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { signaturelyCreateFolder };
19
31
  //# sourceMappingURL=create-folder.d.mts.map
@@ -6,9 +6,9 @@ declare const SignaturelyGetCurrentUserOutput: z.ZodObject<{
6
6
  id: z.ZodNullable<z.ZodString>;
7
7
  name: z.ZodNullable<z.ZodString>;
8
8
  role: z.ZodNullable<z.ZodEnum<{
9
- user: "user";
10
9
  owner: "owner";
11
10
  admin: "admin";
11
+ user: "user";
12
12
  }>>;
13
13
  email: z.ZodNullable<z.ZodString>;
14
14
  status: z.ZodNullable<z.ZodEnum<{
@@ -21,7 +21,19 @@ declare const SignaturelyGetCurrentUserOutput: z.ZodObject<{
21
21
  full: "full";
22
22
  }>>>;
23
23
  }, z.core.$loose>;
24
- declare const signaturelyGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ declare const signaturelyGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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<"signaturely", 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 { signaturelyGetCurrentUser };
27
39
  //# sourceMappingURL=get-current-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-current-user.d.cts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAI9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-current-user.d.cts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAI9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,gBAAA,CAAA,CAAA,SAAA"}
@@ -6,9 +6,9 @@ declare const SignaturelyGetCurrentUserOutput: z.ZodObject<{
6
6
  id: z.ZodNullable<z.ZodString>;
7
7
  name: z.ZodNullable<z.ZodString>;
8
8
  role: z.ZodNullable<z.ZodEnum<{
9
- user: "user";
10
9
  owner: "owner";
11
10
  admin: "admin";
11
+ user: "user";
12
12
  }>>;
13
13
  email: z.ZodNullable<z.ZodString>;
14
14
  status: z.ZodNullable<z.ZodEnum<{
@@ -21,7 +21,19 @@ declare const SignaturelyGetCurrentUserOutput: z.ZodObject<{
21
21
  full: "full";
22
22
  }>>>;
23
23
  }, z.core.$loose>;
24
- declare const signaturelyGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
24
+ declare const signaturelyGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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<"signaturely", 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 { signaturelyGetCurrentUser };
27
39
  //# sourceMappingURL=get-current-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-current-user.d.mts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAI9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-current-user.d.mts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAI9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,gBAAA,CAAA,CAAA,SAAA"}
@@ -13,7 +13,19 @@ declare const SignaturelyGetFolderOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const signaturelyGetFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  id: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { signaturelyGetFolder };
19
31
  //# sourceMappingURL=get-folder.d.cts.map
@@ -13,7 +13,19 @@ declare const SignaturelyGetFolderOutput: z.ZodObject<{
13
13
  }, z.core.$loose>;
14
14
  declare const signaturelyGetFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  id: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { signaturelyGetFolder };
19
31
  //# sourceMappingURL=get-folder.d.mts.map
@@ -16,7 +16,19 @@ declare const SignaturelyGetRecentDocumentOutput: z.ZodObject<{
16
16
  }, z.core.$loose>;
17
17
  declare const signaturelyGetRecentDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  recentDocumentType: "sent" | "completed";
19
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
19
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
20
+ connectionId: z.ZodString;
21
+ entityId: z.ZodString;
22
+ instanceId: z.ZodString;
23
+ }, z.core.$strip>, z.ZodObject<{
24
+ generic_api_key: z.ZodString;
25
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
26
+ connectionId: z.ZodString;
27
+ entityId: z.ZodString;
28
+ instanceId: z.ZodString;
29
+ }, z.core.$strip>, z.ZodObject<{
30
+ generic_api_key: z.ZodString;
31
+ }, z.core.$strip>>]>;
20
32
  //#endregion
21
33
  export { signaturelyGetRecentDocument };
22
34
  //# sourceMappingURL=get-recent-document.d.cts.map
@@ -16,7 +16,19 @@ declare const SignaturelyGetRecentDocumentOutput: z.ZodObject<{
16
16
  }, z.core.$loose>;
17
17
  declare const signaturelyGetRecentDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  recentDocumentType: "sent" | "completed";
19
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
19
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
20
+ connectionId: z.ZodString;
21
+ entityId: z.ZodString;
22
+ instanceId: z.ZodString;
23
+ }, z.core.$strip>, z.ZodObject<{
24
+ generic_api_key: z.ZodString;
25
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
26
+ connectionId: z.ZodString;
27
+ entityId: z.ZodString;
28
+ instanceId: z.ZodString;
29
+ }, z.core.$strip>, z.ZodObject<{
30
+ generic_api_key: z.ZodString;
31
+ }, z.core.$strip>>]>;
20
32
  //#endregion
21
33
  export { signaturelyGetRecentDocument };
22
34
  //# sourceMappingURL=get-recent-document.d.mts.map
@@ -38,7 +38,19 @@ declare const signaturelyListDocuments: import("@keystrokehq/action").WorkflowAc
38
38
  template?: boolean | undefined;
39
39
  created_at_to?: string | undefined;
40
40
  created_at_from?: string | undefined;
41
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
41
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>;
42
54
  //#endregion
43
55
  export { signaturelyListDocuments };
44
56
  //# sourceMappingURL=list-documents.d.cts.map
@@ -38,7 +38,19 @@ declare const signaturelyListDocuments: import("@keystrokehq/action").WorkflowAc
38
38
  template?: boolean | undefined;
39
39
  created_at_to?: string | undefined;
40
40
  created_at_from?: string | undefined;
41
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
41
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>;
42
54
  //#endregion
43
55
  export { signaturelyListDocuments };
44
56
  //# sourceMappingURL=list-documents.d.mts.map
@@ -23,7 +23,19 @@ declare const SignaturelyListFoldersOutput: z.ZodObject<{
23
23
  declare const signaturelyListFolders: import("@keystrokehq/action").WorkflowActionDefinition<{
24
24
  page?: number | undefined;
25
25
  limit?: number | undefined;
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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<"signaturely", 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 { signaturelyListFolders };
29
41
  //# sourceMappingURL=list-folders.d.cts.map
@@ -23,7 +23,19 @@ declare const SignaturelyListFoldersOutput: z.ZodObject<{
23
23
  declare const signaturelyListFolders: import("@keystrokehq/action").WorkflowActionDefinition<{
24
24
  page?: number | undefined;
25
25
  limit?: number | undefined;
26
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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<"signaturely", 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 { signaturelyListFolders };
29
41
  //# sourceMappingURL=list-folders.d.mts.map
@@ -12,7 +12,19 @@ declare const SignaturelyListTeamMembersOutput: z.ZodObject<{
12
12
  accountType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
13
  }, z.core.$loose>>>>;
14
14
  }, z.core.$loose>;
15
- declare const signaturelyListTeamMembers: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ declare const signaturelyListTeamMembers: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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<"signaturely", 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 { signaturelyListTeamMembers };
18
30
  //# sourceMappingURL=list-team-members.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-team-members.d.cts","names":[],"sources":["../../src/actions/list-team-members.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAS/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;cAIhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-team-members.d.cts","names":[],"sources":["../../src/actions/list-team-members.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAS/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;cAIhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,gBAAA,CAAA,CAAA,SAAA"}
@@ -12,7 +12,19 @@ declare const SignaturelyListTeamMembersOutput: z.ZodObject<{
12
12
  accountType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
13
  }, z.core.$loose>>>>;
14
14
  }, z.core.$loose>;
15
- declare const signaturelyListTeamMembers: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
15
+ declare const signaturelyListTeamMembers: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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<"signaturely", 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 { signaturelyListTeamMembers };
18
30
  //# sourceMappingURL=list-team-members.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-team-members.d.mts","names":[],"sources":["../../src/actions/list-team-members.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAS/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;cAIhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-team-members.d.mts","names":[],"sources":["../../src/actions/list-team-members.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAS/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;cAIhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,gBAAA,CAAA,CAAA,SAAA"}
@@ -15,7 +15,19 @@ declare const SignaturelyRenameFolderOutput: z.ZodObject<{
15
15
  declare const signaturelyRenameFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  id: string;
17
17
  title: string;
18
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { signaturelyRenameFolder };
21
33
  //# sourceMappingURL=rename-folder.d.cts.map
@@ -15,7 +15,19 @@ declare const SignaturelyRenameFolderOutput: z.ZodObject<{
15
15
  declare const signaturelyRenameFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  id: string;
17
17
  title: string;
18
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", z.ZodObject<{
25
+ connectionId: z.ZodString;
26
+ entityId: z.ZodString;
27
+ instanceId: z.ZodString;
28
+ }, z.core.$strip>, z.ZodObject<{
29
+ generic_api_key: z.ZodString;
30
+ }, z.core.$strip>>]>;
19
31
  //#endregion
20
32
  export { signaturelyRenameFolder };
21
33
  //# sourceMappingURL=rename-folder.d.mts.map
@@ -29,7 +29,19 @@ declare const signaturelySearchTemplatesDocuments: import("@keystrokehq/action")
29
29
  limit?: number | undefined;
30
30
  search?: string | undefined;
31
31
  search_type?: "templates" | "documents" | undefined;
32
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
32
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>;
33
45
  //#endregion
34
46
  export { signaturelySearchTemplatesDocuments };
35
47
  //# sourceMappingURL=search-templates-documents.d.cts.map
@@ -29,7 +29,19 @@ declare const signaturelySearchTemplatesDocuments: import("@keystrokehq/action")
29
29
  limit?: number | undefined;
30
30
  search?: string | undefined;
31
31
  search_type?: "templates" | "documents" | undefined;
32
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
32
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"signaturely", 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>>]>;
33
45
  //#endregion
34
46
  export { signaturelySearchTemplatesDocuments };
35
47
  //# sourceMappingURL=search-templates-documents.d.mts.map
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 signaturely = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const signaturely = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "signaturely",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.signaturely = signaturely;
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 signaturely = defineApp({\n slug: \"signaturely\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,eAAA,uCAAA,CAAA,CAAA,UAAA,CAAwB;CACnC,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 signaturely = defineApp({\n slug: \"signaturely\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,eAAA,GAAA,2BAAA,UAAA,CAAwB;CACnC,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 signaturely: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const signaturely: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"signaturely", 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 { signaturely };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,WAAA,6BAAW,GAAA,+BAAA,UAAA,gBAAA,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 signaturely: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const signaturely: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"signaturely", 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 { signaturely };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,WAAA,6BAAW,GAAA,+BAAA,UAAA,gBAAA,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 signaturely = defineApp({
4
5
  slug: "signaturely",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { signaturely };
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 signaturely = defineApp({\n slug: \"signaturely\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,cAAc,UAAU;CACnC,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 signaturely = defineApp({\n slug: \"signaturely\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,cAAc,UAAU;CACnC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const signaturelyCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/signaturely",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Signaturely API Key",
13
13
  "secret": true,
14
14
  "description": "Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const signaturelyCatalog = {\n \"slug\": \"signaturely\",\n \"name\": \"Signaturely\",\n \"description\": \"Signaturely is an electronic signature platform that allows users to sign documents online, offering features like automated signature requests, templates, and integrations with other platforms.\",\n \"category\": \"Signatures\",\n \"logo\": \"https://logos.composio.dev/api/signaturely\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Signaturely API Key\",\n \"secret\": true,\n \"description\": \"Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 signaturelyCatalog = {\n \"slug\": \"signaturely\",\n \"name\": \"Signaturely\",\n \"description\": \"Signaturely is an electronic signature platform that allows users to sign documents online, offering features like automated signature requests, templates, and integrations with other platforms.\",\n \"category\": \"Signatures\",\n \"logo\": \"https://logos.composio.dev/api/signaturely\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Signaturely API Key\",\n \"secret\": true,\n \"description\": \"Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 signaturelyCatalog: {
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: "Signaturely API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'.";
@@ -9,7 +9,7 @@ declare const signaturelyCatalog: {
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: "Signaturely API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'.";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const signaturelyCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/signaturely",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Signaturely API Key",
13
13
  "secret": true,
14
14
  "description": "Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const signaturelyCatalog = {\n \"slug\": \"signaturely\",\n \"name\": \"Signaturely\",\n \"description\": \"Signaturely is an electronic signature platform that allows users to sign documents online, offering features like automated signature requests, templates, and integrations with other platforms.\",\n \"category\": \"Signatures\",\n \"logo\": \"https://logos.composio.dev/api/signaturely\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Signaturely API Key\",\n \"secret\": true,\n \"description\": \"Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 signaturelyCatalog = {\n \"slug\": \"signaturely\",\n \"name\": \"Signaturely\",\n \"description\": \"Signaturely is an electronic signature platform that allows users to sign documents online, offering features like automated signature requests, templates, and integrations with other platforms.\",\n \"category\": \"Signatures\",\n \"logo\": \"https://logos.composio.dev/api/signaturely\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Signaturely API Key\",\n \"secret\": true,\n \"description\": \"Your Signaturely API key, obtainable from your Signaturely account under 'Settings' > 'API'.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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/signaturely",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"