@smartspace/api-client 0.1.0-pr.722.672289f → 0.1.0-pr.724.ee94c3f

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.
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Chat API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export type EnumsModelPublisher = typeof EnumsModelPublisher[keyof typeof EnumsModelPublisher];
8
+ export declare const EnumsModelPublisher: {
9
+ readonly OpenAi: "OpenAi";
10
+ readonly Anthropic: "Anthropic";
11
+ readonly Google: "Google";
12
+ readonly Meta: "Meta";
13
+ readonly Mistral: "Mistral";
14
+ readonly Microsoft: "Microsoft";
15
+ readonly DeepSeek: "DeepSeek";
16
+ readonly Cohere: "Cohere";
17
+ readonly XAi: "XAi";
18
+ readonly HuggingFace: "HuggingFace";
19
+ readonly Amazon: "Amazon";
20
+ readonly Qwen: "Qwen";
21
+ readonly Other: "Other";
22
+ };
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Chat API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.EnumsModelPublisher = void 0;
10
+ // eslint-disable-next-line @typescript-eslint/no-redeclare
11
+ exports.EnumsModelPublisher = {
12
+ OpenAi: 'OpenAi',
13
+ Anthropic: 'Anthropic',
14
+ Google: 'Google',
15
+ Meta: 'Meta',
16
+ Mistral: 'Mistral',
17
+ Microsoft: 'Microsoft',
18
+ DeepSeek: 'DeepSeek',
19
+ Cohere: 'Cohere',
20
+ XAi: 'XAi',
21
+ HuggingFace: 'HuggingFace',
22
+ Amazon: 'Amazon',
23
+ Qwen: 'Qwen',
24
+ Other: 'Other',
25
+ };
@@ -26,6 +26,7 @@ export * from './enumsModelDeploymentProviderType';
26
26
  export * from './enumsModelDeploymentStatus';
27
27
  export * from './enumsModelDeploymentStepName';
28
28
  export * from './enumsModelPropertyType';
29
+ export * from './enumsModelPublisher';
29
30
  export * from './enumsModelRole';
30
31
  export * from './enumsNotificationType';
31
32
  export * from './enumsVirtualMachineServerType';
@@ -42,6 +42,7 @@ __exportStar(require("./enumsModelDeploymentProviderType"), exports);
42
42
  __exportStar(require("./enumsModelDeploymentStatus"), exports);
43
43
  __exportStar(require("./enumsModelDeploymentStepName"), exports);
44
44
  __exportStar(require("./enumsModelPropertyType"), exports);
45
+ __exportStar(require("./enumsModelPublisher"), exports);
45
46
  __exportStar(require("./enumsModelRole"), exports);
46
47
  __exportStar(require("./enumsNotificationType"), exports);
47
48
  __exportStar(require("./enumsVirtualMachineServerType"), exports);
@@ -7,6 +7,7 @@
7
7
  import type { ModelModelDeployment } from './modelModelDeployment';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
9
  import type { ModelIModelProperty } from './modelIModelProperty';
10
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
10
11
  export interface ModelModel {
11
12
  /** @nullable */
12
13
  createdAt?: string | null;
@@ -19,4 +20,5 @@ export interface ModelModel {
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
20
21
  name: string;
21
22
  properties: ModelIModelProperty[];
23
+ publisher?: EnumsModelPublisher;
22
24
  }
@@ -7,6 +7,7 @@
7
7
  import type { EnumsModelDeploymentStatus } from './enumsModelDeploymentStatus';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
9
  import type { ModelIModelProperty } from './modelIModelProperty';
10
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
10
11
  export interface ModelModelSummary {
11
12
  /** @nullable */
12
13
  createdAt?: string | null;
@@ -19,6 +20,7 @@ export interface ModelModelSummary {
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
20
21
  name: string;
21
22
  properties: ModelIModelProperty[];
23
+ publisher?: EnumsModelPublisher;
22
24
  /** @nullable */
23
25
  virtualMachineUrl?: string | null;
24
26
  }
@@ -425,6 +425,21 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
425
425
  String: "String";
426
426
  }>;
427
427
  }, zod.core.$strip>>;
