@breign/client 1.0.11 → 1.0.12

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.
@@ -15,12 +15,6 @@
15
15
  * @interface DefaultEngineRequestUio
16
16
  */
17
17
  export interface DefaultEngineRequestUio {
18
- /**
19
- *
20
- * @type {string}
21
- * @memberof DefaultEngineRequestUio
22
- */
23
- organizationId: string;
24
18
  /**
25
19
  *
26
20
  * @type {string}
@@ -22,8 +22,6 @@ exports.DefaultEngineRequestUioToJSONTyped = DefaultEngineRequestUioToJSONTyped;
22
22
  * Check if a given object implements the DefaultEngineRequestUio interface.
23
23
  */
24
24
  function instanceOfDefaultEngineRequestUio(value) {
25
- if (!('organizationId' in value) || value['organizationId'] === undefined)
26
- return false;
27
25
  if (!('providerId' in value) || value['providerId'] === undefined)
28
26
  return false;
29
27
  if (!('model' in value) || value['model'] === undefined)
@@ -38,7 +36,6 @@ function DefaultEngineRequestUioFromJSONTyped(json, ignoreDiscriminator) {
38
36
  return json;
39
37
  }
40
38
  return {
41
- 'organizationId': json['organizationId'],
42
39
  'providerId': json['providerId'],
43
40
  'model': json['model'],
44
41
  };
@@ -51,7 +48,6 @@ function DefaultEngineRequestUioToJSONTyped(value, ignoreDiscriminator = false)
51
48
  return value;
52
49
  }
53
50
  return {
54
- 'organizationId': value['organizationId'],
55
51
  'providerId': value['providerId'],
56
52
  'model': value['model'],
57
53
  };
package/dist/openapi.json CHANGED
@@ -7092,9 +7092,6 @@
7092
7092
  },
7093
7093
  "DefaultEngineRequest" : {
7094
7094
  "properties" : {
7095
- "organizationId" : {
7096
- "type" : "string"
7097
- },
7098
7095
  "providerId" : {
7099
7096
  "type" : "string"
7100
7097
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",