@keystrokehq/gan_ai 0.1.1 → 0.1.2

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 (43) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/get-avatar-video-inference-details.cjs +6 -6
  4. package/dist/actions/get-avatar-video-inference-details.cjs.map +1 -1
  5. package/dist/actions/get-avatar-video-inference-details.d.cts +9 -19
  6. package/dist/actions/get-avatar-video-inference-details.d.mts +9 -19
  7. package/dist/actions/get-avatar-video-inference-details.mjs +6 -6
  8. package/dist/actions/get-avatar-video-inference-details.mjs.map +1 -1
  9. package/dist/actions/get-photo-avatar-details.cjs +3 -3
  10. package/dist/actions/get-photo-avatar-details.cjs.map +1 -1
  11. package/dist/actions/get-photo-avatar-details.d.cts +6 -12
  12. package/dist/actions/get-photo-avatar-details.d.mts +6 -12
  13. package/dist/actions/get-photo-avatar-details.mjs +3 -3
  14. package/dist/actions/get-photo-avatar-details.mjs.map +1 -1
  15. package/dist/actions/get-photo-avatar-inference-details.cjs +5 -5
  16. package/dist/actions/get-photo-avatar-inference-details.cjs.map +1 -1
  17. package/dist/actions/get-photo-avatar-inference-details.d.cts +8 -21
  18. package/dist/actions/get-photo-avatar-inference-details.d.mts +8 -21
  19. package/dist/actions/get-photo-avatar-inference-details.mjs +5 -5
  20. package/dist/actions/get-photo-avatar-inference-details.mjs.map +1 -1
  21. package/dist/actions/list-avatar-videos.cjs +7 -7
  22. package/dist/actions/list-avatar-videos.cjs.map +1 -1
  23. package/dist/actions/list-avatar-videos.d.cts +13 -26
  24. package/dist/actions/list-avatar-videos.d.mts +13 -26
  25. package/dist/actions/list-avatar-videos.mjs +7 -7
  26. package/dist/actions/list-avatar-videos.mjs.map +1 -1
  27. package/dist/actions/list-photo-avatar-inferences.cjs +6 -6
  28. package/dist/actions/list-photo-avatar-inferences.cjs.map +1 -1
  29. package/dist/actions/list-photo-avatar-inferences.d.cts +12 -28
  30. package/dist/actions/list-photo-avatar-inferences.d.mts +12 -28
  31. package/dist/actions/list-photo-avatar-inferences.mjs +6 -6
  32. package/dist/actions/list-photo-avatar-inferences.mjs.map +1 -1
  33. package/dist/actions/list-photo-avatars.cjs +7 -7
  34. package/dist/actions/list-photo-avatars.cjs.map +1 -1
  35. package/dist/actions/list-photo-avatars.d.cts +8 -21
  36. package/dist/actions/list-photo-avatars.d.mts +8 -21
  37. package/dist/actions/list-photo-avatars.mjs +7 -7
  38. package/dist/actions/list-photo-avatars.mjs.map +1 -1
  39. package/dist/actions/login.d.cts +1 -4
  40. package/dist/actions/login.d.mts +1 -4
  41. package/dist/actions/tts.d.cts +1 -4
  42. package/dist/actions/tts.d.mts +1 -4
  43. package/package.json +1 -1
@@ -10,14 +10,14 @@ declare const GanAiListPhotoAvatarsInput: z.ZodObject<{
10
10
  start_datetime: z.ZodOptional<z.ZodString>;
11
11
  }, z.core.$strip>;
