@breign/client 1.0.81 → 1.0.82

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.
@@ -22,6 +22,12 @@ export interface AppCreateRequestUio {
22
22
  * @memberof AppCreateRequestUio
23
23
  */
24
24
  name: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof AppCreateRequestUio
29
+ */
30
+ description?: string;
25
31
  /**
26
32
  *
27
33
  * @type {string}
@@ -40,6 +40,7 @@ function AppCreateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
40
40
  }
41
41
  return {
42
42
  'name': json['name'],
43
+ 'description': json['description'] == null ? undefined : json['description'],
43
44
  'agentId': json['agentId'],
44
45
  'streamingEnabled': json['streamingEnabled'],
45
46
  'voiceProvider': json['voiceProvider'] == null ? undefined : json['voiceProvider'],
@@ -62,6 +63,7 @@ function AppCreateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
62
63
  }
63
64
  return {
64
65
  'name': value['name'],
66
+ 'description': value['description'],
65
67
  'agentId': value['agentId'],
66
68
  'streamingEnabled': value['streamingEnabled'],
67
69
  'voiceProvider': value['voiceProvider'],
@@ -27,6 +27,12 @@ export interface AppLightUio {
27
27
  * @memberof AppLightUio
28
28
  */
29
29
  name: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof AppLightUio
34
+ */
35
+ description?: string;
30
36
  /**
31
37
  *
32
38
  * @type {string}
@@ -50,6 +50,7 @@ function AppLightUioFromJSONTyped(json, ignoreDiscriminator) {
50
50
  return {
51
51
  'id': json['id'],
52
52
  'name': json['name'],
53
+ 'description': json['description'] == null ? undefined : json['description'],
53
54
  'agentId': json['agentId'],
54
55
  'authSecret': json['authSecret'],
55
56
  'streamingEnabled': json['streamingEnabled'],
@@ -69,6 +70,7 @@ function AppLightUioToJSONTyped(value, ignoreDiscriminator = false) {
69
70
  return {
70
71
  'id': value['id'],
71
72
  'name': value['name'],
73
+ 'description': value['description'],
72
74
  'agentId': value['agentId'],
73
75
  'authSecret': value['authSecret'],
74
76
  'streamingEnabled': value['streamingEnabled'],
@@ -37,6 +37,12 @@ export interface AppUio {
37
37
  * @memberof AppUio
38
38
  */
39
39
  name: string;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof AppUio
44
+ */
45
+ description?: string;
40
46
  /**
41
47
  *
42
48
  * @type {string}
@@ -60,6 +60,7 @@ function AppUioFromJSONTyped(json, ignoreDiscriminator) {
60
60
  return {
61
61
  'id': json['id'],
62
62
  'name': json['name'],
63
+ 'description': json['description'] == null ? undefined : json['description'],
63
64
  'agentId': json['agentId'],
64
65
  'agent': json['agent'] == null ? undefined : (0, SimpleAgentUio_1.SimpleAgentUioFromJSON)(json['agent']),
65
66
  'sequences': json['sequences'] == null ? undefined : (json['sequences'].map(SequenceUio_1.SequenceUioFromJSON)),
@@ -98,6 +99,7 @@ function AppUioToJSONTyped(value, ignoreDiscriminator = false) {
98
99
  return {
99
100
  'id': value['id'],
100
101
  'name': value['name'],
102
+ 'description': value['description'],
101
103
  'agentId': value['agentId'],
102
104
  'agent': (0, SimpleAgentUio_1.SimpleAgentUioToJSON)(value['agent']),
103
105
  'sequences': value['sequences'] == null ? undefined : (value['sequences'].map(SequenceUio_1.SequenceUioToJSON)),
@@ -22,6 +22,12 @@ export interface AppUpdateRequestUio {
22
22
  * @memberof AppUpdateRequestUio
23
23
  */
24
24
  name?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof AppUpdateRequestUio
29
+ */
30
+ description?: string;
25
31
  /**
26
32
  *
27
33
  * @type {boolean}
@@ -34,6 +34,7 @@ function AppUpdateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
34
34
  }
35
35
  return {
36
36
  'name': json['name'] == null ? undefined : json['name'],
37
+ 'description': json['description'] == null ? undefined : json['description'],
37
38
  'streamingEnabled': json['streamingEnabled'] == null ? undefined : json['streamingEnabled'],
38
39
  'voiceProvider': json['voiceProvider'] == null ? undefined : json['voiceProvider'],
39
40
  'voiceProviderApiKey': json['voiceProviderApiKey'] == null ? undefined : json['voiceProviderApiKey'],
@@ -54,6 +55,7 @@ function AppUpdateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
54
55
  }
55
56
  return {
56
57
  'name': value['name'],
58
+ 'description': value['description'],
57
59
  'streamingEnabled': value['streamingEnabled'],
58
60
  'voiceProvider': value['voiceProvider'],
59
61
  'voiceProviderApiKey': value['voiceProviderApiKey'],
package/dist/openapi.json CHANGED
@@ -9030,6 +9030,9 @@
9030
9030
  "name" : {
9031
9031
  "type" : "string"
9032
9032
  },
9033
+ "description" : {
9034
+ "type" : "string"
9035
+ },
9033
9036
  "agentId" : {
9034
9037
  "type" : "string"
9035
9038
  },
@@ -9060,6 +9063,9 @@
9060
9063
  "name" : {
9061
9064
  "type" : "string"
9062
9065
  },
9066
+ "description" : {
9067
+ "type" : "string"
9068
+ },
9063
9069
  "agentId" : {
9064
9070
  "type" : "string"
9065
9071
  },
@@ -9123,6 +9129,9 @@
9123
9129
  "name" : {
9124
9130
  "type" : "string"
9125
9131
  },
9132
+ "description" : {
9133
+ "type" : "string"
9134
+ },
9126
9135
  "agentId" : {
9127
9136
  "type" : "string"
9128
9137
  },
@@ -9371,6 +9380,9 @@
9371
9380
  "name" : {
9372
9381
  "type" : "string"
9373
9382
  },
9383
+ "description" : {
9384
+ "type" : "string"
9385
+ },
9374
9386
  "streamingEnabled" : {
9375
9387
  "type" : "boolean"
9376
9388
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",