@closerplatform/spinner-openapi 0.12.517 → 0.12.519
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/api.d.ts +0 -91
- package/dist/api.js +4 -109
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1436,64 +1436,6 @@ export declare namespace ChangeBotTypeForm {
|
|
|
1436
1436
|
LektaBotType = "LektaBotType"
|
|
1437
1437
|
}
|
|
1438
1438
|
}
|
|
1439
|
-
/**
|
|
1440
|
-
*
|
|
1441
|
-
* @export
|
|
1442
|
-
* @interface ChatEvent
|
|
1443
|
-
*/
|
|
1444
|
-
export interface ChatEvent {
|
|
1445
|
-
/**
|
|
1446
|
-
*
|
|
1447
|
-
* @type {string}
|
|
1448
|
-
* @memberof ChatEvent
|
|
1449
|
-
*/
|
|
1450
|
-
eventId: string;
|
|
1451
|
-
/**
|
|
1452
|
-
*
|
|
1453
|
-
* @type {string}
|
|
1454
|
-
* @memberof ChatEvent
|
|
1455
|
-
*/
|
|
1456
|
-
room: string;
|
|
1457
|
-
/**
|
|
1458
|
-
*
|
|
1459
|
-
* @type {string}
|
|
1460
|
-
* @memberof ChatEvent
|
|
1461
|
-
*/
|
|
1462
|
-
tag: ChatEvent.TagEnum;
|
|
1463
|
-
/**
|
|
1464
|
-
*
|
|
1465
|
-
* @type {any}
|
|
1466
|
-
* @memberof ChatEvent
|
|
1467
|
-
*/
|
|
1468
|
-
payload: any;
|
|
1469
|
-
/**
|
|
1470
|
-
*
|
|
1471
|
-
* @type {number}
|
|
1472
|
-
* @memberof ChatEvent
|
|
1473
|
-
*/
|
|
1474
|
-
timestamp: number;
|
|
1475
|
-
}
|
|
1476
|
-
/**
|
|
1477
|
-
* @export
|
|
1478
|
-
* @namespace ChatEvent
|
|
1479
|
-
*/
|
|
1480
|
-
export declare namespace ChatEvent {
|
|
1481
|
-
/**
|
|
1482
|
-
* @export
|
|
1483
|
-
* @enum {string}
|
|
1484
|
-
*/
|
|
1485
|
-
enum TagEnum {
|
|
1486
|
-
STATUSCHANGED = "STATUS_CHANGED",
|
|
1487
|
-
FOLLOWERADDED = "FOLLOWER_ADDED",
|
|
1488
|
-
FOLLOWERREMOVED = "FOLLOWER_REMOVED",
|
|
1489
|
-
MEETINGSCHEDULED = "MEETING_SCHEDULED",
|
|
1490
|
-
MEETINGRESCHEDULED = "MEETING_RESCHEDULED",
|
|
1491
|
-
MEETINGCANCELLED = "MEETING_CANCELLED",
|
|
1492
|
-
ASSIGNEECHANGED = "ASSIGNEE_CHANGED",
|
|
1493
|
-
ASSIGNEEREMOVED = "ASSIGNEE_REMOVED",
|
|
1494
|
-
ALLFOLLOWERSREMOVED = "ALL_FOLLOWERS_REMOVED"
|
|
1495
|
-
}
|
|
1496
|
-
}
|
|
1497
1439
|
/**
|
|
1498
1440
|
*
|
|
1499
1441
|
* @export
|
|
@@ -12694,14 +12636,6 @@ export declare const RoomsApiFetchParamCreator: (configuration?: Configuration)
|
|
|
12694
12636
|
* @throws {RequiredError}
|
|
12695
12637
|
*/
|
|
12696
12638
|
getGuestProfilesByQuery(query: string, options?: any): FetchArgs;
|
|
12697
|
-
/**
|
|
12698
|
-
*
|
|
12699
|
-
* @summary Retrieve history for room
|
|
12700
|
-
* @param {string} roomId
|
|
12701
|
-
* @param {*} [options] Override http request option.
|
|
12702
|
-
* @throws {RequiredError}
|
|
12703
|
-
*/
|
|
12704
|
-
getHistory(roomId: string, options?: any): FetchArgs;
|
|
12705
12639
|
/**
|
|
12706
12640
|
*
|
|
12707
12641
|
* @summary Get ids of agents not following the room
|
|
@@ -12833,14 +12767,6 @@ export declare const RoomsApiFp: (configuration?: Configuration) => {
|
|
|
12833
12767
|
* @throws {RequiredError}
|
|
12834
12768
|
*/
|
|
12835
12769
|
getGuestProfilesByQuery(query: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<GuestProfile>>;
|
|
12836
|
-
/**
|
|
12837
|
-
*
|
|
12838
|
-
* @summary Retrieve history for room
|
|
12839
|
-
* @param {string} roomId
|
|
12840
|
-
* @param {*} [options] Override http request option.
|
|
12841
|
-
* @throws {RequiredError}
|
|
12842
|
-
*/
|
|
12843
|
-
getHistory(roomId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<ChatEvent>>;
|
|
12844
12770
|
/**
|
|
12845
12771
|
*
|
|
12846
12772
|
* @summary Get ids of agents not following the room
|
|
@@ -12972,14 +12898,6 @@ export declare const RoomsApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
12972
12898
|
* @throws {RequiredError}
|
|
12973
12899
|
*/
|
|
12974
12900
|
getGuestProfilesByQuery(query: string, options?: any): Promise<GuestProfile[]>;
|
|
12975
|
-
/**
|
|
12976
|
-
*
|
|
12977
|
-
* @summary Retrieve history for room
|
|
12978
|
-
* @param {string} roomId
|
|
12979
|
-
* @param {*} [options] Override http request option.
|
|
12980
|
-
* @throws {RequiredError}
|
|
12981
|
-
*/
|
|
12982
|
-
getHistory(roomId: string, options?: any): Promise<ChatEvent[]>;
|
|
12983
12901
|
/**
|
|
12984
12902
|
*
|
|
12985
12903
|
* @summary Get ids of agents not following the room
|
|
@@ -13122,15 +13040,6 @@ export declare class RoomsApi extends BaseAPI {
|
|
|
13122
13040
|
* @memberof RoomsApi
|
|
13123
13041
|
*/
|
|
13124
13042
|
getGuestProfilesByQuery(query: string, options?: any): Promise<GuestProfile[]>;
|
|
13125
|
-
/**
|
|
13126
|
-
*
|
|
13127
|
-
* @summary Retrieve history for room
|
|
13128
|
-
* @param {string} roomId
|
|
13129
|
-
* @param {*} [options] Override http request option.
|
|
13130
|
-
* @throws {RequiredError}
|
|
13131
|
-
* @memberof RoomsApi
|
|
13132
|
-
*/
|
|
13133
|
-
getHistory(roomId: string, options?: any): Promise<ChatEvent[]>;
|
|
13134
13043
|
/**
|
|
13135
13044
|
*
|
|
13136
13045
|
* @summary Get ids of agents not following the room
|
package/dist/api.js
CHANGED
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
* Do not edit the file manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.CobrowsingApi = exports.CobrowsingApiFactory = exports.CobrowsingApiFp = exports.CobrowsingApiFetchParamCreator = exports.CallsApi = exports.CallsApiFactory = exports.CallsApiFp = exports.CallsApiFetchParamCreator = exports.CalendarsApi = exports.CalendarsApiFactory = exports.CalendarsApiFp = exports.CalendarsApiFetchParamCreator = exports.BotsApi = exports.BotsApiFactory = exports.BotsApiFp = exports.BotsApiFetchParamCreator = exports.BillingsApi = exports.BillingsApiFactory = exports.BillingsApiFp = exports.BillingsApiFetchParamCreator = exports.AgentStatusesApi = exports.AgentStatusesApiFactory = exports.AgentStatusesApiFp = exports.AgentStatusesApiFetchParamCreator = exports.AgentGroupsApi = exports.AgentGroupsApiFactory = exports.AgentGroupsApiFp = exports.AgentGroupsApiFetchParamCreator = exports.WidgetButtonsInput = exports.UserRole = exports.UrlParameter = exports.SnoozedStatus = exports.RegisterInPushService = exports.ModelTrainingStatus = exports.MessageWidgetConfigContextType = exports.MatchingStrategy = exports.InboxSorting = exports.InboxEntryType = exports.EventActionEvent = exports.ConversationStatus = exports.
|
|
17
|
-
exports.OrgsApiFp = exports.OrgsApiFetchParamCreator = exports.OplAddressApi = exports.OplAddressApiFactory = exports.OplAddressApiFp = exports.OplAddressApiFetchParamCreator = exports.OIDCApi = exports.OIDCApiFactory = exports.OIDCApiFp = exports.OIDCApiFetchParamCreator = exports.OAuthApi = exports.OAuthApiFactory = exports.OAuthApiFp = exports.OAuthApiFetchParamCreator = exports.NLUApi = exports.NLUApiFactory = exports.NLUApiFp = exports.NLUApiFetchParamCreator = exports.MessageWidgetsApi = exports.MessageWidgetsApiFactory = exports.MessageWidgetsApiFp = exports.MessageWidgetsApiFetchParamCreator = exports.MeetingsApi = exports.MeetingsApiFactory = exports.MeetingsApiFp = exports.MeetingsApiFetchParamCreator = exports.MainNotificationsApi = exports.MainNotificationsApiFactory = exports.MainNotificationsApiFp = exports.MainNotificationsApiFetchParamCreator = exports.InviteesApi = exports.InviteesApiFactory = exports.InviteesApiFp = exports.InviteesApiFetchParamCreator = exports.FilesApi = exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiFetchParamCreator = exports.EventActionsApi = exports.EventActionsApiFactory = exports.EventActionsApiFp = exports.EventActionsApiFetchParamCreator = exports.ConversationsApi = exports.ConversationsApiFactory = exports.ConversationsApiFp = exports.ConversationsApiFetchParamCreator = exports.CompatibilityApi = exports.CompatibilityApiFactory = exports.CompatibilityApiFp =
|
|
18
|
-
exports.TagsApi = exports.TagsApiFactory = exports.TagsApiFp = exports.TagsApiFetchParamCreator = exports.TagMappingsApi = exports.TagMappingsApiFactory = exports.TagMappingsApiFp = exports.TagMappingsApiFetchParamCreator = exports.TagGroupsApi = exports.TagGroupsApiFactory = exports.TagGroupsApiFp = exports.TagGroupsApiFetchParamCreator = exports.TagGroupTransfersParametersApi = exports.TagGroupTransfersParametersApiFactory = exports.TagGroupTransfersParametersApiFp = exports.TagGroupTransfersParametersApiFetchParamCreator = exports.TagGroupTransfersApi = exports.TagGroupTransfersApiFactory = exports.TagGroupTransfersApiFp = exports.TagGroupTransfersApiFetchParamCreator = exports.StatusApi = exports.StatusApiFactory = exports.StatusApiFp = exports.StatusApiFetchParamCreator = exports.SessionApi = exports.SessionApiFactory = exports.SessionApiFp = exports.SessionApiFetchParamCreator = exports.RoomsApi = exports.RoomsApiFactory = exports.RoomsApiFp = exports.RoomsApiFetchParamCreator = exports.RolesApi = exports.RolesApiFactory = exports.RolesApiFp = exports.RolesApiFetchParamCreator = exports.PushApi = exports.PushApiFactory = exports.PushApiFp = exports.PushApiFetchParamCreator = exports.ProfanitiesApi = exports.ProfanitiesApiFactory = exports.ProfanitiesApiFp = exports.ProfanitiesApiFetchParamCreator = exports.ProactiveMsgApi = exports.ProactiveMsgApiFactory = exports.ProactiveMsgApiFp = exports.ProactiveMsgApiFetchParamCreator = exports.OrgsApi =
|
|
19
|
-
exports.WidgetsFormsSubmissionsApi = exports.WidgetsFormsSubmissionsApiFactory = exports.WidgetsFormsSubmissionsApiFp = exports.WidgetsFormsSubmissionsApiFetchParamCreator = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiFetchParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiFetchParamCreator = exports.UrlTagMappingsApi = exports.UrlTagMappingsApiFactory = exports.UrlTagMappingsApiFp = exports.UrlTagMappingsApiFetchParamCreator = exports.UnreadApi = exports.UnreadApiFactory = exports.UnreadApiFp = exports.UnreadApiFetchParamCreator = exports.TopicsApi = exports.TopicsApiFactory = exports.TopicsApiFp =
|
|
16
|
+
exports.CompatibilityApiFetchParamCreator = exports.CobrowsingApi = exports.CobrowsingApiFactory = exports.CobrowsingApiFp = exports.CobrowsingApiFetchParamCreator = exports.CallsApi = exports.CallsApiFactory = exports.CallsApiFp = exports.CallsApiFetchParamCreator = exports.CalendarsApi = exports.CalendarsApiFactory = exports.CalendarsApiFp = exports.CalendarsApiFetchParamCreator = exports.BotsApi = exports.BotsApiFactory = exports.BotsApiFp = exports.BotsApiFetchParamCreator = exports.BillingsApi = exports.BillingsApiFactory = exports.BillingsApiFp = exports.BillingsApiFetchParamCreator = exports.AgentStatusesApi = exports.AgentStatusesApiFactory = exports.AgentStatusesApiFp = exports.AgentStatusesApiFetchParamCreator = exports.AgentGroupsApi = exports.AgentGroupsApiFactory = exports.AgentGroupsApiFp = exports.AgentGroupsApiFetchParamCreator = exports.WidgetButtonsInput = exports.UserRole = exports.UrlParameter = exports.SnoozedStatus = exports.RegisterInPushService = exports.ModelTrainingStatus = exports.MessageWidgetConfigContextType = exports.MatchingStrategy = exports.InboxSorting = exports.InboxEntryType = exports.EventActionEvent = exports.ConversationStatus = exports.ChangeBotTypeForm = exports.BotInfo = exports.ArtichokePresence = exports.AppicationErrorReason = exports.AppPresence = exports.AppPermission = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = void 0;
|
|
17
|
+
exports.OrgsApiFactory = exports.OrgsApiFp = exports.OrgsApiFetchParamCreator = exports.OplAddressApi = exports.OplAddressApiFactory = exports.OplAddressApiFp = exports.OplAddressApiFetchParamCreator = exports.OIDCApi = exports.OIDCApiFactory = exports.OIDCApiFp = exports.OIDCApiFetchParamCreator = exports.OAuthApi = exports.OAuthApiFactory = exports.OAuthApiFp = exports.OAuthApiFetchParamCreator = exports.NLUApi = exports.NLUApiFactory = exports.NLUApiFp = exports.NLUApiFetchParamCreator = exports.MessageWidgetsApi = exports.MessageWidgetsApiFactory = exports.MessageWidgetsApiFp = exports.MessageWidgetsApiFetchParamCreator = exports.MeetingsApi = exports.MeetingsApiFactory = exports.MeetingsApiFp = exports.MeetingsApiFetchParamCreator = exports.MainNotificationsApi = exports.MainNotificationsApiFactory = exports.MainNotificationsApiFp = exports.MainNotificationsApiFetchParamCreator = exports.InviteesApi = exports.InviteesApiFactory = exports.InviteesApiFp = exports.InviteesApiFetchParamCreator = exports.FilesApi = exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiFetchParamCreator = exports.EventActionsApi = exports.EventActionsApiFactory = exports.EventActionsApiFp = exports.EventActionsApiFetchParamCreator = exports.ConversationsApi = exports.ConversationsApiFactory = exports.ConversationsApiFp = exports.ConversationsApiFetchParamCreator = exports.CompatibilityApi = exports.CompatibilityApiFactory = exports.CompatibilityApiFp = void 0;
|
|
18
|
+
exports.TopicsApiFetchParamCreator = exports.TagsApi = exports.TagsApiFactory = exports.TagsApiFp = exports.TagsApiFetchParamCreator = exports.TagMappingsApi = exports.TagMappingsApiFactory = exports.TagMappingsApiFp = exports.TagMappingsApiFetchParamCreator = exports.TagGroupsApi = exports.TagGroupsApiFactory = exports.TagGroupsApiFp = exports.TagGroupsApiFetchParamCreator = exports.TagGroupTransfersParametersApi = exports.TagGroupTransfersParametersApiFactory = exports.TagGroupTransfersParametersApiFp = exports.TagGroupTransfersParametersApiFetchParamCreator = exports.TagGroupTransfersApi = exports.TagGroupTransfersApiFactory = exports.TagGroupTransfersApiFp = exports.TagGroupTransfersApiFetchParamCreator = exports.StatusApi = exports.StatusApiFactory = exports.StatusApiFp = exports.StatusApiFetchParamCreator = exports.SessionApi = exports.SessionApiFactory = exports.SessionApiFp = exports.SessionApiFetchParamCreator = exports.RoomsApi = exports.RoomsApiFactory = exports.RoomsApiFp = exports.RoomsApiFetchParamCreator = exports.RolesApi = exports.RolesApiFactory = exports.RolesApiFp = exports.RolesApiFetchParamCreator = exports.PushApi = exports.PushApiFactory = exports.PushApiFp = exports.PushApiFetchParamCreator = exports.ProfanitiesApi = exports.ProfanitiesApiFactory = exports.ProfanitiesApiFp = exports.ProfanitiesApiFetchParamCreator = exports.ProactiveMsgApi = exports.ProactiveMsgApiFactory = exports.ProactiveMsgApiFp = exports.ProactiveMsgApiFetchParamCreator = exports.OrgsApi = void 0;
|
|
19
|
+
exports.WidgetsFormsSubmissionsApi = exports.WidgetsFormsSubmissionsApiFactory = exports.WidgetsFormsSubmissionsApiFp = exports.WidgetsFormsSubmissionsApiFetchParamCreator = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiFetchParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiFetchParamCreator = exports.UrlTagMappingsApi = exports.UrlTagMappingsApiFactory = exports.UrlTagMappingsApiFp = exports.UrlTagMappingsApiFetchParamCreator = exports.UnreadApi = exports.UnreadApiFactory = exports.UnreadApiFp = exports.UnreadApiFetchParamCreator = exports.TopicsApi = exports.TopicsApiFactory = exports.TopicsApiFp = void 0;
|
|
20
20
|
const url = require("url");
|
|
21
21
|
const isomorphicFetch = require("isomorphic-fetch");
|
|
22
22
|
const BASE_PATH = "/api".replace(/\/+$/, "");
|
|
@@ -195,29 +195,6 @@ var ChangeBotTypeForm;
|
|
|
195
195
|
BotTypeEnum["LektaBotType"] = "LektaBotType";
|
|
196
196
|
})(BotTypeEnum = ChangeBotTypeForm.BotTypeEnum || (ChangeBotTypeForm.BotTypeEnum = {}));
|
|
197
197
|
})(ChangeBotTypeForm = exports.ChangeBotTypeForm || (exports.ChangeBotTypeForm = {}));
|
|
198
|
-
/**
|
|
199
|
-
* @export
|
|
200
|
-
* @namespace ChatEvent
|
|
201
|
-
*/
|
|
202
|
-
var ChatEvent;
|
|
203
|
-
(function (ChatEvent) {
|
|
204
|
-
/**
|
|
205
|
-
* @export
|
|
206
|
-
* @enum {string}
|
|
207
|
-
*/
|
|
208
|
-
let TagEnum;
|
|
209
|
-
(function (TagEnum) {
|
|
210
|
-
TagEnum["STATUSCHANGED"] = "STATUS_CHANGED";
|
|
211
|
-
TagEnum["FOLLOWERADDED"] = "FOLLOWER_ADDED";
|
|
212
|
-
TagEnum["FOLLOWERREMOVED"] = "FOLLOWER_REMOVED";
|
|
213
|
-
TagEnum["MEETINGSCHEDULED"] = "MEETING_SCHEDULED";
|
|
214
|
-
TagEnum["MEETINGRESCHEDULED"] = "MEETING_RESCHEDULED";
|
|
215
|
-
TagEnum["MEETINGCANCELLED"] = "MEETING_CANCELLED";
|
|
216
|
-
TagEnum["ASSIGNEECHANGED"] = "ASSIGNEE_CHANGED";
|
|
217
|
-
TagEnum["ASSIGNEEREMOVED"] = "ASSIGNEE_REMOVED";
|
|
218
|
-
TagEnum["ALLFOLLOWERSREMOVED"] = "ALL_FOLLOWERS_REMOVED";
|
|
219
|
-
})(TagEnum = ChatEvent.TagEnum || (ChatEvent.TagEnum = {}));
|
|
220
|
-
})(ChatEvent = exports.ChatEvent || (exports.ChatEvent = {}));
|
|
221
198
|
/**
|
|
222
199
|
*
|
|
223
200
|
* @export
|
|
@@ -12426,47 +12403,6 @@ const RoomsApiFetchParamCreator = function (configuration) {
|
|
|
12426
12403
|
options: localVarRequestOptions,
|
|
12427
12404
|
};
|
|
12428
12405
|
},
|
|
12429
|
-
/**
|
|
12430
|
-
*
|
|
12431
|
-
* @summary Retrieve history for room
|
|
12432
|
-
* @param {string} roomId
|
|
12433
|
-
* @param {*} [options] Override http request option.
|
|
12434
|
-
* @throws {RequiredError}
|
|
12435
|
-
*/
|
|
12436
|
-
getHistory(roomId, options = {}) {
|
|
12437
|
-
// verify required parameter 'roomId' is not null or undefined
|
|
12438
|
-
if (roomId === null || roomId === undefined) {
|
|
12439
|
-
throw new RequiredError('roomId', 'Required parameter roomId was null or undefined when calling getHistory.');
|
|
12440
|
-
}
|
|
12441
|
-
const localVarPath = `/rooms/{roomId}/history`
|
|
12442
|
-
.replace(`{${"roomId"}}`, encodeURIComponent(String(roomId)));
|
|
12443
|
-
const localVarUrlObj = url.parse(localVarPath, true);
|
|
12444
|
-
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
12445
|
-
const localVarHeaderParameter = {};
|
|
12446
|
-
const localVarQueryParameter = {};
|
|
12447
|
-
// authentication apiKey required
|
|
12448
|
-
if (configuration && configuration.apiKey) {
|
|
12449
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
12450
|
-
? configuration.apiKey("X-Api-Key")
|
|
12451
|
-
: configuration.apiKey;
|
|
12452
|
-
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
12453
|
-
}
|
|
12454
|
-
// authentication fingerprintAuth required
|
|
12455
|
-
if (configuration && configuration.apiKey) {
|
|
12456
|
-
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
12457
|
-
? configuration.apiKey("X-Fingerprint")
|
|
12458
|
-
: configuration.apiKey;
|
|
12459
|
-
localVarHeaderParameter["X-Fingerprint"] = localVarApiKeyValue;
|
|
12460
|
-
}
|
|
12461
|
-
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
12462
|
-
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
12463
|
-
delete localVarUrlObj.search;
|
|
12464
|
-
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
12465
|
-
return {
|
|
12466
|
-
url: url.format(localVarUrlObj),
|
|
12467
|
-
options: localVarRequestOptions,
|
|
12468
|
-
};
|
|
12469
|
-
},
|
|
12470
12406
|
/**
|
|
12471
12407
|
*
|
|
12472
12408
|
* @summary Get ids of agents not following the room
|
|
@@ -12879,26 +12815,6 @@ const RoomsApiFp = function (configuration) {
|
|
|
12879
12815
|
});
|
|
12880
12816
|
};
|
|
12881
12817
|
},
|
|
12882
|
-
/**
|
|
12883
|
-
*
|
|
12884
|
-
* @summary Retrieve history for room
|
|
12885
|
-
* @param {string} roomId
|
|
12886
|
-
* @param {*} [options] Override http request option.
|
|
12887
|
-
* @throws {RequiredError}
|
|
12888
|
-
*/
|
|
12889
|
-
getHistory(roomId, options) {
|
|
12890
|
-
const localVarFetchArgs = (0, exports.RoomsApiFetchParamCreator)(configuration).getHistory(roomId, options);
|
|
12891
|
-
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
12892
|
-
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
12893
|
-
if (response.status >= 200 && response.status < 300) {
|
|
12894
|
-
return response.json();
|
|
12895
|
-
}
|
|
12896
|
-
else {
|
|
12897
|
-
throw response;
|
|
12898
|
-
}
|
|
12899
|
-
});
|
|
12900
|
-
};
|
|
12901
|
-
},
|
|
12902
12818
|
/**
|
|
12903
12819
|
*
|
|
12904
12820
|
* @summary Get ids of agents not following the room
|
|
@@ -13123,16 +13039,6 @@ const RoomsApiFactory = function (configuration, fetch, basePath) {
|
|
|
13123
13039
|
getGuestProfilesByQuery(query, options) {
|
|
13124
13040
|
return (0, exports.RoomsApiFp)(configuration).getGuestProfilesByQuery(query, options)(fetch, basePath);
|
|
13125
13041
|
},
|
|
13126
|
-
/**
|
|
13127
|
-
*
|
|
13128
|
-
* @summary Retrieve history for room
|
|
13129
|
-
* @param {string} roomId
|
|
13130
|
-
* @param {*} [options] Override http request option.
|
|
13131
|
-
* @throws {RequiredError}
|
|
13132
|
-
*/
|
|
13133
|
-
getHistory(roomId, options) {
|
|
13134
|
-
return (0, exports.RoomsApiFp)(configuration).getHistory(roomId, options)(fetch, basePath);
|
|
13135
|
-
},
|
|
13136
13042
|
/**
|
|
13137
13043
|
*
|
|
13138
13044
|
* @summary Get ids of agents not following the room
|
|
@@ -13307,17 +13213,6 @@ class RoomsApi extends BaseAPI {
|
|
|
13307
13213
|
getGuestProfilesByQuery(query, options) {
|
|
13308
13214
|
return (0, exports.RoomsApiFp)(this.configuration).getGuestProfilesByQuery(query, options)(this.fetch, this.basePath);
|
|
13309
13215
|
}
|
|
13310
|
-
/**
|
|
13311
|
-
*
|
|
13312
|
-
* @summary Retrieve history for room
|
|
13313
|
-
* @param {string} roomId
|
|
13314
|
-
* @param {*} [options] Override http request option.
|
|
13315
|
-
* @throws {RequiredError}
|
|
13316
|
-
* @memberof RoomsApi
|
|
13317
|
-
*/
|
|
13318
|
-
getHistory(roomId, options) {
|
|
13319
|
-
return (0, exports.RoomsApiFp)(this.configuration).getHistory(roomId, options)(this.fetch, this.basePath);
|
|
13320
|
-
}
|
|
13321
13216
|
/**
|
|
13322
13217
|
*
|
|
13323
13218
|
* @summary Get ids of agents not following the room
|