@smartspace/api-client 0.1.0-pr.725.25889f6 → 0.1.0-pr.727.ff11e9b

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(),
@@ -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;
@@ -2078,6 +2093,21 @@ export declare const modelsGetModelResponse: zod.ZodObject<{
2078
2093
  String: "String";
2079
2094
  }>;
2080
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
+ }>>;
2081
2111
  }, zod.core.$strip>;
2082
2112
  /**
2083
2113
  * @summary Updates or inserts a model with the specified ID.
@@ -2664,6 +2694,21 @@ export declare const workSpacesGetGetResponse: zod.ZodObject<{
2664
2694
  String: "String";
2665
2695
  }>;
2666
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
+ }>>;
2667
2712
  }, zod.core.$strip>;
2668
2713
  prePrompt: zod.ZodString;
2669
2714
  presencePenalty: zod.ZodNumber;
@@ -2920,6 +2965,21 @@ export declare const workSpacesPostResponse: zod.ZodObject<{
2920
2965
  String: "String";
2921
2966
  }>;
2922
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
+ }>>;
2923
2983
  }, zod.core.$strip>;
2924
2984
  prePrompt: zod.ZodString;
2925
2985
  presencePenalty: zod.ZodNumber;
@@ -3161,6 +3221,21 @@ export declare const workSpacesGetIdResponse: zod.ZodObject<{
3161
3221
  String: "String";
3162
3222
  }>;
3163
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
+ }>>;
3164
3239
  }, zod.core.$strip>;
3165
3240
  prePrompt: zod.ZodString;
3166
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()
@@ -1650,7 +1651,8 @@ exports.modelsGetModelResponse = zod_1.default.object({
1650
1651
  "properties": zod_1.default.array(zod_1.default.object({
1651
1652
  "name": zod_1.default.string(),
1652
1653
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
1653
- }))
1654
+ })),
1655
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
1654
1656
  });
1655
1657
  /**
1656
1658
  * @summary Updates or inserts a model with the specified ID.
@@ -2094,7 +2096,8 @@ exports.workSpacesGetGetResponse = zod_1.default.object({
2094
2096
  "properties": zod_1.default.array(zod_1.default.object({
2095
2097
  "name": zod_1.default.string(),
2096
2098
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2097
- }))
2099
+ })),
2100
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2098
2101
  }),
2099
2102
  "prePrompt": zod_1.default.string(),
2100
2103
  "presencePenalty": zod_1.default.number(),
@@ -2303,7 +2306,8 @@ exports.workSpacesPostResponse = zod_1.default.object({
2303
2306
  "properties": zod_1.default.array(zod_1.default.object({
2304
2307
  "name": zod_1.default.string(),
2305
2308
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2306
- }))
2309
+ })),
2310
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2307
2311
  }),
2308
2312
  "prePrompt": zod_1.default.string(),
2309
2313
  "presencePenalty": zod_1.default.number(),
@@ -2501,7 +2505,8 @@ exports.workSpacesGetIdResponse = zod_1.default.object({
2501
2505
  "properties": zod_1.default.array(zod_1.default.object({
2502
2506
  "name": zod_1.default.string(),
2503
2507
  "type": zod_1.default.enum(['Boolean', 'Number', 'String'])
2504
- }))
2508
+ })),
2509
+ "publisher": zod_1.default.enum(['OpenAi', 'Anthropic', 'Google', 'Meta', 'Mistral', 'Microsoft', 'DeepSeek', 'Cohere', 'XAi', 'HuggingFace', 'Amazon', 'Qwen', 'Other']).optional()
2505
2510
  }),
2506
2511
  "prePrompt": zod_1.default.string(),
2507
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-pr.725.25889f6",
3
+ "version": "0.1.0-pr.727.ff11e9b",
4
4
  "description": "Generated TypeScript client for SmartSpace APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",