@smartspace/api-client 0.1.0-pr.725.25889f6 → 0.1.0-pr.726.2288f90

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);
@@ -6,6 +6,7 @@
6
6
  */
7
7
  import type { ModelModelDeployment } from './modelModelDeployment';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
9
10
  import type { ModelIModelProperty } from './modelIModelProperty';
10
11
  export interface ModelModel {
11
12
  /** @nullable */
@@ -17,6 +18,7 @@ export interface ModelModel {
17
18
  /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
18
19
  id: string;
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
21
+ modelPublisher?: EnumsModelPublisher;
20
22
  name: string;
21
23
  properties: ModelIModelProperty[];
22
24
  }
@@ -6,6 +6,7 @@
6
6
  */
7
7
  import type { EnumsModelDeploymentStatus } from './enumsModelDeploymentStatus';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
9
10
  import type { ModelIModelProperty } from './modelIModelProperty';
10
11
  export interface ModelModelSummary {
11
12
  /** @nullable */
@@ -17,6 +18,7 @@ export interface ModelModelSummary {
17
18
  /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
18
19
  id: string;
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
21
+ modelPublisher?: EnumsModelPublisher;
20
22
  name: string;
21
23
  properties: ModelIModelProperty[];
22
24
  /** @nullable */
@@ -416,6 +416,21 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
416
416
  VertexAi: "VertexAi";
417
417
  AzureFoundry: "AzureFoundry";
418
418
  }>>;
419
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
420
+ OpenAi: "OpenAi";
421
+ HuggingFace: "HuggingFace";
422
+ Cohere: "Cohere";
423
+ Anthropic: "Anthropic";
424
+ Google: "Google";
425
+ Meta: "Meta";
426
+ Mistral: "Mistral";
427
+ Microsoft: "Microsoft";
428
+ DeepSeek: "DeepSeek";
429
+ XAi: "XAi";
430
+ Amazon: "Amazon";
431
+ Qwen: "Qwen";
432
+ Other: "Other";
433
+ }>>;
419
434
  name: zod.ZodString;
420
435
  properties: zod.ZodArray<zod.ZodObject<{
421
436
  name: zod.ZodString;
@@ -497,6 +512,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
497
512
  VertexAi: "VertexAi";
498
513
  AzureFoundry: "AzureFoundry";
499
514
  }>>;
515
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
516
+ OpenAi: "OpenAi";
517
+ HuggingFace: "HuggingFace";
518
+ Cohere: "Cohere";
519
+ Anthropic: "Anthropic";
520
+ Google: "Google";
521
+ Meta: "Meta";
522
+ Mistral: "Mistral";
523
+ Microsoft: "Microsoft";
524
+ DeepSeek: "DeepSeek";
525
+ XAi: "XAi";
526
+ Amazon: "Amazon";
527
+ Qwen: "Qwen";
528
+ Other: "Other";
529
+ }>>;
500
530
  name: zod.ZodString;
501
531
  properties: zod.ZodArray<zod.ZodObject<{
502
532
  name: zod.ZodString;
@@ -759,6 +789,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
759
789
  VertexAi: "VertexAi";
760
790
  AzureFoundry: "AzureFoundry";
761
791
  }>>;
792
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
793
+ OpenAi: "OpenAi";
794
+ HuggingFace: "HuggingFace";
795
+ Cohere: "Cohere";
796
+ Anthropic: "Anthropic";
797
+ Google: "Google";
798
+ Meta: "Meta";
799
+ Mistral: "Mistral";
800
+ Microsoft: "Microsoft";
801
+ DeepSeek: "DeepSeek";
802
+ XAi: "XAi";
803
+ Amazon: "Amazon";
804
+ Qwen: "Qwen";
805
+ Other: "Other";
806
+ }>>;
762
807
  name: zod.ZodString;
