@little-samo/samo-ai-sdk 0.4.6 → 0.4.7

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.
@@ -55,7 +55,7 @@ export interface LocationCanvasDto {
55
55
  lastModifierEntityType: EntityType;
56
56
  lastModifierEntityId: EntityId;
57
57
  text: string;
58
- isExplicit?: boolean;
58
+ showUpdates?: boolean;
59
59
  updatedAt: Date;
60
60
  }
61
61
  export interface LocationContentDto {
@@ -27,15 +27,15 @@ export type LocationPresetMessageDto = z.infer<typeof LocationPresetMessageSchem
27
27
  export declare const LocationPresetCanvasSchema: z.ZodObject<{
28
28
  name: z.ZodString;
29
29
  text: z.ZodString;
30
- isExplicit: z.ZodOptional<z.ZodBoolean>;
30
+ showUpdates: z.ZodOptional<z.ZodBoolean>;
31
31
  }, "strip", z.ZodTypeAny, {
32
32
  name: string;
33
33
  text: string;
34
- isExplicit?: boolean | undefined;
34
+ showUpdates?: boolean | undefined;
35
35
  }, {
36
36
  name: string;
37
37
  text: string;
38
- isExplicit?: boolean | undefined;
38
+ showUpdates?: boolean | undefined;
39
39
  }>;
40
40
  export type LocationPresetCanvasDto = z.infer<typeof LocationPresetCanvasSchema>;
41
41
  export interface LocationPresetDto {
@@ -15,6 +15,6 @@ exports.LocationPresetMessageSchema = zod_1.default.object({
15
15
  exports.LocationPresetCanvasSchema = zod_1.default.object({
16
16
  name: zod_1.default.string().max(32),
17
17
  text: zod_1.default.string().max(5000),
18
- isExplicit: zod_1.default.boolean().optional(),
18
+ showUpdates: zod_1.default.boolean().optional(),
19
19
  });
20
20
  //# sourceMappingURL=location.preset.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"location.preset.js","sourceRoot":"","sources":["../../../src/dto/locations/location.preset.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAsE;AACtE,8CAAoB;AAgBP,QAAA,2BAA2B,GAAG,aAAC,CAAC,MAAM,CAAC;IAClD,UAAU,EAAE,aAAC,CAAC,UAAU,CAAC,oBAAU,CAAC;IACpC,QAAQ,EAAE,aAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IAE3B,OAAO,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAMU,QAAA,0BAA0B,GAAG,aAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;IACxB,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;IAC1B,UAAU,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC"}
1
+ {"version":3,"file":"location.preset.js","sourceRoot":"","sources":["../../../src/dto/locations/location.preset.ts"],"names":[],"mappings":";;;;;;AAAA,kDAAsE;AACtE,8CAAoB;AAgBP,QAAA,2BAA2B,GAAG,aAAC,CAAC,MAAM,CAAC;IAClD,UAAU,EAAE,aAAC,CAAC,UAAU,CAAC,oBAAU,CAAC;IACpC,QAAQ,EAAE,aAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IAE3B,OAAO,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAMU,QAAA,0BAA0B,GAAG,aAAC,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC;IACxB,IAAI,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;IAC1B,WAAW,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACpC,CAAC,CAAC"}
@@ -155,15 +155,15 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
155
155
  }>, "many">>;
156
156
  }, "strict", z.ZodTypeAny, {
157
157
  name?: string | undefined;
158
- description?: string | undefined;
158
+ thumbnail?: string | null | undefined;
159
+ environment?: "CHAT" | "NOVEL" | undefined;
159
160
  core?: {
160
161
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
161
162
  sequential?: boolean | undefined;
162
163
  interval?: number | undefined;
163
164
  maxAgentExecutions?: number | null | undefined;
164
165
  } | undefined;
165
- thumbnail?: string | null | undefined;
166
- environment?: "CHAT" | "NOVEL" | undefined;
166
+ description?: string | undefined;
167
167
  rules?: string[] | undefined;
168
168
  canvases?: {
169
169
  name: string;
@@ -187,15 +187,15 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
187
187
  }[] | undefined;
188
188
  }, {
189
189
  name?: string | undefined;
190
- description?: string | undefined;
190
+ thumbnail?: string | null | undefined;
191
+ environment?: "CHAT" | "NOVEL" | undefined;
191
192
  core?: {
192
193
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
193
194
  sequential?: boolean | undefined;
194
195
  interval?: number | undefined;
195
196
  maxAgentExecutions?: number | null | undefined;
196
197
  } | undefined;
197
- thumbnail?: string | null | undefined;
198
- environment?: "CHAT" | "NOVEL" | undefined;
198
+ description?: string | undefined;
199
199
  rules?: string[] | undefined;
200
200
  canvases?: {
201
201
  name: string;
@@ -222,15 +222,15 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
222
222
  locationId: bigint;
223
223
  config: {
224
224
  name?: string | undefined;
225
- description?: string | undefined;
225
+ thumbnail?: string | null | undefined;
226
+ environment?: "CHAT" | "NOVEL" | undefined;
226
227
  core?: {
227
228
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
228
229
  sequential?: boolean | undefined;
229
230
  interval?: number | undefined;
230
231
  maxAgentExecutions?: number | null | undefined;
231
232
  } | undefined;
232
- thumbnail?: string | null | undefined;
233
- environment?: "CHAT" | "NOVEL" | undefined;
233
+ description?: string | undefined;
234
234
  rules?: string[] | undefined;
235
235
  canvases?: {
236
236
  name: string;
@@ -257,15 +257,15 @@ export declare const LocationUpdateConfigSchema: z.ZodObject<{
257
257
  locationId: bigint;
258
258
  config: {
259
259
  name?: string | undefined;
260
- description?: string | undefined;
260
+ thumbnail?: string | null | undefined;
261
+ environment?: "CHAT" | "NOVEL" | undefined;
261
262
  core?: {
262
263
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
263
264
  sequential?: boolean | undefined;
264
265
  interval?: number | undefined;
265
266
  maxAgentExecutions?: number | null | undefined;
266
267
  } | undefined;
267
- thumbnail?: string | null | undefined;
268
- environment?: "CHAT" | "NOVEL" | undefined;
268
+ description?: string | undefined;
269
269
  rules?: string[] | undefined;
270
270
  canvases?: {
271
271
  name: string;
@@ -376,8 +376,8 @@ export declare const PublishedLocationPresetsQuerySchema: z.ZodObject<{
376
376
  page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
377
377
  limit: z.ZodDefault<z.ZodNumber>;
378
378
  }, "strip", z.ZodTypeAny, {
379
- type: "NOVEL";
380
379
  limit: number;
380
+ type: "NOVEL";
381
381
  page: number;
382
382
  }, {
383
383
  type: "NOVEL";
@@ -500,15 +500,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
500
500
  }>, "many">>;
501
501
  }, "strip", z.ZodTypeAny, {
502
502
  name?: string | undefined;
503
- description?: string | undefined;
503
+ thumbnail?: string | null | undefined;
504
+ environment?: "CHAT" | "NOVEL" | undefined;
504
505
  core?: {
505
506
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
506
507
  sequential?: boolean | undefined;
507
508
  interval?: number | undefined;
508
509
  maxAgentExecutions?: number | null | undefined;
509
510
  } | undefined;
510
- thumbnail?: string | null | undefined;
511
- environment?: "CHAT" | "NOVEL" | undefined;
511
+ description?: string | undefined;
512
512
  rules?: string[] | undefined;
513
513
  canvases?: {
514
514
  name: string;
@@ -532,15 +532,15 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
532
532
  }[] | undefined;
533
533
  }, {
534
534
  name?: string | undefined;
535
- description?: string | undefined;
535
+ thumbnail?: string | null | undefined;
536
+ environment?: "CHAT" | "NOVEL" | undefined;
536
537
  core?: {
537
538
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
538
539
  sequential?: boolean | undefined;
539
540
  interval?: number | undefined;
540
541
  maxAgentExecutions?: number | null | undefined;
541
542
  } | undefined;
542
- thumbnail?: string | null | undefined;
543
- environment?: "CHAT" | "NOVEL" | undefined;
543
+ description?: string | undefined;
544
544
  rules?: string[] | undefined;
545
545
  canvases?: {
546
546
  name: string;
@@ -679,8 +679,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
679
679
  core?: {
680
680
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
681
681
  } | undefined;
682
- appearance?: string | undefined;
683
682
  rules?: string[] | undefined;
683
+ appearance?: string | undefined;
684
684
  avatar?: string | undefined;
685
685
  referenceAvatar?: string | undefined;
686
686
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -714,8 +714,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
714
714
  core?: {
715
715
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
716
716
  } | undefined;
717
- appearance?: string | undefined;
718
717
  rules?: string[] | undefined;
718
+ appearance?: string | undefined;
719
719
  avatar?: string | undefined;
720
720
  referenceAvatar?: string | undefined;
721
721
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -748,23 +748,23 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
748
748
  }, "strip", z.ZodTypeAny, {
749
749
  presetDescription: string;
750
750
  presetShortDescription: string;
751
- name?: string | undefined;
752
751
  locationId?: bigint | undefined;
752
+ name?: string | undefined;
753
753
  visibility?: "private" | "public" | "publish" | undefined;
754
754
  hashtags?: string[] | undefined;
755
755
  isAllowImport?: boolean | undefined;
756
756
  isSensitive?: boolean | undefined;
757
757
  locationConfig?: {
758
758
  name?: string | undefined;
759
- description?: string | undefined;
759
+ thumbnail?: string | null | undefined;
760
+ environment?: "CHAT" | "NOVEL" | undefined;
760
761
  core?: {
761
762
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
762
763
  sequential?: boolean | undefined;
763
764
  interval?: number | undefined;
764
765
  maxAgentExecutions?: number | null | undefined;
765
766
  } | undefined;
766
- thumbnail?: string | null | undefined;
767
- environment?: "CHAT" | "NOVEL" | undefined;
767
+ description?: string | undefined;
768
768
  rules?: string[] | undefined;
769
769
  canvases?: {
770
770
  name: string;
@@ -792,8 +792,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
792
792
  core?: {
793
793
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
794
794
  } | undefined;
795
- appearance?: string | undefined;
796
795
  rules?: string[] | undefined;
796
+ appearance?: string | undefined;
797
797
  avatar?: string | undefined;
798
798
  referenceAvatar?: string | undefined;
799
799
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -826,23 +826,23 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
826
826
  }, {
827
827
  presetDescription: string;
828
828
  presetShortDescription: string;
829
- name?: string | undefined;
830
829
  locationId?: bigint | undefined;
830
+ name?: string | undefined;
831
831
  visibility?: "private" | "public" | "publish" | undefined;
832
832
  hashtags?: string[] | undefined;
833
833
  isAllowImport?: boolean | undefined;
834
834
  isSensitive?: boolean | undefined;
835
835
  locationConfig?: {
836
836
  name?: string | undefined;
837
- description?: string | undefined;
837
+ thumbnail?: string | null | undefined;
838
+ environment?: "CHAT" | "NOVEL" | undefined;
838
839
  core?: {
839
840
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
840
841
  sequential?: boolean | undefined;
841
842
  interval?: number | undefined;
842
843
  maxAgentExecutions?: number | null | undefined;
843
844
  } | undefined;
844
- thumbnail?: string | null | undefined;
845
- environment?: "CHAT" | "NOVEL" | undefined;
845
+ description?: string | undefined;
846
846
  rules?: string[] | undefined;
847
847
  canvases?: {
848
848
  name: string;
@@ -870,8 +870,8 @@ export declare const CreateLocationPresetSchema: z.ZodObject<{
870
870
  core?: {
871
871
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
872
872
  } | undefined;
873
- appearance?: string | undefined;
874
873
  rules?: string[] | undefined;
874
+ appearance?: string | undefined;
875
875
  avatar?: string | undefined;
876
876
  referenceAvatar?: string | undefined;
877
877
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -945,15 +945,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
945
945
  canvases: z.ZodOptional<z.ZodArray<z.ZodObject<{
946
946
  name: z.ZodString;
947
947
  text: z.ZodString;
948
- isExplicit: z.ZodOptional<z.ZodBoolean>;
948
+ showUpdates: z.ZodOptional<z.ZodBoolean>;
949
949
  }, "strip", z.ZodTypeAny, {
950
950
  name: string;
951
951
  text: string;
952
- isExplicit?: boolean | undefined;
952
+ showUpdates?: boolean | undefined;
953
953
  }, {
954
954
  name: string;
955
955
  text: string;
956
- isExplicit?: boolean | undefined;
956
+ showUpdates?: boolean | undefined;
957
957
  }>, "many">>;
958
958
  messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
959
959
  entityType: z.ZodNativeEnum<{
@@ -1081,15 +1081,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1081
1081
  }>, "many">>;
1082
1082
  }, "strip", z.ZodTypeAny, {
1083
1083
  name?: string | undefined;
1084
- description?: string | undefined;
1084
+ thumbnail?: string | null | undefined;
1085
+ environment?: "CHAT" | "NOVEL" | undefined;
1085
1086
  core?: {
1086
1087
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1087
1088
  sequential?: boolean | undefined;
1088
1089
  interval?: number | undefined;
1089
1090
  maxAgentExecutions?: number | null | undefined;
1090
1091
  } | undefined;
1091
- thumbnail?: string | null | undefined;
1092
- environment?: "CHAT" | "NOVEL" | undefined;
1092
+ description?: string | undefined;
1093
1093
  rules?: string[] | undefined;
1094
1094
  canvases?: {
1095
1095
  name: string;
@@ -1113,15 +1113,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1113
1113
  }[] | undefined;
1114
1114
  }, {
1115
1115
  name?: string | undefined;
1116
- description?: string | undefined;
1116
+ thumbnail?: string | null | undefined;
1117
+ environment?: "CHAT" | "NOVEL" | undefined;
1117
1118
  core?: {
1118
1119
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1119
1120
  sequential?: boolean | undefined;
1120
1121
  interval?: number | undefined;
1121
1122
  maxAgentExecutions?: number | null | undefined;
1122
1123
  } | undefined;
1123
- thumbnail?: string | null | undefined;
1124
- environment?: "CHAT" | "NOVEL" | undefined;
1124
+ description?: string | undefined;
1125
1125
  rules?: string[] | undefined;
1126
1126
  canvases?: {
1127
1127
  name: string;
@@ -1260,8 +1260,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1260
1260
  core?: {
1261
1261
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1262
1262
  } | undefined;
1263
- appearance?: string | undefined;
1264
1263
  rules?: string[] | undefined;
1264
+ appearance?: string | undefined;
1265
1265
  avatar?: string | undefined;
1266
1266
  referenceAvatar?: string | undefined;
1267
1267
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -1295,8 +1295,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1295
1295
  core?: {
1296
1296
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1297
1297
  } | undefined;
1298
- appearance?: string | undefined;
1299
1298
  rules?: string[] | undefined;
1299
+ appearance?: string | undefined;
1300
1300
  avatar?: string | undefined;
1301
1301
  referenceAvatar?: string | undefined;
1302
1302
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -1332,7 +1332,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1332
1332
  canvases?: {
1333
1333
  name: string;
1334
1334
  text: string;
1335
- isExplicit?: boolean | undefined;
1335
+ showUpdates?: boolean | undefined;
1336
1336
  }[] | undefined;
1337
1337
  visibility?: "private" | "public" | "publish" | undefined;
1338
1338
  presetDescription?: string | undefined;
@@ -1342,15 +1342,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1342
1342
  isSensitive?: boolean | undefined;
1343
1343
  locationConfig?: {
1344
1344
  name?: string | undefined;
1345
- description?: string | undefined;
1345
+ thumbnail?: string | null | undefined;
1346
+ environment?: "CHAT" | "NOVEL" | undefined;
1346
1347
  core?: {
1347
1348
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1348
1349
  sequential?: boolean | undefined;
1349
1350
  interval?: number | undefined;
1350
1351
  maxAgentExecutions?: number | null | undefined;
1351
1352
  } | undefined;
1352
- thumbnail?: string | null | undefined;
1353
- environment?: "CHAT" | "NOVEL" | undefined;
1353
+ description?: string | undefined;
1354
1354
  rules?: string[] | undefined;
1355
1355
  canvases?: {
1356
1356
  name: string;
@@ -1378,8 +1378,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1378
1378
  core?: {
1379
1379
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1380
1380
  } | undefined;
1381
- appearance?: string | undefined;
1382
1381
  rules?: string[] | undefined;
1382
+ appearance?: string | undefined;
1383
1383
  avatar?: string | undefined;
1384
1384
  referenceAvatar?: string | undefined;
1385
1385
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -1427,7 +1427,7 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1427
1427
  canvases?: {
1428
1428
  name: string;
1429
1429
  text: string;
1430
- isExplicit?: boolean | undefined;
1430
+ showUpdates?: boolean | undefined;
1431
1431
  }[] | undefined;
1432
1432
  visibility?: "private" | "public" | "publish" | undefined;
1433
1433
  presetDescription?: string | undefined;
@@ -1437,15 +1437,15 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1437
1437
  isSensitive?: boolean | undefined;
1438
1438
  locationConfig?: {
1439
1439
  name?: string | undefined;
1440
- description?: string | undefined;
1440
+ thumbnail?: string | null | undefined;
1441
+ environment?: "CHAT" | "NOVEL" | undefined;
1441
1442
  core?: {
1442
1443
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1443
1444
  sequential?: boolean | undefined;
1444
1445
  interval?: number | undefined;
1445
1446
  maxAgentExecutions?: number | null | undefined;
1446
1447
  } | undefined;
1447
- thumbnail?: string | null | undefined;
1448
- environment?: "CHAT" | "NOVEL" | undefined;
1448
+ description?: string | undefined;
1449
1449
  rules?: string[] | undefined;
1450
1450
  canvases?: {
1451
1451
  name: string;
@@ -1473,8 +1473,8 @@ export declare const UpdateLocationPresetBodySchema: z.ZodObject<{
1473
1473
  core?: {
1474
1474
  name: "evaluate_and_actions" | "execute_actions" | "response_every_message" | "no_action";
1475
1475
  } | undefined;
1476
- appearance?: string | undefined;
1477
1476
  rules?: string[] | undefined;
1477
+ appearance?: string | undefined;
1478
1478
  avatar?: string | undefined;
1479
1479
  referenceAvatar?: string | undefined;
1480
1480
  llmPreset?: "free" | "gemini-low" | "gemini-medium" | "gemini-high" | "openai-low" | "openai-medium" | "xai-low" | "xai-medium" | undefined;
@@ -1836,15 +1836,15 @@ export declare const CreateLocationSchema: z.ZodObject<{
1836
1836
  }>, "many">>;
1837
1837
  }, "strict", z.ZodTypeAny, {
1838
1838
  name?: string | undefined;
1839
- description?: string | undefined;
1839
+ thumbnail?: string | null | undefined;
1840
+ environment?: "CHAT" | "NOVEL" | undefined;
1840
1841
  core?: {
1841
1842
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1842
1843
  sequential?: boolean | undefined;
1843
1844
  interval?: number | undefined;
1844
1845
  maxAgentExecutions?: number | null | undefined;
1845
1846
  } | undefined;
1846
- thumbnail?: string | null | undefined;
1847
- environment?: "CHAT" | "NOVEL" | undefined;
1847
+ description?: string | undefined;
1848
1848
  rules?: string[] | undefined;
1849
1849
  canvases?: {
1850
1850
  name: string;
@@ -1868,15 +1868,15 @@ export declare const CreateLocationSchema: z.ZodObject<{
1868
1868
  }[] | undefined;
1869
1869
  }, {
1870
1870
  name?: string | undefined;
1871
- description?: string | undefined;
1871
+ thumbnail?: string | null | undefined;
1872
+ environment?: "CHAT" | "NOVEL" | undefined;
1872
1873
  core?: {
1873
1874
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1874
1875
  sequential?: boolean | undefined;
1875
1876
  interval?: number | undefined;
1876
1877
  maxAgentExecutions?: number | null | undefined;
1877
1878
  } | undefined;
1878
- thumbnail?: string | null | undefined;
1879
- environment?: "CHAT" | "NOVEL" | undefined;
1879
+ description?: string | undefined;
1880
1880
  rules?: string[] | undefined;
1881
1881
  canvases?: {
1882
1882
  name: string;
@@ -1906,15 +1906,15 @@ export declare const CreateLocationSchema: z.ZodObject<{
1906
1906
  }, "strip", z.ZodTypeAny, {
1907
1907
  config: {
1908
1908
  name?: string | undefined;
1909
- description?: string | undefined;
1909
+ thumbnail?: string | null | undefined;
1910
+ environment?: "CHAT" | "NOVEL" | undefined;
1910
1911
  core?: {
1911
1912
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1912
1913
  sequential?: boolean | undefined;
1913
1914
  interval?: number | undefined;
1914
1915
  maxAgentExecutions?: number | null | undefined;
1915
1916
  } | undefined;
1916
- thumbnail?: string | null | undefined;
1917
- environment?: "CHAT" | "NOVEL" | undefined;
1917
+ description?: string | undefined;
1918
1918
  rules?: string[] | undefined;
1919
1919
  canvases?: {
1920
1920
  name: string;
@@ -1941,15 +1941,15 @@ export declare const CreateLocationSchema: z.ZodObject<{
1941
1941
  }, {
1942
1942
  config: {
1943
1943
  name?: string | undefined;
1944
- description?: string | undefined;
1944
+ thumbnail?: string | null | undefined;
1945
+ environment?: "CHAT" | "NOVEL" | undefined;
1945
1946
  core?: {
1946
1947
  name: "round_robin" | "update_forever" | "update_once" | "update_until_idle";
1947
1948
  sequential?: boolean | undefined;
1948
1949
  interval?: number | undefined;
1949
1950
  maxAgentExecutions?: number | null | undefined;
1950
1951
  } | undefined;
1951
- thumbnail?: string | null | undefined;
1952
- environment?: "CHAT" | "NOVEL" | undefined;
1952
+ description?: string | undefined;
1953
1953
  rules?: string[] | undefined;
1954
1954
  canvases?: {
1955
1955
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@little-samo/samo-ai-sdk",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "SamoAI SDK",
5
5
  "license": "MIT",
6
6
  "repository": {