428
+ publisher: zod.ZodOptional<zod.ZodEnum<{
429
+ OpenAi: "OpenAi";
430
+ HuggingFace: "HuggingFace";
431
+ Cohere: "Cohere";
432
+ Anthropic: "Anthropic";
433
+ Google: "Google";
434
+ Meta: "Meta";
435
+ Mistral: "Mistral";
436
+ Microsoft: "Microsoft";
437
+ DeepSeek: "DeepSeek";
438
+ XAi: "XAi";
439
+ Amazon: "Amazon";
440
+ Qwen: "Qwen";
441
+ Other: "Other";
442
+ }>>;
428
443
  virtualMachineUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
429
444
  }, zod.core.$strip>>;
430
445
  total: zod.ZodNumber;
@@ -506,6 +521,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
506
521
  String: "String";
507
522
  }>;
508
523
  }, zod.core.$strip>>;
524
+ publisher: zod.ZodOptional<zod.ZodEnum<{
525
+ OpenAi: "OpenAi";
526
+ HuggingFace: "HuggingFace";
527
+ Cohere: "Cohere";
528
+ Anthropic: "Anthropic";
529
+ Google: "Google";
530
+ Meta: "Meta";
531
+ Mistral: "Mistral";
532
+ Microsoft: "Microsoft";
533
+ DeepSeek: "DeepSeek";
534
+ XAi: "XAi";
535
+ Amazon: "Amazon";
536
+ Qwen: "Qwen";
537
+ Other: "Other";
538
+ }>>;
509
539
  }, zod.core.$strip>;