12
12
  declare const GanAiListPhotoAvatarsOutput: z.ZodObject<{
13
- avatars_list: z.ZodPreprocess<z.ZodOptional<z.ZodArray<z.ZodObject<{
14
- title: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
15
- status: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
13
+ avatars_list: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
14
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  avatar_id: z.ZodNullable<z.ZodString>;
17
- thumbnail: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
18
- base_video: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
19
- created_at: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
20
- avatar_webhook: z.ZodPreprocess<z.ZodOptional<z.ZodObject<{
17
+ thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ base_video: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ avatar_webhook: z.ZodOptional<z.ZodNullable<z.ZodObject<{
21
21
  webhook_url: z.ZodNullable<z.ZodString>;
22
22
  }, z.core.$strip>>>;
23
23
  }, z.core.$strip>>>>;
@@ -30,20 +30,7 @@ declare const ganAiListPhotoAvatars: import("@keystrokehq/action").WorkflowActio
30
30
  status?: string[] | undefined;
31
31
  end_datetime?: string | undefined;
32
32
  start_datetime?: string | undefined;
33
- }, {
34
- total_avatars: number | null;
35
- avatars_list?: {
36
- avatar_id: string | null;
37
- title?: string | undefined;
38
- status?: string | undefined;
39
- thumbnail?: string | undefined;
40
- base_video?: string | undefined;
41
- created_at?: string | undefined;
42
- avatar_webhook?: {
43
- webhook_url: string | null;
44
- } | undefined;
45
- }[] | undefined;
46
- }, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
34
  //#endregion
48
35
  export { ganAiListPhotoAvatars };
49
36
  //# sourceMappingURL=list-photo-avatars.d.cts.map
@@ -10,14 +10,14 @@ declare const GanAiListPhotoAvatarsInput: z.ZodObject<{
10
10
  start_datetime: z.ZodOptional<z.ZodString>;
11
11
  }, z.core.$strip>;
12
12
  declare const GanAiListPhotoAvatarsOutput: z.ZodObject<{
13
- avatars_list: z.ZodPreprocess<z.ZodOptional<z.ZodArray<z.ZodObject<{
14
- title: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
15
- status: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
13
+ avatars_list: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
14
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  avatar_id: z.ZodNullable<z.ZodString>;
17
- thumbnail: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
18
- base_video: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
19
- created_at: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
20
- avatar_webhook: z.ZodPreprocess<z.ZodOptional<z.ZodObject<{
17
+ thumbnail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ base_video: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
+ created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ avatar_webhook: z.ZodOptional<z.ZodNullable<z.ZodObject<{
21
21
  webhook_url: z.ZodNullable<z.ZodString>;
22
22
  }, z.core.$strip>>>;
23
23
  }, z.core.$strip>>>>;
@@ -30,20 +30,7 @@ declare const ganAiListPhotoAvatars: import("@keystrokehq/action").WorkflowActio
30
30
  status?: string[] | undefined;
31
31
  end_datetime?: string | undefined;
32
32
  start_datetime?: string | undefined;
33
- }, {
34
- total_avatars: number | null;
35
- avatars_list?: {
36
- avatar_id: string | null;
37
- title?: string | undefined;
38
- status?: string | undefined;
39
- thumbnail?: string | undefined;
40
- base_video?: string | undefined;
41
- created_at?: string | undefined;
42
- avatar_webhook?: {
43
- webhook_url: string | null;
44
- } | undefined;
45
- }[] | undefined;
46
- }, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
33
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
47
34
  //#endregion
48
35
  export { ganAiListPhotoAvatars };
49
36
  //# sourceMappingURL=list-photo-avatars.d.mts.map
@@ -11,13 +11,13 @@ const GanAiListPhotoAvatarsInput = z.object({
11
11
  }).describe("Request model for listing avatars with optional filters and pagination.");
12
12
  const GanAiListPhotoAvatars_AvatarWebhookSchema = z.object({ webhook_url: z.string().describe("Webhook URL registered for the avatar").nullable() });
13
13
  const GanAiListPhotoAvatars_AvatarListItemSchema = z.object({
14
- title: z.preprocess((value) => value === null ? void 0 : value, z.string().describe("User-defined title of the avatar.").optional()),
15
- status: z.preprocess((value) => value === null ? void 0 : value, z.string().describe("Current status of the avatar.").optional()),
14
+ title: z.string().describe("User-defined title of the avatar.").nullable().optional(),
15
+ status: z.string().describe("Current status of the avatar.").nullable().optional(),
16
16
  avatar_id: z.string().describe("Unique UUID of the avatar.").nullable(),
17
- thumbnail: z.preprocess((value) => value === null ? void 0 : value, z.string().describe("URL for the avatar thumbnail.").optional()),
18
- base_video: z.preprocess((value) => value === null ? void 0 : value, z.string().describe("URL for the avatar base video.").optional()),
19
- created_at: z.preprocess((value) => value === null ? void 0 : value, z.string().describe("ISO 8601 timestamp when the avatar was created.").optional()),
20
- avatar_webhook: z.preprocess((value) => value === null ? void 0 : value, GanAiListPhotoAvatars_AvatarWebhookSchema.optional())
17
+ thumbnail: z.string().describe("URL for the avatar thumbnail.").nullable().optional(),
18
+ base_video: z.string().describe("URL for the avatar base video.").nullable().optional(),
19
+ created_at: z.string().describe("ISO 8601 timestamp when the avatar was created.").nullable().optional(),
20
+ avatar_webhook: GanAiListPhotoAvatars_AvatarWebhookSchema.nullable().optional()
21
21
  }).describe("Representation of a single avatar record.");
22
22
  const ganAiListPhotoAvatars = action("GAN_AI_LIST_PHOTO_AVATARS", {
23
23
  slug: "gan_ai-list-photo-avatars",
@@ -25,7 +25,7 @@ const ganAiListPhotoAvatars = action("GAN_AI_LIST_PHOTO_AVATARS", {
25
25
  description: "Tool to list avatars. Use when you need a paginated collection of avatars with filters. Example: \"List the first 10 published avatars created after 2023-01-01\".",
26
26
  input: GanAiListPhotoAvatarsInput,
27
27
  output: z.object({
28
- avatars_list: z.preprocess((value) => value === null ? void 0 : value, z.array(GanAiListPhotoAvatars_AvatarListItemSchema).describe("Array of avatar objects (may be null if none).").optional()),
28
+ avatars_list: z.array(GanAiListPhotoAvatars_AvatarListItemSchema).describe("Array of avatar objects (may be null if none).").nullable().optional(),
29
29
  total_avatars: z.number().int().describe("Total number of avatars matching the query.").nullable()
30
30
  }).describe("Response model containing total count and list of avatars.")
31
31
  });
@@ -1 +1 @@
1
- {"version":3,"file":"list-photo-avatars.mjs","names":[],"sources":["../../src/actions/list-photo-avatars.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GanAiListPhotoAvatarsInput = z.object({\n skip: z.number().int().default(0).describe(\"Number of records to skip for pagination (offset). Default is 0.\").optional(),\n limit: z.number().int().default(10).describe(\"Maximum number of records to return. Default is 10.\").optional(),\n title: z.string().describe(\"Filter by avatar title (exact match).\").optional(),\n status: z.array(z.string()).describe(\"Filter by one or more statuses; common values include: consent_pending, processing, consent_failed, failed, published, deleted, draft.\").optional(),\n end_datetime: z.string().describe(\"ISO 8601 end timestamp for filtering (inclusive).\").optional(),\n start_datetime: z.string().describe(\"ISO 8601 start timestamp for filtering (inclusive).\").optional(),\n}).describe(\"Request model for listing avatars with optional filters and pagination.\");\nconst GanAiListPhotoAvatars_AvatarWebhookSchema = z.object({\n webhook_url: z.string().describe(\"Webhook URL registered for the avatar\").nullable(),\n});\nconst GanAiListPhotoAvatars_AvatarListItemSchema = z.object({\n title: z.preprocess((value) => (value === null ? undefined : value), z.string().describe(\"User-defined title of the avatar.\").optional()),\n status: z.preprocess((value) => (value === null ? undefined : value), z.string().describe(\"Current status of the avatar.\").optional()),\n avatar_id: z.string().describe(\"Unique UUID of the avatar.\").nullable(),\n thumbnail: z.preprocess((value) => (value === null ? undefined : value), z.string().describe(\"URL for the avatar thumbnail.\").optional()),\n base_video: z.preprocess((value) => (value === null ? undefined : value), z.string().describe(\"URL for the avatar base video.\").optional()),\n created_at: z.preprocess((value) => (value === null ? undefined : value), z.string().describe(\"ISO 8601 timestamp when the avatar was created.\").optional()),\n avatar_webhook: z.preprocess((value) => (value === null ? undefined : value), GanAiListPhotoAvatars_AvatarWebhookSchema.optional()),\n}).describe(\"Representation of a single avatar record.\");\nexport const GanAiListPhotoAvatarsOutput = z.object({\n avatars_list: z.preprocess((value) => (value === null ? undefined : value), z.array(GanAiListPhotoAvatars_AvatarListItemSchema).describe(\"Array of avatar objects (may be null if none).\").optional()),\n total_avatars: z.number().int().describe(\"Total number of avatars matching the query.\").nullable(),\n}).describe(\"Response model containing total count and list of avatars.\");\n\nexport const ganAiListPhotoAvatars = action(\"GAN_AI_LIST_PHOTO_AVATARS\", {\n slug: \"gan_ai-list-photo-avatars\",\n name: \"List Photo Avatars\",\n description: \"Tool to list avatars. Use when you need a paginated collection of avatars with filters. Example: \\\"List the first 10 published avatars created after 2023-01-01\\\".\",\n input: GanAiListPhotoAvatarsInput,\n output: GanAiListPhotoAvatarsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO;CACjD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CACxH,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAC7G,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC7E,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wIAAwI,CAAC,CAAC,SAAS;CACxL,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAChG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,SAAS,yEAAyE;AACrF,MAAM,4CAA4C,EAAE,OAAO,EACzD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,EACrF,CAAC;AACD,MAAM,6CAA6C,EAAE,OAAO;CAC1D,OAAO,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC;CACxI,QAAQ,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC;CACrI,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACtE,WAAW,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC;CACxI,YAAY,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC;CAC1I,YAAY,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC;CAC3J,gBAAgB,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,0CAA0C,SAAS,CAAC;AACpI,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAMvD,MAAa,wBAAwB,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVyC,EAAE,OAAO;EAClD,cAAc,EAAE,YAAY,UAAW,UAAU,OAAO,SAAY,OAAQ,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC;EACrM,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CACnG,CAAC,CAAC,CAAC,SAAS,4DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-photo-avatars.mjs","names":[],"sources":["../../src/actions/list-photo-avatars.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GanAiListPhotoAvatarsInput = z.object({\n skip: z.number().int().default(0).describe(\"Number of records to skip for pagination (offset). Default is 0.\").optional(),\n limit: z.number().int().default(10).describe(\"Maximum number of records to return. Default is 10.\").optional(),\n title: z.string().describe(\"Filter by avatar title (exact match).\").optional(),\n status: z.array(z.string()).describe(\"Filter by one or more statuses; common values include: consent_pending, processing, consent_failed, failed, published, deleted, draft.\").optional(),\n end_datetime: z.string().describe(\"ISO 8601 end timestamp for filtering (inclusive).\").optional(),\n start_datetime: z.string().describe(\"ISO 8601 start timestamp for filtering (inclusive).\").optional(),\n}).describe(\"Request model for listing avatars with optional filters and pagination.\");\nconst GanAiListPhotoAvatars_AvatarWebhookSchema = z.object({\n webhook_url: z.string().describe(\"Webhook URL registered for the avatar\").nullable(),\n});\nconst GanAiListPhotoAvatars_AvatarListItemSchema = z.object({\n title: z.string().describe(\"User-defined title of the avatar.\").nullable().optional(),\n status: z.string().describe(\"Current status of the avatar.\").nullable().optional(),\n avatar_id: z.string().describe(\"Unique UUID of the avatar.\").nullable(),\n thumbnail: z.string().describe(\"URL for the avatar thumbnail.\").nullable().optional(),\n base_video: z.string().describe(\"URL for the avatar base video.\").nullable().optional(),\n created_at: z.string().describe(\"ISO 8601 timestamp when the avatar was created.\").nullable().optional(),\n avatar_webhook: GanAiListPhotoAvatars_AvatarWebhookSchema.nullable().optional(),\n}).describe(\"Representation of a single avatar record.\");\nexport const GanAiListPhotoAvatarsOutput = z.object({\n avatars_list: z.array(GanAiListPhotoAvatars_AvatarListItemSchema).describe(\"Array of avatar objects (may be null if none).\").nullable().optional(),\n total_avatars: z.number().int().describe(\"Total number of avatars matching the query.\").nullable(),\n}).describe(\"Response model containing total count and list of avatars.\");\n\nexport const ganAiListPhotoAvatars = action(\"GAN_AI_LIST_PHOTO_AVATARS\", {\n slug: \"gan_ai-list-photo-avatars\",\n name: \"List Photo Avatars\",\n description: \"Tool to list avatars. Use when you need a paginated collection of avatars with filters. Example: \\\"List the first 10 published avatars created after 2023-01-01\\\".\",\n input: GanAiListPhotoAvatarsInput,\n output: GanAiListPhotoAvatarsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO;CACjD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CACxH,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAC7G,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC7E,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,wIAAwI,CAAC,CAAC,SAAS;CACxL,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAChG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,SAAS,yEAAyE;AACrF,MAAM,4CAA4C,EAAE,OAAO,EACzD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,EACrF,CAAC;AACD,MAAM,6CAA6C,EAAE,OAAO;CAC1D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACtE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,gBAAgB,0CAA0C,SAAS,CAAC,CAAC,SAAS;AAChF,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAMvD,MAAa,wBAAwB,OAAO,6BAA6B;CACvE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVyC,EAAE,OAAO;EAClD,cAAc,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjJ,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CACnG,CAAC,CAAC,CAAC,SAAS,4DAOF;AACV,CAAC"}
@@ -12,10 +12,7 @@ declare const GanAiLoginOutput: z.ZodObject<{
12
12
  declare const ganAiLogin: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  email: string;
14
14
  password: string;
15
- }, {
16
- access_token: string | null;
17
- refresh_token: string | null;
18
- }, 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]>, readonly [import("@keystrokehq/shared").Credential]>;
19
16
  //#endregion
20
17
  export { ganAiLogin };
21
18
  //# sourceMappingURL=login.d.cts.map
@@ -12,10 +12,7 @@ declare const GanAiLoginOutput: z.ZodObject<{
12
12
  declare const ganAiLogin: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  email: string;
14
14
  password: string;
15
- }, {
16
- access_token: string | null;
17
- refresh_token: string | null;
18
- }, 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]>, readonly [import("@keystrokehq/shared").Credential]>;
19
16
  //#endregion
20
17
  export { ganAiLogin };
21
18
  //# sourceMappingURL=login.d.mts.map
@@ -12,10 +12,7 @@ declare const GanAiTtsOutput: z.ZodObject<{
12
12
  declare const ganAiTts: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  text: string;
14
14
  voice_id: string;
15
- }, {
16
- audio: string | null;
17
- audio_size_bytes: number | null;
18
- }, 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]>, readonly [import("@keystrokehq/shared").Credential]>;
19
16
  //#endregion
20
17
  export { ganAiTts };
21
18
  //# sourceMappingURL=tts.d.cts.map
@@ -12,10 +12,7 @@ declare const GanAiTtsOutput: z.ZodObject<{
12
12
  declare const ganAiTts: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  text: string;
14
14
  voice_id: string;
15
- }, {
16
- audio: string | null;
17
- audio_size_bytes: number | null;
18
- }, 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]>, readonly [import("@keystrokehq/shared").Credential]>;
19
16
  //#endregion
20
17
  export { ganAiTts };
21
18
  //# sourceMappingURL=tts.d.mts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/gan_ai",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"