@purpleschool/gptbot 0.15.58-stage2 → 0.15.59-stage2

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.
@@ -22,7 +22,6 @@ export declare namespace GetPhotoSessionConfigCommand {
22
22
  png: z.ZodString;
23
23
  }, z.core.$strip>;
24
24
  }, z.core.$strip>;
25
- strategy: z.ZodEnum<typeof import("../../..").PHOTO_SESSION_STRATEGY>;
26
25
  maxInputLength: z.ZodNumber;
27
26
  params: z.ZodObject<{
28
27
  imageAttachment: z.ZodObject<{
@@ -1,4 +1,3 @@
1
1
  export * from './photo-session-model-type.enum';
2
- export * from './photo-session-strategy.enum';
3
2
  export * from './photo-session-look-type.enum';
4
3
  export * from './photo-session-group-status.enum';
@@ -15,6 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./photo-session-model-type.enum"), exports);
18
- __exportStar(require("./photo-session-strategy.enum"), exports);
19
18
  __exportStar(require("./photo-session-look-type.enum"), exports);
20
19
  __exportStar(require("./photo-session-group-status.enum"), exports);
@@ -25,7 +25,6 @@ export declare const PhotoSessionConfigSchema: z.ZodObject<{
25
25
  png: z.ZodString;
26
26
  }, z.core.$strip>;
27
27
  }, z.core.$strip>;
28
- strategy: z.ZodEnum<typeof import("../../..").PHOTO_SESSION_STRATEGY>;
29
28
  maxInputLength: z.ZodNumber;
30
29
  params: z.ZodObject<{
31
30
  imageAttachment: z.ZodObject<{
@@ -96,7 +95,6 @@ export declare const RawPhotoSessionConfigSchema: z.ZodObject<{
96
95
  png: z.ZodString;
97
96
  }, z.core.$strip>;
98
97
  }, z.core.$strip>;
99
- strategy: z.ZodEnum<typeof import("../../..").PHOTO_SESSION_STRATEGY>;
100
98
  maxInputLength: z.ZodNumber;
101
99
  params: z.ZodObject<{
102
100
  imageAttachment: z.ZodObject<{
@@ -1,4 +1,4 @@
1
- import { PHOTO_SESSION_STRATEGY, TOOL_MODEL_STATUS } from '../../../constants';
1
+ import { TOOL_MODEL_STATUS } from '../../../constants';
2
2
  import { z } from 'zod';
3
3
  export declare const PhotoSessionModelParamsSchema: z.ZodObject<{
4
4
  imageAttachment: z.ZodObject<{
@@ -43,7 +43,6 @@ export declare const RawPhotoSessionModelSchema: z.ZodObject<{
43
43
  png: z.ZodString;
44
44
  }, z.core.$strip>;
45
45
  }, z.core.$strip>;
46
- strategy: z.ZodEnum<typeof PHOTO_SESSION_STRATEGY>;
47
46
  maxInputLength: z.ZodNumber;
48
47
  params: z.ZodObject<{
49
48
  imageAttachment: z.ZodObject<{
@@ -86,7 +85,6 @@ export declare const PhotoSessionModelSchema: z.ZodObject<{
86
85
  png: z.ZodString;
87
86
  }, z.core.$strip>;
88
87
  }, z.core.$strip>;
89
- strategy: z.ZodEnum<typeof PHOTO_SESSION_STRATEGY>;
90
88
  maxInputLength: z.ZodNumber;
91
89
  params: z.ZodObject<{
92
90
  imageAttachment: z.ZodObject<{
@@ -34,7 +34,6 @@ exports.RawPhotoSessionModelSchema = zod_1.z.object({
34
34
  order: zod_1.z.number(),
35
35
  status: zod_1.z.nativeEnum(constants_1.TOOL_MODEL_STATUS),
36
36
  icons: icon_variants_schema_1.IconVariantsSchema,
37
- strategy: zod_1.z.nativeEnum(constants_1.PHOTO_SESSION_STRATEGY),
38
37
  maxInputLength: zod_1.z.number(),
39
38
  params: exports.PhotoSessionModelParamsSchema,
40
39
  pricingRules: exports.PhotoSessionModelPricingRulesSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpleschool/gptbot",
3
- "version": "0.15.58-stage2",
3
+ "version": "0.15.59-stage2",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -1,4 +0,0 @@
1
- export declare enum PHOTO_SESSION_STRATEGY {
2
- NANO_BANANA_CALLBACK = "NANO_BANANA_CALLBACK",
3
- OPENAI_IMAGE_2_GENERATION = "OPENAI_IMAGE_2_GENERATION"
4
- }
@@ -1,8 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PHOTO_SESSION_STRATEGY = void 0;
4
- var PHOTO_SESSION_STRATEGY;
5
- (function (PHOTO_SESSION_STRATEGY) {
6
- PHOTO_SESSION_STRATEGY["NANO_BANANA_CALLBACK"] = "NANO_BANANA_CALLBACK";
7
- PHOTO_SESSION_STRATEGY["OPENAI_IMAGE_2_GENERATION"] = "OPENAI_IMAGE_2_GENERATION";
8
- })(PHOTO_SESSION_STRATEGY || (exports.PHOTO_SESSION_STRATEGY = PHOTO_SESSION_STRATEGY = {}));