510
540
  /**
511
541
  * @summary Retrieve notifications for user login.
@@ -768,6 +798,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
768
798
  String: "String";
769
799
  }>;
770
800
  }, zod.core.$strip>>;
801
+ publisher: zod.ZodOptional<zod.ZodEnum<{
802
+ OpenAi: "OpenAi";
803
+ HuggingFace: "HuggingFace";
804
+ Cohere: "Cohere";
805
+ Anthropic: "Anthropic";
806
+ Google: "Google";
807
+ Meta: "Meta";
808
+ Mistral: "Mistral";
809
+ Microsoft: "Microsoft";
810
+ DeepSeek: "DeepSeek";
811
+ XAi: "XAi";
812
+ Amazon: "Amazon";
813
+ Qwen: "Qwen";
814
+ Other: "Other";
815
+ }>>;
771
816
  }, zod.core.$strip>;
772
817
  prePrompt: zod.ZodString;
773
818
  presencePenalty: zod.ZodNumber;
@@ -1004,6 +1049,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
1004
1049
  String: "String";
1005
1050
  }>;
1006
1051
  }, zod.core.$strip>>;
1052
+ publisher: zod.ZodOptional<zod.ZodEnum<{
1053
+ OpenAi: "OpenAi";
1054
+ HuggingFace: "HuggingFace";
1055
+ Cohere: "Cohere";
1056
+ Anthropic: "Anthropic";
1057
+ Google: "Google";
1058
+ Meta: "Meta";
1059
+ Mistral: "Mistral";
1060
+ Microsoft: "Microsoft";
1061
+ DeepSeek: "DeepSeek";
1062
+ XAi: "XAi";
1063
+ Amazon: "Amazon";
1064
+ Qwen: "Qwen";
1065
+ Other: "Other";
1066
+ }>>;
1007
1067
  }, zod.core.$strip>;
1008
1068
  prePrompt: zod.ZodString;
1009
1069
  presencePenalty: zod.ZodNumber;
@@ -395,6 +395,7 @@ exports.modelsGetModelsResponse = zod_1.default.object({
395
395
  "name": zod_1.default.string(),
396
396
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
397
397
  })),
398
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
398
399
  "virtualMachineUrl": zod_1.default.string().nullish()
399
400
  })),
400
401
  "total": zod_1.default.number()
@@ -447,7 +448,8 @@ exports.modelsGetModelResponse = zod_1.default.object({
447
448
  "properties": zod_1.default.array(zod_1.default.object({
448
449
  "name": zod_1.default.string(),
449
450
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
450
- }))
451
+ })),
452
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
451
453
  });
452
454
  /**
453
455
  * @summary Retrieve notifications for user login.
@@ -666,7 +668,8 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
666
668
  "properties": zod_1.default.array(zod_1.default.object({
667
669
  "name": zod_1.default.string(),
668
670
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
669
- }))
671
+ })),
672
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
670
673
  }),
671
674
  "prePrompt": zod_1.default.string(),
672
675
  "presencePenalty": zod_1.default.number(),
@@ -859,7 +862,8 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
859
862
  "properties": zod_1.default.array(zod_1.default.object({
860
863
  "name": zod_1.default.string(),
861
864
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
862
- }))
865
+ })),
866
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
863
867
  }),
864
868
  "prePrompt": zod_1.default.string(),
865
869
  "presencePenalty": zod_1.default.number(),
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Generated by orval v7.13.2 🍺
3
+ * Do not edit manually.
4
+ * SmartSpace Admin API
5
+ * OpenAPI spec version: v1
6
+ */
7
+ export type EnumsModelPublisher = typeof EnumsModelPublisher[keyof typeof EnumsModelPublisher];
8
+ export declare const EnumsModelPublisher: {
9
+ readonly OpenAi: "OpenAi";
10
+ readonly Anthropic: "Anthropic";
11
+ readonly Google: "Google";
12
+ readonly Meta: "Meta";
13
+ readonly Mistral: "Mistral";
14
+ readonly Microsoft: "Microsoft";
15
+ readonly DeepSeek: "DeepSeek";
16
+ readonly Cohere: "Cohere";
17
+ readonly XAi: "XAi";
18
+ readonly HuggingFace: "HuggingFace";
19
+ readonly Amazon: "Amazon";
20
+ readonly Qwen: "Qwen";
21
+ readonly Other: "Other";
22
+ };
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by orval v7.13.2 🍺
4
+ * Do not edit manually.
5
+ * SmartSpace Admin API
6
+ * OpenAPI spec version: v1
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.EnumsModelPublisher = void 0;
10
+ // eslint-disable-next-line @typescript-eslint/no-redeclare
11
+ exports.EnumsModelPublisher = {
12
+ OpenAi: 'OpenAi',
13
+ Anthropic: 'Anthropic',
14
+ Google: 'Google',
15
+ Meta: 'Meta',
16
+ Mistral: 'Mistral',
17
+ Microsoft: 'Microsoft',
18
+ DeepSeek: 'DeepSeek',
19
+ Cohere: 'Cohere',
20
+ XAi: 'XAi',
21
+ HuggingFace: 'HuggingFace',
22
+ Amazon: 'Amazon',
23
+ Qwen: 'Qwen',
24
+ Other: 'Other',
25
+ };
@@ -94,6 +94,7 @@ export * from './enumsModelDeploymentProviderType';
94
94
  export * from './enumsModelDeploymentStatus';
95
95
  export * from './enumsModelDeploymentStepName';
96
96
  export * from './enumsModelPropertyType';
97
+ export * from './enumsModelPublisher';
97
98
  export * from './enumsModelRole';
98
99
  export * from './enumsNotificationType';
99
100
  export * from './enumsPermissions';
@@ -110,6 +110,7 @@ __exportStar(require("./enumsModelDeploymentProviderType"), exports);
110
110
  __exportStar(require("./enumsModelDeploymentStatus"), exports);
111
111
  __exportStar(require("./enumsModelDeploymentStepName"), exports);
112
112
  __exportStar(require("./enumsModelPropertyType"), exports);
113
+ __exportStar(require("./enumsModelPublisher"), exports);
113
114
  __exportStar(require("./enumsModelRole"), exports);
114
115
  __exportStar(require("./enumsNotificationType"), exports);
115
116
  __exportStar(require("./enumsPermissions"), exports);
