@keystrokehq/slite 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 (49) hide show
  1. package/dist/actions/ask-question.d.cts +13 -1
  2. package/dist/actions/ask-question.d.mts +13 -1
  3. package/dist/actions/create-note.d.cts +13 -1
  4. package/dist/actions/create-note.d.mts +13 -1
  5. package/dist/actions/delete-note-by-id.d.cts +13 -1
  6. package/dist/actions/delete-note-by-id.d.mts +13 -1
  7. package/dist/actions/flag-note-as-outdated.d.cts +13 -1
  8. package/dist/actions/flag-note-as-outdated.d.mts +13 -1
  9. package/dist/actions/get-authenticated-user.d.cts +13 -1
  10. package/dist/actions/get-authenticated-user.d.cts.map +1 -1
  11. package/dist/actions/get-authenticated-user.d.mts +13 -1
  12. package/dist/actions/get-authenticated-user.d.mts.map +1 -1
  13. package/dist/actions/get-note-by-id.d.cts +13 -1
  14. package/dist/actions/get-note-by-id.d.mts +13 -1
  15. package/dist/actions/get-note-children.d.cts +13 -1
  16. package/dist/actions/get-note-children.d.mts +13 -1
  17. package/dist/actions/list-notes.d.cts +13 -1
  18. package/dist/actions/list-notes.d.mts +13 -1
  19. package/dist/actions/search-groups.d.cts +13 -1
  20. package/dist/actions/search-groups.d.mts +13 -1
  21. package/dist/actions/search-notes.d.cts +13 -1
  22. package/dist/actions/search-notes.d.mts +13 -1
  23. package/dist/actions/search-users.d.cts +13 -1
  24. package/dist/actions/search-users.d.mts +13 -1
  25. package/dist/actions/update-note-archived-state.d.cts +13 -1
  26. package/dist/actions/update-note-archived-state.d.mts +13 -1
  27. package/dist/actions/update-note-owner.d.cts +13 -1
  28. package/dist/actions/update-note-owner.d.mts +13 -1
  29. package/dist/actions/update-note.d.cts +13 -1
  30. package/dist/actions/update-note.d.mts +13 -1
  31. package/dist/actions/update-tile.d.cts +13 -1
  32. package/dist/actions/update-tile.d.mts +13 -1
  33. package/dist/actions/verify-note.d.cts +13 -1
  34. package/dist/actions/verify-note.d.mts +13 -1
  35. package/dist/app.cjs +5 -2
  36. package/dist/app.cjs.map +1 -1
  37. package/dist/app.d.cts +9 -1
  38. package/dist/app.d.cts.map +1 -1
  39. package/dist/app.d.mts +9 -1
  40. package/dist/app.d.mts.map +1 -1
  41. package/dist/app.mjs +3 -1
  42. package/dist/app.mjs.map +1 -1
  43. package/dist/catalog.cjs +1 -1
  44. package/dist/catalog.cjs.map +1 -1
  45. package/dist/catalog.d.cts +1 -1
  46. package/dist/catalog.d.mts +1 -1
  47. package/dist/catalog.mjs +1 -1
  48. package/dist/catalog.mjs.map +1 -1
  49. package/package.json +1 -1
@@ -20,7 +20,19 @@ declare const sliteAskQuestion: import("@keystrokehq/action").WorkflowActionDefi
20
20
  question: string;
21
21
  assistantId?: string | undefined;
22
22
  parentNoteId?: string | undefined;
23
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ generic_api_key: z.ZodString;
29
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>;
24
36
  //#endregion
25
37
  export { sliteAskQuestion };
26
38
  //# sourceMappingURL=ask-question.d.cts.map
@@ -20,7 +20,19 @@ declare const sliteAskQuestion: import("@keystrokehq/action").WorkflowActionDefi
20
20
  question: string;
21
21
  assistantId?: string | undefined;
22
22
  parentNoteId?: string | undefined;
