@breign/client 1.0.90 → 1.0.91
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/apis/AgentApi.d.ts +6 -1
- package/dist/apis/AgentApi.js +17 -2
- package/dist/apis/AppApi.d.ts +14 -1
- package/dist/apis/AppApi.js +29 -0
- package/dist/models/AppInstanceListItemUio.d.ts +38 -0
- package/dist/models/AppInstanceListItemUio.js +54 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/openapi.json +124 -8
- package/package.json +1 -1
package/dist/apis/AgentApi.d.ts
CHANGED
|
@@ -70,6 +70,11 @@ export interface GetAgentsRequest {
|
|
|
70
70
|
export interface GetConversationsForAgentRequest {
|
|
71
71
|
agentId: string;
|
|
72
72
|
page?: number;
|
|
73
|
+
search?: string;
|
|
74
|
+
appId?: string;
|
|
75
|
+
instanceId?: string;
|
|
76
|
+
lastMessageFrom?: Date;
|
|
77
|
+
lastMessageTo?: Date;
|
|
73
78
|
}
|
|
74
79
|
export interface GetFlowRequest {
|
|
75
80
|
agentId: string;
|
|
@@ -291,7 +296,7 @@ export declare class AgentApi extends runtime.BaseAPI {
|
|
|
291
296
|
* Get conversations for an agent
|
|
292
297
|
* Get conversations for an agent
|
|
293
298
|
*/
|
|
294
|
-
getConversationsForAgent(agentId: string, page?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ChatUio>>;
|
|
299
|
+
getConversationsForAgent(agentId: string, page?: number, search?: string, appId?: string, instanceId?: string, lastMessageFrom?: Date, lastMessageTo?: Date, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ChatUio>>;
|
|
295
300
|
/**
|
|
296
301
|
* Retrieves a specific conversation flow by ID
|
|
297
302
|
* Get a specific flow
|
package/dist/apis/AgentApi.js
CHANGED
|
@@ -516,6 +516,21 @@ class AgentApi extends runtime.BaseAPI {
|
|
|
516
516
|
if (requestParameters['page'] != null) {
|
|
517
517
|
queryParameters['page'] = requestParameters['page'];
|
|
518
518
|
}
|
|
519
|
+
if (requestParameters['search'] != null) {
|
|
520
|
+
queryParameters['search'] = requestParameters['search'];
|
|
521
|
+
}
|
|
522
|
+
if (requestParameters['appId'] != null) {
|
|
523
|
+
queryParameters['appId'] = requestParameters['appId'];
|
|
524
|
+
}
|
|
525
|
+
if (requestParameters['instanceId'] != null) {
|
|
526
|
+
queryParameters['instanceId'] = requestParameters['instanceId'];
|
|
527
|
+
}
|
|
528
|
+
if (requestParameters['lastMessageFrom'] != null) {
|
|
529
|
+
queryParameters['lastMessageFrom'] = requestParameters['lastMessageFrom'].toISOString();
|
|
530
|
+
}
|
|
531
|
+
if (requestParameters['lastMessageTo'] != null) {
|
|
532
|
+
queryParameters['lastMessageTo'] = requestParameters['lastMessageTo'].toISOString();
|
|
533
|
+
}
|
|
519
534
|
const headerParameters = {};
|
|
520
535
|
if (this.configuration && this.configuration.apiKey) {
|
|
521
536
|
headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
|
|
@@ -532,8 +547,8 @@ class AgentApi extends runtime.BaseAPI {
|
|
|
532
547
|
* Get conversations for an agent
|
|
533
548
|
* Get conversations for an agent
|
|
534
549
|
*/
|
|
535
|
-
async getConversationsForAgent(agentId, page, initOverrides) {
|
|
536
|
-
const response = await this.getConversationsForAgentRaw({ agentId: agentId, page: page }, initOverrides);
|
|
550
|
+
async getConversationsForAgent(agentId, page, search, appId, instanceId, lastMessageFrom, lastMessageTo, initOverrides) {
|
|
551
|
+
const response = await this.getConversationsForAgentRaw({ agentId: agentId, page: page, search: search, appId: appId, instanceId: instanceId, lastMessageFrom: lastMessageFrom, lastMessageTo: lastMessageTo }, initOverrides);
|
|
537
552
|
return await response.value();
|
|
538
553
|
}
|
|
539
554
|
/**
|
package/dist/apis/AppApi.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import type { AnimationCreateRequestUio, AppChatCreateRequestUio, AppChatCreateResponseUio, AppChatSayRequestUio, AppChatSayResponseUio, AppChatSubmitMessageRequestUio, AppConfigurationUio, AppCreateRequestUio, AppFlowCreateRequestUio, AppInstanceCreateRequestUio, AppLightUio, AppProbeRequestUio, AppProbeResponseUio, AppStatusRequestUio, AppStatusResponseUio, AppSubmitMessageRequestUio, AppTextToSpeechRequestUio, AppTextToSpeechResponseUio, AppUio, AppUpdateRequestUio, AudioFileUio, AudioFillerExistsResponseUio, BodyWithIdUio, BodyWithMessageUio, ConversationUio, DeleteMessageAudio200ResponseUio, FileCreationRequestUio, FileCreationResponseUio, FillersArrayInnerUio, FlowUio, S3UploadBodyUio, SequenceCreateRequestUio } from '../models/index';
|
|
13
|
+
import type { AnimationCreateRequestUio, AppChatCreateRequestUio, AppChatCreateResponseUio, AppChatSayRequestUio, AppChatSayResponseUio, AppChatSubmitMessageRequestUio, AppConfigurationUio, AppCreateRequestUio, AppFlowCreateRequestUio, AppInstanceCreateRequestUio, AppInstanceListItemUio, AppLightUio, AppProbeRequestUio, AppProbeResponseUio, AppStatusRequestUio, AppStatusResponseUio, AppSubmitMessageRequestUio, AppTextToSpeechRequestUio, AppTextToSpeechResponseUio, AppUio, AppUpdateRequestUio, AudioFileUio, AudioFillerExistsResponseUio, BodyWithIdUio, BodyWithMessageUio, ConversationUio, DeleteMessageAudio200ResponseUio, FileCreationRequestUio, FileCreationResponseUio, FillersArrayInnerUio, FlowUio, S3UploadBodyUio, SequenceCreateRequestUio } from '../models/index';
|
|
14
14
|
export interface AddAnimationRequest {
|
|
15
15
|
appId: string;
|
|
16
16
|
animationCreateRequestUio: AnimationCreateRequestUio;
|
|
@@ -94,6 +94,9 @@ export interface GetAudioFillerByIdRequest {
|
|
|
94
94
|
language: string;
|
|
95
95
|
fillerId: string;
|
|
96
96
|
}
|
|
97
|
+
export interface GetInstancesForAppIdRequest {
|
|
98
|
+
appId: string;
|
|
99
|
+
}
|
|
97
100
|
export interface InterruptAppRequest {
|
|
98
101
|
appId: string;
|
|
99
102
|
instanceId?: string;
|
|
@@ -347,6 +350,16 @@ export declare class AppApi extends runtime.BaseAPI {
|
|
|
347
350
|
* Get audio filler by ID
|
|
348
351
|
*/
|
|
349
352
|
getAudioFillerById(appId: string, voiceId: string, language: string, fillerId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AudioFileUio>;
|
|
353
|
+
/**
|
|
354
|
+
* List persisted instances for an app (excludes ephemeral instances)
|
|
355
|
+
* List app instances
|
|
356
|
+
*/
|
|
357
|
+
getInstancesForAppIdRaw(requestParameters: GetInstancesForAppIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<AppInstanceListItemUio>>>;
|
|
358
|
+
/**
|
|
359
|
+
* List persisted instances for an app (excludes ephemeral instances)
|
|
360
|
+
* List app instances
|
|
361
|
+
*/
|
|
362
|
+
getInstancesForAppId(appId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<AppInstanceListItemUio>>;
|
|
350
363
|
/**
|
|
351
364
|
* Interrupt app
|
|
352
365
|
* Interrupt app
|
package/dist/apis/AppApi.js
CHANGED
|
@@ -699,6 +699,35 @@ class AppApi extends runtime.BaseAPI {
|
|
|
699
699
|
const response = await this.getAudioFillerByIdRaw({ appId: appId, voiceId: voiceId, language: language, fillerId: fillerId }, initOverrides);
|
|
700
700
|
return await response.value();
|
|
701
701
|
}
|
|
702
|
+
/**
|
|
703
|
+
* List persisted instances for an app (excludes ephemeral instances)
|
|
704
|
+
* List app instances
|
|
705
|
+
*/
|
|
706
|
+
async getInstancesForAppIdRaw(requestParameters, initOverrides) {
|
|
707
|
+
if (requestParameters['appId'] == null) {
|
|
708
|
+
throw new runtime.RequiredError('appId', 'Required parameter "appId" was null or undefined when calling getInstancesForAppId().');
|
|
709
|
+
}
|
|
710
|
+
const queryParameters = {};
|
|
711
|
+
const headerParameters = {};
|
|
712
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
713
|
+
headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
|
|
714
|
+
}
|
|
715
|
+
const response = await this.request({
|
|
716
|
+
path: `/apps/{appId}/instances`.replace(`{${"appId"}}`, encodeURIComponent(String(requestParameters['appId']))),
|
|
717
|
+
method: 'GET',
|
|
718
|
+
headers: headerParameters,
|
|
719
|
+
query: queryParameters,
|
|
720
|
+
}, initOverrides);
|
|
721
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => jsonValue.map(index_1.AppInstanceListItemUioFromJSON));
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* List persisted instances for an app (excludes ephemeral instances)
|
|
725
|
+
* List app instances
|
|
726
|
+
*/
|
|
727
|
+
async getInstancesForAppId(appId, initOverrides) {
|
|
728
|
+
const response = await this.getInstancesForAppIdRaw({ appId: appId }, initOverrides);
|
|
729
|
+
return await response.value();
|
|
730
|
+
}
|
|
702
731
|
/**
|
|
703
732
|
* Interrupt app
|
|
704
733
|
* Interrupt app
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* brain-client
|
|
3
|
+
* Api ands models for brain-app and brain-app
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.0.0-SNAPSHOT
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AppInstanceListItemUio
|
|
16
|
+
*/
|
|
17
|
+
export interface AppInstanceListItemUio {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AppInstanceListItemUio
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AppInstanceListItemUio
|
|
28
|
+
*/
|
|
29
|
+
name: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the AppInstanceListItemUio interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfAppInstanceListItemUio(value: object): value is AppInstanceListItemUio;
|
|
35
|
+
export declare function AppInstanceListItemUioFromJSON(json: any): AppInstanceListItemUio;
|
|
36
|
+
export declare function AppInstanceListItemUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppInstanceListItemUio;
|
|
37
|
+
export declare function AppInstanceListItemUioToJSON(json: any): AppInstanceListItemUio;
|
|
38
|
+
export declare function AppInstanceListItemUioToJSONTyped(value?: AppInstanceListItemUio | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* brain-client
|
|
6
|
+
* Api ands models for brain-app and brain-app
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.0.0-SNAPSHOT
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfAppInstanceListItemUio = instanceOfAppInstanceListItemUio;
|
|
17
|
+
exports.AppInstanceListItemUioFromJSON = AppInstanceListItemUioFromJSON;
|
|
18
|
+
exports.AppInstanceListItemUioFromJSONTyped = AppInstanceListItemUioFromJSONTyped;
|
|
19
|
+
exports.AppInstanceListItemUioToJSON = AppInstanceListItemUioToJSON;
|
|
20
|
+
exports.AppInstanceListItemUioToJSONTyped = AppInstanceListItemUioToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the AppInstanceListItemUio interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfAppInstanceListItemUio(value) {
|
|
25
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function AppInstanceListItemUioFromJSON(json) {
|
|
32
|
+
return AppInstanceListItemUioFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function AppInstanceListItemUioFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'id': json['id'],
|
|
40
|
+
'name': json['name'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function AppInstanceListItemUioToJSON(json) {
|
|
44
|
+
return AppInstanceListItemUioToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function AppInstanceListItemUioToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'id': value['id'],
|
|
52
|
+
'name': value['name'],
|
|
53
|
+
};
|
|
54
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export * from './AppFlowCreateRequestUio';
|
|
|
48
48
|
export * from './AppInstanceCreateRequestOneOfUio';
|
|
49
49
|
export * from './AppInstanceCreateRequestUio';
|
|
50
50
|
export * from './AppInstanceEphemeralCreateRequestUio';
|
|
51
|
+
export * from './AppInstanceListItemUio';
|
|
51
52
|
export * from './AppInstancesInnerUio';
|
|
52
53
|
export * from './AppLightUio';
|
|
53
54
|
export * from './AppProbeRequestUio';
|
package/dist/models/index.js
CHANGED
|
@@ -66,6 +66,7 @@ __exportStar(require("./AppFlowCreateRequestUio"), exports);
|
|
|
66
66
|
__exportStar(require("./AppInstanceCreateRequestOneOfUio"), exports);
|
|
67
67
|
__exportStar(require("./AppInstanceCreateRequestUio"), exports);
|
|
68
68
|
__exportStar(require("./AppInstanceEphemeralCreateRequestUio"), exports);
|
|
69
|
+
__exportStar(require("./AppInstanceListItemUio"), exports);
|
|
69
70
|
__exportStar(require("./AppInstancesInnerUio"), exports);
|
|
70
71
|
__exportStar(require("./AppLightUio"), exports);
|
|
71
72
|
__exportStar(require("./AppProbeRequestUio"), exports);
|
package/dist/openapi.json
CHANGED
|
@@ -1459,6 +1459,43 @@
|
|
|
1459
1459
|
"schema" : {
|
|
1460
1460
|
"type" : "integer"
|
|
1461
1461
|
}
|
|
1462
|
+
}, {
|
|
1463
|
+
"description" : "Search by custom user id or user email",
|
|
1464
|
+
"in" : "query",
|
|
1465
|
+
"name" : "search",
|
|
1466
|
+
"schema" : {
|
|
1467
|
+
"type" : "string"
|
|
1468
|
+
}
|
|
1469
|
+
}, {
|
|
1470
|
+
"description" : "App id",
|
|
1471
|
+
"in" : "query",
|
|
1472
|
+
"name" : "appId",
|
|
1473
|
+
"schema" : {
|
|
1474
|
+
"type" : "string"
|
|
1475
|
+
}
|
|
1476
|
+
}, {
|
|
1477
|
+
"description" : "Instance id",
|
|
1478
|
+
"in" : "query",
|
|
1479
|
+
"name" : "instanceId",
|
|
1480
|
+
"schema" : {
|
|
1481
|
+
"type" : "string"
|
|
1482
|
+
}
|
|
1483
|
+
}, {
|
|
1484
|
+
"description" : "Filter conversations whose last message timestamp is after this value",
|
|
1485
|
+
"in" : "query",
|
|
1486
|
+
"name" : "lastMessageFrom",
|
|
1487
|
+
"schema" : {
|
|
1488
|
+
"format" : "date-time",
|
|
1489
|
+
"type" : "string"
|
|
1490
|
+
}
|
|
1491
|
+
}, {
|
|
1492
|
+
"description" : "Filter conversations whose last message timestamp is before this value",
|
|
1493
|
+
"in" : "query",
|
|
1494
|
+
"name" : "lastMessageTo",
|
|
1495
|
+
"schema" : {
|
|
1496
|
+
"format" : "date-time",
|
|
1497
|
+
"type" : "string"
|
|
1498
|
+
}
|
|
1462
1499
|
} ],
|
|
1463
1500
|
"responses" : {
|
|
1464
1501
|
"200" : {
|
|
@@ -2482,6 +2519,39 @@
|
|
|
2482
2519
|
}
|
|
2483
2520
|
},
|
|
2484
2521
|
"/apps/{appId}/instances" : {
|
|
2522
|
+
"get" : {
|
|
2523
|
+
"description" : "List persisted instances for an app (excludes ephemeral instances)",
|
|
2524
|
+
"operationId" : "getInstancesForAppId",
|
|
2525
|
+
"parameters" : [ {
|
|
2526
|
+
"description" : "ID of the app",
|
|
2527
|
+
"in" : "path",
|
|
2528
|
+
"name" : "appId",
|
|
2529
|
+
"required" : true,
|
|
2530
|
+
"schema" : {
|
|
2531
|
+
"type" : "string"
|
|
2532
|
+
}
|
|
2533
|
+
} ],
|
|
2534
|
+
"responses" : {
|
|
2535
|
+
"200" : {
|
|
2536
|
+
"content" : {
|
|
2537
|
+
"application/json" : {
|
|
2538
|
+
"schema" : {
|
|
2539
|
+
"items" : {
|
|
2540
|
+
"$ref" : "#/components/schemas/AppInstanceListItem"
|
|
2541
|
+
},
|
|
2542
|
+
"type" : "array"
|
|
2543
|
+
}
|
|
2544
|
+
}
|
|
2545
|
+
},
|
|
2546
|
+
"description" : "Instances retrieved successfully"
|
|
2547
|
+
},
|
|
2548
|
+
"404" : {
|
|
2549
|
+
"description" : "App not found"
|
|
2550
|
+
}
|
|
2551
|
+
},
|
|
2552
|
+
"summary" : "List app instances",
|
|
2553
|
+
"tags" : [ "app" ]
|
|
2554
|
+
},
|
|
2485
2555
|
"post" : {
|
|
2486
2556
|
"description" : "Create instance",
|
|
2487
2557
|
"operationId" : "createInstance",
|
|
@@ -8138,6 +8208,48 @@
|
|
|
8138
8208
|
"type" : "integer"
|
|
8139
8209
|
}
|
|
8140
8210
|
},
|
|
8211
|
+
"search" : {
|
|
8212
|
+
"description" : "Search by custom user id or user email",
|
|
8213
|
+
"in" : "query",
|
|
8214
|
+
"name" : "search",
|
|
8215
|
+
"schema" : {
|
|
8216
|
+
"type" : "string"
|
|
8217
|
+
}
|
|
8218
|
+
},
|
|
8219
|
+
"appId" : {
|
|
8220
|
+
"description" : "App id",
|
|
8221
|
+
"in" : "query",
|
|
8222
|
+
"name" : "appId",
|
|
8223
|
+
"schema" : {
|
|
8224
|
+
"type" : "string"
|
|
8225
|
+
}
|
|
8226
|
+
},
|
|
8227
|
+
"instanceId" : {
|
|
8228
|
+
"description" : "Instance id",
|
|
8229
|
+
"in" : "query",
|
|
8230
|
+
"name" : "instanceId",
|
|
8231
|
+
"schema" : {
|
|
8232
|
+
"type" : "string"
|
|
8233
|
+
}
|
|
8234
|
+
},
|
|
8235
|
+
"lastMessageFrom" : {
|
|
8236
|
+
"description" : "Filter conversations whose last message timestamp is after this value",
|
|
8237
|
+
"in" : "query",
|
|
8238
|
+
"name" : "lastMessageFrom",
|
|
8239
|
+
"schema" : {
|
|
8240
|
+
"format" : "date-time",
|
|
8241
|
+
"type" : "string"
|
|
8242
|
+
}
|
|
8243
|
+
},
|
|
8244
|
+
"lastMessageTo" : {
|
|
8245
|
+
"description" : "Filter conversations whose last message timestamp is before this value",
|
|
8246
|
+
"in" : "query",
|
|
8247
|
+
"name" : "lastMessageTo",
|
|
8248
|
+
"schema" : {
|
|
8249
|
+
"format" : "date-time",
|
|
8250
|
+
"type" : "string"
|
|
8251
|
+
}
|
|
8252
|
+
},
|
|
8141
8253
|
"ephemeral" : {
|
|
8142
8254
|
"description" : "If true, the resource will not appear in history and will be deleted after a certain time.",
|
|
8143
8255
|
"in" : "query",
|
|
@@ -8156,14 +8268,6 @@
|
|
|
8156
8268
|
"type" : "string"
|
|
8157
8269
|
}
|
|
8158
8270
|
},
|
|
8159
|
-
"instanceId" : {
|
|
8160
|
-
"description" : "Instance id",
|
|
8161
|
-
"in" : "query",
|
|
8162
|
-
"name" : "instanceId",
|
|
8163
|
-
"schema" : {
|
|
8164
|
-
"type" : "string"
|
|
8165
|
-
}
|
|
8166
|
-
},
|
|
8167
8271
|
"appIdPath" : {
|
|
8168
8272
|
"description" : "ID of the app",
|
|
8169
8273
|
"in" : "path",
|
|
@@ -10462,6 +10566,18 @@
|
|
|
10462
10566
|
"required" : [ "audio" ],
|
|
10463
10567
|
"type" : "object"
|
|
10464
10568
|
},
|
|
10569
|
+
"AppInstanceListItem" : {
|
|
10570
|
+
"properties" : {
|
|
10571
|
+
"id" : {
|
|
10572
|
+
"type" : "string"
|
|
10573
|
+
},
|
|
10574
|
+
"name" : {
|
|
10575
|
+
"type" : "string"
|
|
10576
|
+
}
|
|
10577
|
+
},
|
|
10578
|
+
"required" : [ "id", "name" ],
|
|
10579
|
+
"type" : "object"
|
|
10580
|
+
},
|
|
10465
10581
|
"AppInstanceCreateRequest" : {
|
|
10466
10582
|
"oneOf" : [ {
|
|
10467
10583
|
"$ref" : "#/components/schemas/AppInstanceCreateRequest_oneOf"
|