@smartspace/api-client 0.1.0-dev.bdaf06f → 0.1.0-dev.deb6d4c

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
  }
@@ -11,6 +11,8 @@ export interface NotificationNotification {
11
11
  /** @nullable */
12
12
  createdBy?: string | null;
13
13
  /** @nullable */
14
+ createdByUserId?: string | null;
15
+ /** @nullable */
14
16
  description?: string | null;
15
17
  /** @nullable */
16
18
  dismissedAt?: string | null;
@@ -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.
@@ -524,6 +554,7 @@ export declare const notificationGetResponse: zod.ZodObject<{
524
554
  data: zod.ZodArray<zod.ZodObject<{
525
555
  createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
526
556
  createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
557
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
527
558
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
528
559
  dismissedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
529
560
  id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -767,6 +798,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
767
798
  String: "String";
768
799
  }>;
769
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
+ }>>;
770
816
  }, zod.core.$strip>;
771
817
  prePrompt: zod.ZodString;
772
818
  presencePenalty: zod.ZodNumber;
@@ -1003,6 +1049,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
1003
1049
  String: "String";
1004
1050
  }>;
1005
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
+ }>>;
1006
1067
  }, zod.core.$strip>;
1007
1068
  prePrompt: zod.ZodString;
1008
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.
@@ -466,6 +468,7 @@ exports.notificationGetResponse = zod_1.default.object({
466
468
  "data": zod_1.default.array(zod_1.default.object({
467
469
  "createdAt": zod_1.default.iso.datetime({}).nullish(),
468
470
  "createdBy": zod_1.default.string().nullish(),
471
+ "createdByUserId": zod_1.default.string().nullish(),
469
472
  "description": zod_1.default.string().nullish(),
470
473
  "dismissedAt": zod_1.default.iso.datetime({}).nullish(),
471
474
  "id": zod_1.default.string().regex(exports.notificationGetResponseDataItemIdRegExp).nullish(),
@@ -665,7 +668,8 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
665
668
  "properties": zod_1.default.array(zod_1.default.object({
666
669
  "name": zod_1.default.string(),
667
670
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
668
- }))
671
+ })),
672
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
669
673
  }),
670
674
  "prePrompt": zod_1.default.string(),
671
675
  "presencePenalty": zod_1.default.number(),
@@ -858,7 +862,8 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
858
862
  "properties": zod_1.default.array(zod_1.default.object({
859
863
  "name": zod_1.default.string(),
860
864
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
861
- }))
865
+ })),
866
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
862
867
  }),
863
868
  "prePrompt": zod_1.default.string(),
864
869
  "presencePenalty": zod_1.default.number(),
@@ -5,9 +5,11 @@
5
5
  * OpenAPI spec version: v1
6
6
  */
7
7
  import type { CreateModelDeployment } from './createModelDeployment';
8
+ import type { EnumsModelPublisher } from './enumsModelPublisher';
8
9
  export interface CreateModel {
9
10
  deployment?: CreateModelDeployment;
10
11
  /** @nullable */
11
12
  displayName?: string | null;
12
13
  name: string;
14
+ publisher?: EnumsModelPublisher;
13
15
  }
@@ -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
  }
@@ -11,6 +11,8 @@ export interface NotificationNotification {
11
11
  /** @nullable */
12
12
  createdBy?: string | null;
13
13
  /** @nullable */
14
+ createdByUserId?: string | null;
15
+ /** @nullable */
14
16
  description?: string | null;
15
17
  /** @nullable */
16
18
  dismissedAt?: string | null;
@@ -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;
@@ -1978,6 +1993,21 @@ export declare const modelsCreateModelBody: zod.ZodObject<{
1978
1993
  }, zod.core.$strict>>;
1979
1994
  displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
1980
1995
  name: zod.ZodString;
1996
+ publisher: zod.ZodOptional<zod.ZodEnum<{
1997
+ OpenAi: "OpenAi";
1998
+ HuggingFace: "HuggingFace";
1999
+ Cohere: "Cohere";
2000
+ Anthropic: "Anthropic";
2001
+ Google: "Google";
2002
+ Meta: "Meta";
2003
+ Mistral: "Mistral";
2004
+ Microsoft: "Microsoft";
2005
+ DeepSeek: "DeepSeek";
2006
+ XAi: "XAi";
2007
+ Amazon: "Amazon";
2008
+ Qwen: "Qwen";
2009
+ Other: "Other";
2010
+ }>>;
1981
2011
  }, zod.core.$strict>;