@@ -7,6 +7,7 @@
7
7
  import type { ModelModelDeployment } from './modelModelDeployment';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
9
  import type { ModelIModelProperty } from './modelIModelProperty';
10
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
10
11
  export interface ModelModel {
11
12
  /** @nullable */
12
13
  createdAt?: string | null;
@@ -19,4 +20,5 @@ export interface ModelModel {
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
20
21
  name: string;
21
22
  properties: ModelIModelProperty[];
23
+ publisher?: EnumsModelPublisher;
22
24
  }
@@ -7,6 +7,7 @@
7
7
  import type { EnumsModelDeploymentStatus } from './enumsModelDeploymentStatus';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
9
  import type { ModelIModelProperty } from './modelIModelProperty';
10
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
10
11
  export interface ModelModelSummary {
11
12
  /** @nullable */
12
13
  createdAt?: string | null;
@@ -19,6 +20,7 @@ export interface ModelModelSummary {
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
20
21
  name: string;
21
22
  properties: ModelIModelProperty[];
23
+ publisher?: EnumsModelPublisher;
22
24
  /** @nullable */
23
25
  virtualMachineUrl?: string | null;
24
26
  }
@@ -1940,6 +1940,21 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
1940
1940
  String: "String";
1941
1941
  }>;
1942
1942
  }, zod.core.$strip>>;
1943
+ publisher: zod.ZodOptional<zod.ZodEnum<{
1944
+ OpenAi: "OpenAi";
1945
+ HuggingFace: "HuggingFace";
1946
+ Cohere: "Cohere";
1947
+ Anthropic: "Anthropic";
1948
+ Google: "Google";
1949
+ Meta: "Meta";
1950
+ Mistral: "Mistral";
1951
+ Microsoft: "Microsoft";
1952
+ DeepSeek: "DeepSeek";
1953
+ XAi: "XAi";
1954
+ Amazon: "Amazon";
1955
+ Qwen: "Qwen";
1956
+ Other: "Other";
1957
+ }>>;
1943
1958
  virtualMachineUrl: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1944
1959
  }, zod.core.$strip>>;
1945
1960
  total: zod.ZodNumber;
@@ -2063,6 +2078,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2063
2078
  String: "String";
2064
2079
  }>;
2065
2080
  }, zod.core.$strip>>;
2081
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2082
+ OpenAi: "OpenAi";
2083
+ HuggingFace: "HuggingFace";
2084
+ Cohere: "Cohere";
2085
+ Anthropic: "Anthropic";
2086
+ Google: "Google";
2087
+ Meta: "Meta";
2088
+ Mistral: "Mistral";
2089
+ Microsoft: "Microsoft";
2090
+ DeepSeek: "DeepSeek";
2091
+ XAi: "XAi";
2092
+ Amazon: "Amazon";
2093
+ Qwen: "Qwen";
2094
+ Other: "Other";
2095
+ }>>;
2066
2096
  }, zod.core.$strip>;
