@otr-app/shared-backend-generated-client 2.4.24 → 2.4.26
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/angular/api/dashboardController.service.ts +9 -4
- package/dist/angular/model/listPhoneCallsModel.ts +1 -0
- package/dist/angular/model/violationModel.ts +1 -0
- package/dist/angular/model/workflowViolationModel.ts +1 -0
- package/dist/otrBackendService.js +5 -0
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/DashboardControllerApi.d.ts +2 -1
- package/dist/typescript/api/DashboardControllerApi.js +5 -1
- package/dist/typescript/model/IntercomNext.d.ts +15 -0
- package/dist/typescript/model/IntercomNext.js +13 -0
- package/dist/typescript/model/IntercomPages.d.ts +19 -0
- package/dist/typescript/model/IntercomPages.js +13 -0
- package/dist/typescript/model/IntercomSearchConversationsResponse.d.ts +1 -0
- package/dist/typescript/model/ListPhoneCallsModel.d.ts +1 -0
- package/dist/typescript/model/UserAccountModel.d.ts +1 -0
- package/dist/typescript/model/ViolationModel.d.ts +1 -0
- package/dist/typescript/model/WorkflowViolationModel.d.ts +1 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/package.json +1 -1
|
@@ -85,6 +85,7 @@ export declare class DashboardControllerApi {
|
|
|
85
85
|
* @param agentName agentName
|
|
86
86
|
* @param callQueueName callQueueName
|
|
87
87
|
* @param callStatus callStatus
|
|
88
|
+
* @param callStatusName callStatusName
|
|
88
89
|
* @param customerName customerName
|
|
89
90
|
* @param direction direction
|
|
90
91
|
* @param endDate endDate
|
|
@@ -101,5 +102,5 @@ export declare class DashboardControllerApi {
|
|
|
101
102
|
* @param totalCalls totalCalls
|
|
102
103
|
* @param totalOtrAccounts totalOtrAccounts
|
|
103
104
|
*/
|
|
104
|
-
listPhoneCallsUsingGET(agentId?: number, agentName?: string, callQueueName?: string, callStatus?: 'ABANDONED' | 'BLOCKED' | 'BUSY' | 'COMPLETED' | 'CONNECTING' | 'CONNECTION_FAILED' | 'DEFAULT' | 'DISCONNECTED' | 'ENQUEUED' | 'IN_PROGRESS' | 'MISSED_CALL' | 'ON_HOLD' | 'RECENTLY_COMPLETED' | 'RESTRICTED' | 'VOICEMAIL' | 'VOICEMAIL_RECORDING_IN_PROGRESS', customerName?: string, direction?: 'INCOMING' | 'OUTGOING', endDate?: string, ivrName?: string, length?: number, page?: number, phoneNumber?: string, shouldIncludePhoneCalls?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, teamName?: string, timeZoneId?: string, totalCalls?: number, totalOtrAccounts?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListPhoneCallsResponse>;
|
|
105
|
+
listPhoneCallsUsingGET(agentId?: number, agentName?: string, callQueueName?: string, callStatus?: 'ABANDONED' | 'BLOCKED' | 'BUSY' | 'COMPLETED' | 'CONNECTING' | 'CONNECTION_FAILED' | 'DEFAULT' | 'DISCONNECTED' | 'ENQUEUED' | 'IN_PROGRESS' | 'MISSED_CALL' | 'ON_HOLD' | 'RECENTLY_COMPLETED' | 'RESTRICTED' | 'VOICEMAIL' | 'VOICEMAIL_RECORDING_IN_PROGRESS', callStatusName?: string, customerName?: string, direction?: 'INCOMING' | 'OUTGOING', endDate?: string, ivrName?: string, length?: number, page?: number, phoneNumber?: string, shouldIncludePhoneCalls?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, teamName?: string, timeZoneId?: string, totalCalls?: number, totalOtrAccounts?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListPhoneCallsResponse>;
|
|
105
106
|
}
|
|
@@ -280,6 +280,7 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
280
280
|
* @param agentName agentName
|
|
281
281
|
* @param callQueueName callQueueName
|
|
282
282
|
* @param callStatus callStatus
|
|
283
|
+
* @param callStatusName callStatusName
|
|
283
284
|
* @param customerName customerName
|
|
284
285
|
* @param direction direction
|
|
285
286
|
* @param endDate endDate
|
|
@@ -296,7 +297,7 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
296
297
|
* @param totalCalls totalCalls
|
|
297
298
|
* @param totalOtrAccounts totalOtrAccounts
|
|
298
299
|
*/
|
|
299
|
-
DashboardControllerApi.prototype.listPhoneCallsUsingGET = function (agentId, agentName, callQueueName, callStatus, customerName, direction, endDate, ivrName, length, page, phoneNumber, shouldIncludePhoneCalls, sortBy, sortOrder, startDate, teamName, timeZoneId, totalCalls, totalOtrAccounts, extraHttpRequestParams) {
|
|
300
|
+
DashboardControllerApi.prototype.listPhoneCallsUsingGET = function (agentId, agentName, callQueueName, callStatus, callStatusName, customerName, direction, endDate, ivrName, length, page, phoneNumber, shouldIncludePhoneCalls, sortBy, sortOrder, startDate, teamName, timeZoneId, totalCalls, totalOtrAccounts, extraHttpRequestParams) {
|
|
300
301
|
var localVarPath = this.basePath + '/api/v1/console/phone-calls';
|
|
301
302
|
var queryParameters = {};
|
|
302
303
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
@@ -312,6 +313,9 @@ var DashboardControllerApi = /** @class */ (function () {
|
|
|
312
313
|
if (callStatus !== undefined) {
|
|
313
314
|
queryParameters['callStatus'] = callStatus;
|
|
314
315
|
}
|
|
316
|
+
if (callStatusName !== undefined) {
|
|
317
|
+
queryParameters['callStatusName'] = callStatusName;
|
|
318
|
+
}
|
|
315
319
|
if (customerName !== undefined) {
|
|
316
320
|
queryParameters['customerName'] = customerName;
|
|
317
321
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
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
|
+
export interface IntercomNext {
|
|
13
|
+
"page"?: number;
|
|
14
|
+
"starting_after"?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
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
|
+
import * as models from './models';
|
|
13
|
+
export interface IntercomPages {
|
|
14
|
+
"next"?: models.IntercomNext;
|
|
15
|
+
"page"?: number;
|
|
16
|
+
"per_page"?: number;
|
|
17
|
+
"total_pages"?: number;
|
|
18
|
+
"type"?: string;
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -17,6 +17,7 @@ export interface ListPhoneCallsModel {
|
|
|
17
17
|
"callQueueName"?: string;
|
|
18
18
|
"callStartDateUtc"?: string;
|
|
19
19
|
"callStatus"?: ListPhoneCallsModel.CallStatusEnum;
|
|
20
|
+
"callStatusName"?: string;
|
|
20
21
|
"customerName"?: string;
|
|
21
22
|
"holdDurationInSeconds"?: number;
|
|
22
23
|
"ivrDurationInSeconds"?: number;
|
|
@@ -403,6 +403,8 @@ export * from './InsertCaseLineItemResponse';
|
|
|
403
403
|
export * from './InsertInvoiceLineItemRequest';
|
|
404
404
|
export * from './IntercomConversationResponse';
|
|
405
405
|
export * from './IntercomCreateTicketResponse';
|
|
406
|
+
export * from './IntercomNext';
|
|
407
|
+
export * from './IntercomPages';
|
|
406
408
|
export * from './IntercomSearchConversationsResponse';
|
|
407
409
|
export * from './IntercomSearchTicketsResponse';
|
|
408
410
|
export * from './IntercomTicketAttributes';
|
|
@@ -415,6 +415,8 @@ __exportStar(require("./InsertCaseLineItemResponse"), exports);
|
|
|
415
415
|
__exportStar(require("./InsertInvoiceLineItemRequest"), exports);
|
|
416
416
|
__exportStar(require("./IntercomConversationResponse"), exports);
|
|
417
417
|
__exportStar(require("./IntercomCreateTicketResponse"), exports);
|
|
418
|
+
__exportStar(require("./IntercomNext"), exports);
|
|
419
|
+
__exportStar(require("./IntercomPages"), exports);
|
|
418
420
|
__exportStar(require("./IntercomSearchConversationsResponse"), exports);
|
|
419
421
|
__exportStar(require("./IntercomSearchTicketsResponse"), exports);
|
|
420
422
|
__exportStar(require("./IntercomTicketAttributes"), exports);
|