1982
2012
  /**
1983
2013
  * @summary Deletes a model with the specified ID.
@@ -2063,6 +2093,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2063
2093
  String: "String";
2064
2094
  }>;
2065
2095
  }, zod.core.$strip>>;
2096
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2097
+ OpenAi: "OpenAi";
2098
+ HuggingFace: "HuggingFace";
2099
+ Cohere: "Cohere";
2100
+ Anthropic: "Anthropic";
2101
+ Google: "Google";
2102
+ Meta: "Meta";
2103
+ Mistral: "Mistral";
2104
+ Microsoft: "Microsoft";
2105
+ DeepSeek: "DeepSeek";
2106
+ XAi: "XAi";
2107
+ Amazon: "Amazon";
2108
+ Qwen: "Qwen";
2109
+ Other: "Other";
2110
+ }>>;
2066
2111
  }, zod.core.$strip>;
2067
2112
  /**
2068
2113
  * @summary Updates or inserts a model with the specified ID.
@@ -2102,6 +2147,21 @@ export declare const modelsUpsertModelBody: zod.ZodObject<{
2102
2147
  }, zod.core.$strict>>;
2103
2148
  displayName: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2104
2149
  name: zod.ZodString;
2150
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2151
+ OpenAi: "OpenAi";
2152
+ HuggingFace: "HuggingFace";
2153
+ Cohere: "Cohere";
2154
+ Anthropic: "Anthropic";
2155
+ Google: "Google";
2156
+ Meta: "Meta";
2157
+ Mistral: "Mistral";
2158
+ Microsoft: "Microsoft";
2159
+ DeepSeek: "DeepSeek";
2160
+ XAi: "XAi";
2161
+ Amazon: "Amazon";
2162
+ Qwen: "Qwen";
2163
+ Other: "Other";
2164
+ }>>;
2105
2165
  }, zod.core.$strict>;
2106
2166
  /**
2107
2167
  * @summary Retrieves the Docker logs for a specific deployment of a model.
@@ -2140,6 +2200,7 @@ export declare const notificationGetResponse: zod.ZodObject<{
2140
2200
  data: zod.ZodArray<zod.ZodObject<{
2141
2201
  createdAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2142
2202
  createdBy: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2203
+ createdByUserId: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2143
2204
  description: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
2144
2205
  dismissedAt: zod.ZodOptional<zod.ZodNullable<zod.ZodISODateTime>>;
2145
2206
  id: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
@@ -2633,6 +2694,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
2633
2694
  String: "String";
2634
2695
  }>;
2635
2696
  }, zod.core.$strip>>;
2697
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2698
+ OpenAi: "OpenAi";
2699
+ HuggingFace: "HuggingFace";
2700
+ Cohere: "Cohere";
2701
+ Anthropic: "Anthropic";
2702
+ Google: "Google";
2703
+ Meta: "Meta";
2704
+ Mistral: "Mistral";
2705
+ Microsoft: "Microsoft";
2706
+ DeepSeek: "DeepSeek";
2707
+ XAi: "XAi";
2708
+ Amazon: "Amazon";
2709
+ Qwen: "Qwen";
2710
+ Other: "Other";
2711
+ }>>;
2636
2712
  }, zod.core.$strip>;
2637
2713
  prePrompt: zod.ZodString;
2638
2714
  presencePenalty: zod.ZodNumber;
@@ -2889,6 +2965,21 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
2889
2965
  String: "String";
2890
2966
  }>;
2891
2967
  }, zod.core.$strip>>;
2968
+ publisher: zod.ZodOptional<zod.ZodEnum<{
2969
+ OpenAi: "OpenAi";
2970
+ HuggingFace: "HuggingFace";
2971
+ Cohere: "Cohere";
2972
+ Anthropic: "Anthropic";
2973
+ Google: "Google";
2974
+ Meta: "Meta";
2975
+ Mistral: "Mistral";
2976
+ Microsoft: "Microsoft";
2977
+ DeepSeek: "DeepSeek";
2978
+ XAi: "XAi";
2979
+ Amazon: "Amazon";
2980
+ Qwen: "Qwen";
2981
+ Other: "Other";
2982
+ }>>;
2892
2983
  }, zod.core.$strip>;
2893
2984
  prePrompt: zod.ZodString;
2894
2985
  presencePenalty: zod.ZodNumber;
@@ -3130,6 +3221,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3130
3221
  String: "String";
3131
3222
  }>;
3132
3223
  }, zod.core.$strip>>;
3224
+ publisher: zod.ZodOptional<zod.ZodEnum<{
3225
+ OpenAi: "OpenAi";
3226
+ HuggingFace: "HuggingFace";
3227
+ Cohere: "Cohere";
3228
+ Anthropic: "Anthropic";
3229
+ Google: "Google";
3230
+ Meta: "Meta";
3231
+ Mistral: "Mistral";
3232
+ Microsoft: "Microsoft";
3233
+ DeepSeek: "DeepSeek";
3234
+ XAi: "XAi";
3235
+ Amazon: "Amazon";
3236
+ Qwen: "Qwen";
3237
+ Other: "Other";
3238
+ }>>;
3133
3239
  }, zod.core.$strip>;
3134
3240
  prePrompt: zod.ZodString;
3135
3241
  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()
@@ -1592,7 +1593,8 @@ exports.modelsCreateModelBody = zod_1.default.strictObject({
1592
1593
  "vmSize": zod_1.default.string().nullish()
1593
1594
  }).optional(),
1594
1595
  "displayName": zod_1.default.string().nullish(),
1595
- "name": zod_1.default.string()
1596
+ "name": zod_1.default.string(),
1597
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
1596
1598
  });
1597
1599
  /**
1598
1600
  * @summary Deletes a model with the specified ID.
@@ -1649,7 +1651,8 @@ exports.modelsGetModelResponse = zod_1.default.object({
1649
1651
  "properties": zod_1.default.array(zod_1.default.object({
1650
1652
  "name": zod_1.default.string(),
1651
1653
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
1652
- }))
1654
+ })),
1655
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
1653
1656
  });
1654
1657
  /**
1655
1658
  * @summary Updates or inserts a model with the specified ID.
@@ -1679,7 +1682,8 @@ exports.modelsUpsertModelBody = zod_1.default.strictObject({
1679
1682
  "vmSize": zod_1.default.string().nullish()
1680
1683
  }).optional(),
1681
1684
  "displayName": zod_1.default.string().nullish(),
1682
- "name": zod_1.default.string()
1685
+ "name": zod_1.default.string(),
1686
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
1683
1687
  });
1684
1688
  /**
1685
1689
  * @summary Retrieves the Docker logs for a specific deployment of a model.
@@ -1714,6 +1718,7 @@ exports.notificationGetResponse = zod_1.default.object({
1714
1718
  "data": zod_1.default.array(zod_1.default.object({
1715
1719
  "createdAt": zod_1.default.iso.datetime({}).nullish(),
1716
1720
  "createdBy": zod_1.default.string().nullish(),
1721
+ "createdByUserId": zod_1.default.string().nullish(),
1717
1722
  "description": zod_1.default.string().nullish(),
1718
1723
  "dismissedAt": zod_1.default.iso.datetime({}).nullish(),
1719
1724
  "id": zod_1.default.string().regex(exports.notificationGetResponseDataItemIdRegExpOne).nullish(),
@@ -2091,7 +2096,8 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
2091
2096
  "properties": zod_1.default.array(zod_1.default.object({
2092
2097
  "name": zod_1.default.string(),
2093
2098
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2094
- }))
2099
+ })),
2100
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2095
2101
  }),
2096
2102
  "prePrompt": zod_1.default.string(),
2097
2103
  "presencePenalty": zod_1.default.number(),
@@ -2300,7 +2306,8 @@ exports.workSpacesPostResponse = zod_1.default.object({
2300
2306
  "properties": zod_1.default.array(zod_1.default.object({
2301
2307
  "name": zod_1.default.string(),
2302
2308
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2303
- }))
2309
+ })),
2310
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2304
2311
  }),
2305
2312
  "prePrompt": zod_1.default.string(),
2306
2313
  "presencePenalty": zod_1.default.number(),
@@ -2498,7 +2505,8 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
2498
2505
  "properties": zod_1.default.array(zod_1.default.object({
2499
2506
  "name": zod_1.default.string(),
2500
2507
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2501
- }))
2508
+ })),
2509
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2502
2510
  }),
2503
2511
  "prePrompt": zod_1.default.string(),
2504
2512
  "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-dev.bdaf06f",
3
+ "version": "0.1.0-dev.deb6d4c",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",