2067
2097
  /**
2068
2098
  * @summary Updates or inserts a model with the specified ID.
@@ -2634,6 +2664,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
2634
2664
  String: "String";
2635
2665
  }>;
2636
2666
  }, zod.core.$strip>>;
2667
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2668
+ OpenAi: "OpenAi";
2669
+ HuggingFace: "HuggingFace";
2670
+ Cohere: "Cohere";
2671
+ Anthropic: "Anthropic";
2672
+ Google: "Google";
2673
+ Meta: "Meta";
2674
+ Mistral: "Mistral";
2675
+ Microsoft: "Microsoft";
2676
+ DeepSeek: "DeepSeek";
2677
+ XAi: "XAi";
2678
+ Amazon: "Amazon";
2679
+ Qwen: "Qwen";
2680
+ Other: "Other";
2681
+ }>>;
2637
2682
  }, zod.core.$strip>;
2638
2683
  prePrompt: zod.ZodString;
2639
2684
  presencePenalty: zod.ZodNumber;
@@ -2890,6 +2935,21 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
2890
2935
  String: "String";
2891
2936
  }>;
2892
2937
  }, zod.core.$strip>>;
2938
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2939
+ OpenAi: "OpenAi";
2940
+ HuggingFace: "HuggingFace";
2941
+ Cohere: "Cohere";
2942
+ Anthropic: "Anthropic";
2943
+ Google: "Google";
2944
+ Meta: "Meta";
2945
+ Mistral: "Mistral";
2946
+ Microsoft: "Microsoft";
2947
+ DeepSeek: "DeepSeek";
2948
+ XAi: "XAi";
2949
+ Amazon: "Amazon";
2950
+ Qwen: "Qwen";
2951
+ Other: "Other";
2952
+ }>>;
2893
2953
  }, zod.core.$strip>;
2894
2954
  prePrompt: zod.ZodString;
2895
2955
  presencePenalty: zod.ZodNumber;
@@ -3131,6 +3191,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3131
3191
  String: "String";
3132
3192
  }>;
3133
3193
  }, zod.core.$strip>>;
3194
+ publisher: zod.ZodOptional<zod.ZodEnum<{
3195
+ OpenAi: "OpenAi";
3196
+ HuggingFace: "HuggingFace";
3197
+ Cohere: "Cohere";
3198
+ Anthropic: "Anthropic";
3199
+ Google: "Google";
3200
+ Meta: "Meta";
3201
+ Mistral: "Mistral";
3202
+ Microsoft: "Microsoft";
3203
+ DeepSeek: "DeepSeek";
3204
+ XAi: "XAi";
3205
+ Amazon: "Amazon";
3206
+ Qwen: "Qwen";
3207
+ Other: "Other";
3208
+ }>>;
3134
3209
  }, zod.core.$strip>;
3135
3210
  prePrompt: zod.ZodString;
3136
3211
  presencePenalty: zod.ZodNumber;
@@ -1564,6 +1564,7 @@ exports.modelsGetModelsResponse = zod_1.default.object({
1564
1564
  "name": zod_1.default.string(),
1565
1565
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
1566
1566
  })),
1567
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
1567
1568
  "virtualMachineUrl": zod_1.default.string().nullish()
1568
1569
  })),
1569
1570
  "total": zod_1.default.number()
@@ -1649,7 +1650,8 @@ exports.modelsGetModelResponse = zod_1.default.object({
1649
1650
  "properties": zod_1.default.array(zod_1.default.object({
1650
1651
  "name": zod_1.default.string(),
1651
1652
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
1652
- }))
1653
+ })),
1654
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
1653
1655
  });
1654
1656
  /**
1655
1657
  * @summary Updates or inserts a model with the specified ID.
@@ -2092,7 +2094,8 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
2092
2094
  "properties": zod_1.default.array(zod_1.default.object({
2093
2095
  "name": zod_1.default.string(),
2094
2096
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2095
- }))
2097
+ })),
2098
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2096
2099
  }),
2097
2100
  "prePrompt": zod_1.default.string(),
2098
2101
  "presencePenalty": zod_1.default.number(),
@@ -2301,7 +2304,8 @@ exports.workSpacesPostResponse = zod_1.default.object({
2301
2304
  "properties": zod_1.default.array(zod_1.default.object({
2302
2305
  "name": zod_1.default.string(),
2303
2306
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2304
- }))
2307
+ })),
2308
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2305
2309
  }),
2306
2310
  "prePrompt": zod_1.default.string(),
2307
2311
  "presencePenalty": zod_1.default.number(),
@@ -2499,7 +2503,8 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
2499
2503
  "properties": zod_1.default.array(zod_1.default.object({
2500
2504
  "name": zod_1.default.string(),
2501
2505
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2502
- }))
2506
+ })),
2507
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2503
2508
  }),
2504
2509
  "prePrompt": zod_1.default.string(),
2505
2510
  "presencePenalty": zod_1.default.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartspace/api-client",
3
- "version": "0.1.0-pr.722.672289f",
3
+ "version": "0.1.0-pr.724.ee94c3f",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",