23
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
24
+ connectionId: z.ZodString;
25
+ entityId: z.ZodString;
26
+ instanceId: z.ZodString;
27
+ }, z.core.$strip>, z.ZodObject<{
28
+ generic_api_key: z.ZodString;
29
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>;
24
36
  //#endregion
25
37
  export { sliteAskQuestion };
26
38
  //# sourceMappingURL=ask-question.d.mts.map
@@ -24,7 +24,19 @@ declare const sliteCreateNote: import("@keystrokehq/action").WorkflowActionDefin
24
24
  attributes?: string[] | undefined;
25
25
  templateId?: string | undefined;
26
26
  parentNoteId?: string | undefined;
27
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
27
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>;
28
40
  //#endregion
29
41
  export { sliteCreateNote };
30
42
  //# sourceMappingURL=create-note.d.cts.map
@@ -24,7 +24,19 @@ declare const sliteCreateNote: import("@keystrokehq/action").WorkflowActionDefin
24
24
  attributes?: string[] | undefined;
25
25
  templateId?: string | undefined;
26
26
  parentNoteId?: string | undefined;
27
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
27
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>;
28
40
  //#endregion
29
41
  export { sliteCreateNote };
30
42
  //# sourceMappingURL=create-note.d.mts.map
@@ -10,7 +10,19 @@ declare const SliteDeleteNoteByIdOutput: z.ZodObject<{
10
10
  }, z.core.$loose>;
11
11
  declare const sliteDeleteNoteById: import("@keystrokehq/action").WorkflowActionDefinition<{
12
12
  note_id: string;
13
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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<"slite", 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 { sliteDeleteNoteById };
16
28
  //# sourceMappingURL=delete-note-by-id.d.cts.map
@@ -10,7 +10,19 @@ declare const SliteDeleteNoteByIdOutput: z.ZodObject<{
10
10
  }, z.core.$loose>;
11
11
  declare const sliteDeleteNoteById: import("@keystrokehq/action").WorkflowActionDefinition<{
12
12
  note_id: string;
13
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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<"slite", 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 { sliteDeleteNoteById };
16
28
  //# sourceMappingURL=delete-note-by-id.d.mts.map
@@ -17,7 +17,19 @@ declare const SliteFlagNoteAsOutdatedOutput: z.ZodObject<{
17
17
  declare const sliteFlagNoteAsOutdated: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  reason: string;
19
19
  note_id: string;
20
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>;
21
33
  //#endregion
22
34
  export { sliteFlagNoteAsOutdated };
23
35
  //# sourceMappingURL=flag-note-as-outdated.d.cts.map
@@ -17,7 +17,19 @@ declare const SliteFlagNoteAsOutdatedOutput: z.ZodObject<{
17
17
  declare const sliteFlagNoteAsOutdated: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  reason: string;
19
19
  note_id: string;
20
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
21
+ connectionId: z.ZodString;
22
+ entityId: z.ZodString;
23
+ instanceId: z.ZodString;
24
+ }, z.core.$strip>, z.ZodObject<{
25
+ generic_api_key: z.ZodString;
26
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>;
21
33
  //#endregion
22
34
  export { sliteFlagNoteAsOutdated };
23
35
  //# sourceMappingURL=flag-note-as-outdated.d.mts.map
@@ -8,7 +8,19 @@ declare const SliteGetAuthenticatedUserOutput: z.ZodObject<{
8
8
  organizationName: z.ZodNullable<z.ZodString>;
9
9
  organizationDomain: z.ZodNullable<z.ZodString>;
10
10
  }, z.core.$loose>;
11
- declare const sliteGetAuthenticatedUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
11
+ declare const sliteGetAuthenticatedUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
12
+ connectionId: z.ZodString;
13
+ entityId: z.ZodString;
14
+ instanceId: z.ZodString;
15
+ }, z.core.$strip>, z.ZodObject<{
16
+ generic_api_key: z.ZodString;
17
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>;
12
24
  //#endregion
13
25
  export { sliteGetAuthenticatedUser };
14
26
  //# sourceMappingURL=get-authenticated-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-authenticated-user.d.cts","names":[],"sources":["../../src/actions/get-authenticated-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-authenticated-user.d.cts","names":[],"sources":["../../src/actions/get-authenticated-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
@@ -8,7 +8,19 @@ declare const SliteGetAuthenticatedUserOutput: z.ZodObject<{
8
8
  organizationName: z.ZodNullable<z.ZodString>;
9
9
  organizationDomain: z.ZodNullable<z.ZodString>;
10
10
  }, z.core.$loose>;
11
- declare const sliteGetAuthenticatedUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
11
+ declare const sliteGetAuthenticatedUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
12
+ connectionId: z.ZodString;
13
+ entityId: z.ZodString;
14
+ instanceId: z.ZodString;
15
+ }, z.core.$strip>, z.ZodObject<{
16
+ generic_api_key: z.ZodString;
17
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>;
12
24
  //#endregion
13
25
  export { sliteGetAuthenticatedUser };
14
26
  //# sourceMappingURL=get-authenticated-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-authenticated-user.d.mts","names":[],"sources":["../../src/actions/get-authenticated-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-authenticated-user.d.mts","names":[],"sources":["../../src/actions/get-authenticated-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,UAAA,CAAA,CAAA,SAAA"}
@@ -27,7 +27,19 @@ declare const SliteGetNoteByIdOutput: z.ZodObject<{
27
27
  declare const sliteGetNoteById: import("@keystrokehq/action").WorkflowActionDefinition<{
28
28
  noteId: string;
29
29
  format?: "md" | "html" | undefined;
30
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
30
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
37
+ connectionId: z.ZodString;
38
+ entityId: z.ZodString;
39
+ instanceId: z.ZodString;
40
+ }, z.core.$strip>, z.ZodObject<{
41
+ generic_api_key: z.ZodString;
42
+ }, z.core.$strip>>]>;
31
43
  //#endregion
32
44
  export { sliteGetNoteById };
33
45
  //# sourceMappingURL=get-note-by-id.d.cts.map
@@ -27,7 +27,19 @@ declare const SliteGetNoteByIdOutput: z.ZodObject<{
27
27
  declare const sliteGetNoteById: import("@keystrokehq/action").WorkflowActionDefinition<{
28
28
  noteId: string;
29
29
  format?: "md" | "html" | undefined;
30
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
30
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
37
+ connectionId: z.ZodString;
38
+ entityId: z.ZodString;
39
+ instanceId: z.ZodString;
40
+ }, z.core.$strip>, z.ZodObject<{
41
+ generic_api_key: z.ZodString;
42
+ }, z.core.$strip>>]>;
31
43
  //#endregion
32
44
  export { sliteGetNoteById };
33
45
  //# sourceMappingURL=get-note-by-id.d.mts.map
@@ -24,7 +24,19 @@ declare const SliteGetNoteChildrenOutput: z.ZodObject<{
24
24
  declare const sliteGetNoteChildren: import("@keystrokehq/action").WorkflowActionDefinition<{
25
25
  noteId: string;
26
26
  cursor?: string | undefined;
27
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
27
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>;
28
40
  //#endregion
29
41
  export { sliteGetNoteChildren };
30
42
  //# sourceMappingURL=get-note-children.d.cts.map
@@ -24,7 +24,19 @@ declare const SliteGetNoteChildrenOutput: z.ZodObject<{
24
24
  declare const sliteGetNoteChildren: import("@keystrokehq/action").WorkflowActionDefinition<{
25
25
  noteId: string;
26
26
  cursor?: string | undefined;
27
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
27
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
34
+ connectionId: z.ZodString;
35
+ entityId: z.ZodString;
36
+ instanceId: z.ZodString;
37
+ }, z.core.$strip>, z.ZodObject<{
38
+ generic_api_key: z.ZodString;
39
+ }, z.core.$strip>>]>;
28
40
  //#endregion
29
41
  export { sliteGetNoteChildren };
30
42
  //# sourceMappingURL=get-note-children.d.mts.map
@@ -21,7 +21,19 @@ declare const SliteListNotesOutput: z.ZodObject<{
21
21
  declare const sliteListNotes: import("@keystrokehq/action").WorkflowActionDefinition<{
22
22
  cursor?: string | undefined;
23
23
  ownerId?: string | 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<"slite", 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<"slite", 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 { sliteListNotes };
27
39
  //# sourceMappingURL=list-notes.d.cts.map
@@ -21,7 +21,19 @@ declare const SliteListNotesOutput: z.ZodObject<{
21
21
  declare const sliteListNotes: import("@keystrokehq/action").WorkflowActionDefinition<{
22
22
  cursor?: string | undefined;
23
23
  ownerId?: string | 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<"slite", 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<"slite", 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 { sliteListNotes };
27
39
  //# sourceMappingURL=list-notes.d.mts.map
@@ -18,7 +18,19 @@ declare const SliteSearchGroupsOutput: z.ZodObject<{
18
18
  declare const sliteSearchGroups: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  query: string;
20
20
  cursor?: 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<"slite", 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<"slite", 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 { sliteSearchGroups };
24
36
  //# sourceMappingURL=search-groups.d.cts.map
@@ -18,7 +18,19 @@ declare const SliteSearchGroupsOutput: z.ZodObject<{
18
18
  declare const sliteSearchGroups: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  query: string;
20
20
  cursor?: 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<"slite", 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<"slite", 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 { sliteSearchGroups };
24
36
  //# sourceMappingURL=search-groups.d.mts.map
@@ -54,7 +54,19 @@ declare const sliteSearchNotes: import("@keystrokehq/action").WorkflowActionDefi
54
54
  includeArchived?: boolean | undefined;
55
55
  lastEditedAfter?: string | undefined;
56
56
  highlightPostTag?: string | undefined;
57
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
57
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
58
+ connectionId: z.ZodString;
59
+ entityId: z.ZodString;
60
+ instanceId: z.ZodString;
61
+ }, z.core.$strip>, z.ZodObject<{
62
+ generic_api_key: z.ZodString;
63
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
64
+ connectionId: z.ZodString;
65
+ entityId: z.ZodString;
66
+ instanceId: z.ZodString;
67
+ }, z.core.$strip>, z.ZodObject<{
68
+ generic_api_key: z.ZodString;
69
+ }, z.core.$strip>>]>;
58
70
  //#endregion
59
71
  export { sliteSearchNotes };
60
72
  //# sourceMappingURL=search-notes.d.cts.map
@@ -54,7 +54,19 @@ declare const sliteSearchNotes: import("@keystrokehq/action").WorkflowActionDefi
54
54
  includeArchived?: boolean | undefined;
55
55
  lastEditedAfter?: string | undefined;
56
56
  highlightPostTag?: string | undefined;
57
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
57
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
58
+ connectionId: z.ZodString;
59
+ entityId: z.ZodString;
60
+ instanceId: z.ZodString;
61
+ }, z.core.$strip>, z.ZodObject<{
62
+ generic_api_key: z.ZodString;
63
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
64
+ connectionId: z.ZodString;
65
+ entityId: z.ZodString;
66
+ instanceId: z.ZodString;
67
+ }, z.core.$strip>, z.ZodObject<{
68
+ generic_api_key: z.ZodString;
69
+ }, z.core.$strip>>]>;
58
70
  //#endregion
59
71
  export { sliteSearchNotes };
60
72
  //# sourceMappingURL=search-notes.d.mts.map
@@ -23,7 +23,19 @@ declare const sliteSearchUsers: import("@keystrokehq/action").WorkflowActionDefi
23
23
  query: string;
24
24
  cursor?: string | undefined;
25
25
  includeArchived?: boolean | 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<"slite", 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<"slite", 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 { sliteSearchUsers };
29
41
  //# sourceMappingURL=search-users.d.cts.map
@@ -23,7 +23,19 @@ declare const sliteSearchUsers: import("@keystrokehq/action").WorkflowActionDefi
23
23
  query: string;
24
24
  cursor?: string | undefined;
25
25
  includeArchived?: boolean | 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<"slite", 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<"slite", 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 { sliteSearchUsers };
29
41
  //# sourceMappingURL=search-users.d.mts.map
@@ -16,7 +16,19 @@ declare const SliteUpdateNoteArchivedStateOutput: z.ZodObject<{
16
16
  declare const sliteUpdateNoteArchivedState: import("@keystrokehq/action").WorkflowActionDefinition<{
17
17
  note_id: string;
18
18
  archived: boolean;
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<"slite", 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<"slite", 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 { sliteUpdateNoteArchivedState };
22
34
  //# sourceMappingURL=update-note-archived-state.d.cts.map
@@ -16,7 +16,19 @@ declare const SliteUpdateNoteArchivedStateOutput: z.ZodObject<{
16
16
  declare const sliteUpdateNoteArchivedState: import("@keystrokehq/action").WorkflowActionDefinition<{
17
17
  note_id: string;
18
18
  archived: boolean;
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<"slite", 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<"slite", 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 { sliteUpdateNoteArchivedState };
22
34
  //# sourceMappingURL=update-note-archived-state.d.mts.map
@@ -18,7 +18,19 @@ declare const sliteUpdateNoteOwner: import("@keystrokehq/action").WorkflowAction
18
18
  note_id: string;
19
19
  user_id?: string | undefined;
20
20
  group_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<"slite", 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<"slite", 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 { sliteUpdateNoteOwner };
24
36
  //# sourceMappingURL=update-note-owner.d.cts.map
@@ -18,7 +18,19 @@ declare const sliteUpdateNoteOwner: import("@keystrokehq/action").WorkflowAction
18
18
  note_id: string;
19
19
  user_id?: string | undefined;
20
20
  group_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<"slite", 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<"slite", 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 { sliteUpdateNoteOwner };
24
36
  //# sourceMappingURL=update-note-owner.d.mts.map
@@ -25,7 +25,19 @@ declare const sliteUpdateNote: import("@keystrokehq/action").WorkflowActionDefin
25
25
  title?: string | undefined;
26
26
  markdown?: string | undefined;
27
27
  attributes?: string[] | undefined;
28
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
28
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
29
+ connectionId: z.ZodString;
30
+ entityId: z.ZodString;
31
+ instanceId: z.ZodString;
32
+ }, z.core.$strip>, z.ZodObject<{
33
+ generic_api_key: z.ZodString;
34
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>;
29
41
  //#endregion
30
42
  export { sliteUpdateNote };
31
43
  //# sourceMappingURL=update-note.d.cts.map
@@ -25,7 +25,19 @@ declare const sliteUpdateNote: import("@keystrokehq/action").WorkflowActionDefin
25
25
  title?: string | undefined;
26
26
  markdown?: string | undefined;
27
27
  attributes?: string[] | undefined;
28
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
28
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
29
+ connectionId: z.ZodString;
30
+ entityId: z.ZodString;
31
+ instanceId: z.ZodString;
32
+ }, z.core.$strip>, z.ZodObject<{
33
+ generic_api_key: z.ZodString;
34
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
35
+ connectionId: z.ZodString;
36
+ entityId: z.ZodString;
37
+ instanceId: z.ZodString;
38
+ }, z.core.$strip>, z.ZodObject<{
39
+ generic_api_key: z.ZodString;
40
+ }, z.core.$strip>>]>;
29
41
  //#endregion
30
42
  export { sliteUpdateNote };
31
43
  //# sourceMappingURL=update-note.d.mts.map
@@ -27,7 +27,19 @@ declare const sliteUpdateTile: import("@keystrokehq/action").WorkflowActionDefin
27
27
  } | undefined;
28
28
  content?: string | undefined;
29
29
  iconURL?: string | undefined;
30
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
30
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
37
+ connectionId: z.ZodString;
38
+ entityId: z.ZodString;
39
+ instanceId: z.ZodString;
40
+ }, z.core.$strip>, z.ZodObject<{
41
+ generic_api_key: z.ZodString;
42
+ }, z.core.$strip>>]>;
31
43
  //#endregion
32
44
  export { sliteUpdateTile };
33
45
  //# sourceMappingURL=update-tile.d.cts.map
@@ -27,7 +27,19 @@ declare const sliteUpdateTile: import("@keystrokehq/action").WorkflowActionDefin
27
27
  } | undefined;
28
28
  content?: string | undefined;
29
29
  iconURL?: string | undefined;
30
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
30
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", 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>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
37
+ connectionId: z.ZodString;
38
+ entityId: z.ZodString;
39
+ instanceId: z.ZodString;
40
+ }, z.core.$strip>, z.ZodObject<{
41
+ generic_api_key: z.ZodString;
42
+ }, z.core.$strip>>]>;
31
43
  //#endregion
32
44
  export { sliteUpdateTile };
33
45
  //# sourceMappingURL=update-tile.d.mts.map
@@ -19,7 +19,19 @@ declare const SliteVerifyNoteOutput: z.ZodObject<{
19
19
  declare const sliteVerifyNote: import("@keystrokehq/action").WorkflowActionDefinition<{
20
20
  noteId: string;
21
21
  until?: string | undefined;
22
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
22
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
29
+ connectionId: z.ZodString;
30
+ entityId: z.ZodString;
31
+ instanceId: z.ZodString;
32
+ }, z.core.$strip>, z.ZodObject<{
33
+ generic_api_key: z.ZodString;
34
+ }, z.core.$strip>>]>;
23
35
  //#endregion
24
36
  export { sliteVerifyNote };
25
37
  //# sourceMappingURL=verify-note.d.cts.map
@@ -19,7 +19,19 @@ declare const SliteVerifyNoteOutput: z.ZodObject<{
19
19
  declare const sliteVerifyNote: import("@keystrokehq/action").WorkflowActionDefinition<{
20
20
  noteId: string;
21
21
  until?: string | undefined;
22
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
22
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"slite", z.ZodObject<{
29
+ connectionId: z.ZodString;
30
+ entityId: z.ZodString;
31
+ instanceId: z.ZodString;
32
+ }, z.core.$strip>, z.ZodObject<{
33
+ generic_api_key: z.ZodString;
34
+ }, z.core.$strip>>]>;
23
35
  //#endregion
24
36
  export { sliteVerifyNote };
25
37
  //# sourceMappingURL=verify-note.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 slite = (0, require("@keystrokehq/keystroke/app").defineApp)({
4
+ const slite = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "slite",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: zod.z.string() }
5
8
  });
6
9
  //#endregion
7
10
  exports.slite = slite;
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 slite = defineApp({\n slug: \"slite\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,SAAA,uCAAA,CAAA,CAAA,UAAA,CAAkB;CAC7B,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 slite = defineApp({\n slug: \"slite\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,SAAA,GAAA,2BAAA,UAAA,CAAkB;CAC7B,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 slite: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const slite: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"slite", 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 { slite };
5
13
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,KAAA,6BAAK,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,KAAA,6BAAK,GAAA,+BAAA,UAAA,UAAA,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 slite: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
4
+ declare const slite: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"slite", 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 { slite };
5
13
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,KAAA,6BAAK,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,KAAA,6BAAK,GAAA,+BAAA,UAAA,UAAA,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 slite = defineApp({
4
5
  slug: "slite",
5
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential: { generic_api_key: z.string() }
6
8
  });
7
9
  //#endregion
8
10
  export { slite };
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 slite = defineApp({\n slug: \"slite\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,QAAQ,UAAU;CAC7B,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 slite = defineApp({\n slug: \"slite\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,QAAQ,UAAU;CAC7B,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const sliteCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/slite",
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": "Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \"Create a new key\" and save it immediately as it will only be displayed once."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sliteCatalog = {\n \"slug\": \"slite\",\n \"name\": \"Slite\",\n \"description\": \"Your company knowledge base, on autopilot\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/slite\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \\\"Create a new key\\\" and save it immediately as it will only be displayed once.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,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 sliteCatalog = {\n \"slug\": \"slite\",\n \"name\": \"Slite\",\n \"description\": \"Your company knowledge base, on autopilot\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/slite\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \\\"Create a new key\\\" and save it immediately as it will only be displayed once.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,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 sliteCatalog: {
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: "Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \"Create a new key\" and save it immediately as it will only be displayed once.";
@@ -9,7 +9,7 @@ declare const sliteCatalog: {
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: "Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \"Create a new key\" and save it immediately as it will only be displayed once.";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const sliteCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/slite",
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": "Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \"Create a new key\" and save it immediately as it will only be displayed once."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sliteCatalog = {\n \"slug\": \"slite\",\n \"name\": \"Slite\",\n \"description\": \"Your company knowledge base, on autopilot\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/slite\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \\\"Create a new key\\\" and save it immediately as it will only be displayed once.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,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 sliteCatalog = {\n \"slug\": \"slite\",\n \"name\": \"Slite\",\n \"description\": \"Your company knowledge base, on autopilot\",\n \"category\": \"Documents\",\n \"logo\": \"https://logos.composio.dev/api/slite\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in to your Slite account and open your account menu on the top left, then go to Settings > API. Click \\\"Create a new key\\\" and save it immediately as it will only be displayed once.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,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/slite",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"