@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.
- package/dist/models/AppCreateRequestUio.d.ts +6 -0
- package/dist/models/AppCreateRequestUio.js +2 -0
- package/dist/models/AppLightUio.d.ts +6 -0
- package/dist/models/AppLightUio.js +2 -0
- package/dist/models/AppUio.d.ts +6 -0
- package/dist/models/AppUio.js +2 -0
- package/dist/models/AppUpdateRequestUio.d.ts +6 -0
- package/dist/models/AppUpdateRequestUio.js +2 -0
- package/dist/openapi.json +12 -0
- package/package.json +1 -1
|
@@ -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'],
|
|
@@ -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'],
|
package/dist/models/AppUio.d.ts
CHANGED
package/dist/models/AppUio.js
CHANGED
|
@@ -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)),
|
|
@@ -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
|
},
|