763
808
  properties: zod.ZodArray<zod.ZodObject<{
764
809
  name: zod.ZodString;
@@ -995,6 +1040,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
995
1040
  VertexAi: "VertexAi";
996
1041
  AzureFoundry: "AzureFoundry";
997
1042
  }>>;
1043
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
1044
+ OpenAi: "OpenAi";
1045
+ HuggingFace: "HuggingFace";
1046
+ Cohere: "Cohere";
1047
+ Anthropic: "Anthropic";
1048
+ Google: "Google";
1049
+ Meta: "Meta";
1050
+ Mistral: "Mistral";
1051
+ Microsoft: "Microsoft";
1052
+ DeepSeek: "DeepSeek";
1053
+ XAi: "XAi";
1054
+ Amazon: "Amazon";
1055
+ Qwen: "Qwen";
1056
+ Other: "Other";
1057
+ }>>;
998
1058
  name: zod.ZodString;
999
1059
  properties: zod.ZodArray<zod.ZodObject<{
1000
1060
  name: zod.ZodString;
@@ -390,6 +390,7 @@ exports.modelsGetModelsResponse = zod_1.default.object({
390
390
  "displayName": zod_1.default.string(),
391
391
  "id": zod_1.default.string().regex(exports.modelsGetModelsResponseDataItemIdRegExp),
392
392
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
393
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
393
394
  "name": zod_1.default.string(),
394
395
  "properties": zod_1.default.array(zod_1.default.object({
395
396
  "name": zod_1.default.string(),
@@ -443,6 +444,7 @@ exports.modelsGetModelResponse = zod_1.default.object({
443
444
  "displayName": zod_1.default.string(),
444
445
  "id": zod_1.default.string().regex(exports.modelsGetModelResponseIdRegExp),
445
446
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
447
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
446
448
  "name": zod_1.default.string(),
447
449
  "properties": zod_1.default.array(zod_1.default.object({
448
450
  "name": zod_1.default.string(),
@@ -662,6 +664,7 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
662
664
  "displayName": zod_1.default.string(),
663
665
  "id": zod_1.default.string().regex(exports.workSpacesGetGetResponseDataItemModelConfigurationsItemModelIdRegExp),
664
666
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
667
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
665
668
  "name": zod_1.default.string(),
666
669
  "properties": zod_1.default.array(zod_1.default.object({
667
670
  "name": zod_1.default.string(),
@@ -855,6 +858,7 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
855
858
  "displayName": zod_1.default.string(),
856
859
  "id": zod_1.default.string().regex(exports.workSpacesGetIdResponseModelConfigurationsItemModelIdRegExp),
857
860
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
861
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
858
862
  "name": zod_1.default.string(),
859
863
  "properties": zod_1.default.array(zod_1.default.object({
860
864
  "name": zod_1.default.string(),
@@ -6,6 +6,7 @@
6
6
  */
7
7
  import type { ModelModelDeployment } from './modelModelDeployment';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
9
10
  import type { ModelIModelProperty } from './modelIModelProperty';
10
11
  export interface ModelModel {
11
12
  /** @nullable */
@@ -17,6 +18,7 @@ export interface ModelModel {
17
18
  /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
18
19
  id: string;
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
21
+ modelPublisher?: EnumsModelPublisher;
20
22
  name: string;
21
23
  properties: ModelIModelProperty[];
22
24
  }
@@ -6,6 +6,7 @@
6
6
  */
7
7
  import type { EnumsModelDeploymentStatus } from './enumsModelDeploymentStatus';
8
8
  import type { EnumsModelDeploymentProviderType } from './enumsModelDeploymentProviderType';
9
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
9
10
  import type { ModelIModelProperty } from './modelIModelProperty';
10
11
  export interface ModelModelSummary {
11
12
  /** @nullable */
@@ -17,6 +18,7 @@ export interface ModelModelSummary {
17
18
  /** @pattern ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ */
18
19
  id: string;
19
20
  modelDeploymentProviderType?: EnumsModelDeploymentProviderType;
21
+ modelPublisher?: EnumsModelPublisher;
20
22
  name: string;
21
23
  properties: ModelIModelProperty[];
22
24
  /** @nullable */
@@ -1931,6 +1931,21 @@ export declare const modelsGetModelsResponse: zod.ZodObject<{
1931
1931
  VertexAi: "VertexAi";
1932
1932
  AzureFoundry: "AzureFoundry";
1933
1933
  }>>;
1934
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
1935
+ OpenAi: "OpenAi";
1936
+ HuggingFace: "HuggingFace";
1937
+ Cohere: "Cohere";
1938
+ Anthropic: "Anthropic";
1939
+ Google: "Google";
1940
+ Meta: "Meta";
1941
+ Mistral: "Mistral";
1942
+ Microsoft: "Microsoft";
1943
+ DeepSeek: "DeepSeek";
1944
+ XAi: "XAi";
1945
+ Amazon: "Amazon";
1946
+ Qwen: "Qwen";
1947
+ Other: "Other";
1948
+ }>>;
1934
1949
  name: zod.ZodString;
1935
1950
  properties: zod.ZodArray<zod.ZodObject<{
1936
1951
  name: zod.ZodString;
@@ -2069,6 +2084,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2069
2084
  VertexAi: "VertexAi";
2070
2085
  AzureFoundry: "AzureFoundry";
2071
2086
  }>>;
2087
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2088
+ OpenAi: "OpenAi";
2089
+ HuggingFace: "HuggingFace";
2090
+ Cohere: "Cohere";
2091
+ Anthropic: "Anthropic";
2092
+ Google: "Google";
2093
+ Meta: "Meta";
2094
+ Mistral: "Mistral";
2095
+ Microsoft: "Microsoft";
2096
+ DeepSeek: "DeepSeek";
2097
+ XAi: "XAi";
2098
+ Amazon: "Amazon";
2099
+ Qwen: "Qwen";
2100
+ Other: "Other";
2101
+ }>>;
2072
2102
  name: zod.ZodString;
2073
2103
  properties: zod.ZodArray<zod.ZodObject<{
2074
2104
  name: zod.ZodString;
@@ -2655,6 +2685,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
2655
2685
  VertexAi: "VertexAi";
2656
2686
  AzureFoundry: "AzureFoundry";
2657
2687
  }>>;
2688
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2689
+ OpenAi: "OpenAi";
2690
+ HuggingFace: "HuggingFace";
2691
+ Cohere: "Cohere";
2692
+ Anthropic: "Anthropic";
2693
+ Google: "Google";
2694
+ Meta: "Meta";
2695
+ Mistral: "Mistral";
2696
+ Microsoft: "Microsoft";
2697
+ DeepSeek: "DeepSeek";
2698
+ XAi: "XAi";
2699
+ Amazon: "Amazon";
2700
+ Qwen: "Qwen";
2701
+ Other: "Other";
2702
+ }>>;
2658
2703
  name: zod.ZodString;
2659
2704
  properties: zod.ZodArray<zod.ZodObject<{
2660
2705
  name: zod.ZodString;
@@ -2911,6 +2956,21 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
2911
2956
  VertexAi: "VertexAi";
2912
2957
  AzureFoundry: "AzureFoundry";
2913
2958
  }>>;
2959
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
2960
+ OpenAi: "OpenAi";
2961
+ HuggingFace: "HuggingFace";
2962
+ Cohere: "Cohere";
2963
+ Anthropic: "Anthropic";
2964
+ Google: "Google";
2965
+ Meta: "Meta";
2966
+ Mistral: "Mistral";
2967
+ Microsoft: "Microsoft";
2968
+ DeepSeek: "DeepSeek";
2969
+ XAi: "XAi";
2970
+ Amazon: "Amazon";
2971
+ Qwen: "Qwen";
2972
+ Other: "Other";
2973
+ }>>;
2914
2974
  name: zod.ZodString;
2915
2975
  properties: zod.ZodArray<zod.ZodObject<{
2916
2976
  name: zod.ZodString;
@@ -3152,6 +3212,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3152
3212
  VertexAi: "VertexAi";
3153
3213
  AzureFoundry: "AzureFoundry";
3154
3214
  }>>;
3215
+ modelPublisher: zod.ZodOptional<zod.ZodEnum<{
3216
+ OpenAi: "OpenAi";
3217
+ HuggingFace: "HuggingFace";
3218
+ Cohere: "Cohere";
3219
+ Anthropic: "Anthropic";
3220
+ Google: "Google";
3221
+ Meta: "Meta";
3222
+ Mistral: "Mistral";
3223
+ Microsoft: "Microsoft";
3224
+ DeepSeek: "DeepSeek";
3225
+ XAi: "XAi";
3226
+ Amazon: "Amazon";
3227
+ Qwen: "Qwen";
3228
+ Other: "Other";
3229
+ }>>;
3155
3230
  name: zod.ZodString;
3156
3231
  properties: zod.ZodArray<zod.ZodObject<{
3157
3232
  name: zod.ZodString;
@@ -1559,6 +1559,7 @@ exports.modelsGetModelsResponse = zod_1.default.object({
1559
1559
  "displayName": zod_1.default.string(),
1560
1560
  "id": zod_1.default.string().regex(exports.modelsGetModelsResponseDataItemIdRegExpOne),
1561
1561
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
1562
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
1562
1563
  "name": zod_1.default.string(),
1563
1564
  "properties": zod_1.default.array(zod_1.default.object({
1564
1565
  "name": zod_1.default.string(),
@@ -1646,6 +1647,7 @@ exports.modelsGetModelResponse = zod_1.default.object({
1646
1647
  "displayName": zod_1.default.string(),
1647
1648
  "id": zod_1.default.string().regex(exports.modelsGetModelResponseIdRegExpOne),
1648
1649
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
1650
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
1649
1651
  "name": zod_1.default.string(),
1650
1652
  "properties": zod_1.default.array(zod_1.default.object({
1651
1653
  "name": zod_1.default.string(),
@@ -2090,6 +2092,7 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
2090
2092
  "displayName": zod_1.default.string(),
2091
2093
  "id": zod_1.default.string().regex(exports.workSpacesGetGetResponseDataItemModelConfigurationsItemModelIdRegExpOne),
2092
2094
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
2095
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
2093
2096
  "name": zod_1.default.string(),
2094
2097
  "properties": zod_1.default.array(zod_1.default.object({
2095
2098
  "name": zod_1.default.string(),
@@ -2299,6 +2302,7 @@ exports.workSpacesPostResponse = zod_1.default.object({
2299
2302
  "displayName": zod_1.default.string(),
2300
2303
  "id": zod_1.default.string().regex(exports.workSpacesPostResponseModelConfigurationsItemModelIdRegExp),
2301
2304
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
2305
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
2302
2306
  "name": zod_1.default.string(),
2303
2307
  "properties": zod_1.default.array(zod_1.default.object({
2304
2308
  "name": zod_1.default.string(),
@@ -2497,6 +2501,7 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
2497
2501
  "displayName": zod_1.default.string(),
2498
2502
  "id": zod_1.default.string().regex(exports.workSpacesGetIdResponseModelConfigurationsItemModelIdRegExpOne),
2499
2503
  "modelDeploymentProviderType": zod_1.default.enum(['OpenAi', 'AzureOpenAi', 'HuggingFace', 'Cohere', 'Anthropic', 'Gemini', 'VertexAi', 'AzureFoundry']).optional(),
2504
+ "modelPublisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional(),
2500
2505
  "name": zod_1.default.string(),
2501
2506
  "properties": zod_1.default.array(zod_1.default.object({
2502
2507
  "name": zod_1.default.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartspace/api-client",
3
- "version": "0.1.0-pr.725.25889f6",
3
+ "version": "0.1.0-pr.726.2288f90",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",