@otr-app/shared-backend-generated-client 2.3.271 → 2.3.273
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/.openapi-generator/FILES +11 -1
- package/dist/angular/api/caseController.service.ts +12 -4
- package/dist/angular/api/contactLoopWebhookController.service.ts +8 -10
- package/dist/angular/api/userController.service.ts +12 -4
- package/dist/angular/model/contact.ts +19 -0
- package/dist/angular/model/contactList.ts +19 -0
- package/dist/angular/model/getSupportTicketsResponse.ts +2 -0
- package/dist/angular/model/intercomCreateTicketResponse.ts +40 -0
- package/dist/angular/model/intercomSearchTicketsResponse.ts +19 -0
- package/dist/angular/model/intercomTicketAttributes.ts +18 -0
- package/dist/angular/model/linkedObjects.ts +18 -0
- package/dist/angular/model/models.ts +11 -1
- package/dist/angular/model/ticketPart.ts +21 -0
- package/dist/angular/model/ticketPartsWrapper.ts +19 -0
- package/dist/angular/model/ticketType.ts +26 -0
- package/dist/angular/model/ticketTypeAttribute.ts +23 -0
- package/dist/angular/model/ticketTypeAttributesWrapper.ts +19 -0
- package/dist/otrBackendService.js +21 -5
- package/dist/otrBackendService.min.js +4 -4
- package/dist/typescript/api/CaseControllerApi.d.ts +2 -1
- package/dist/typescript/api/CaseControllerApi.js +5 -1
- package/dist/typescript/api/ContactLoopWebhookControllerApi.d.ts +2 -3
- package/dist/typescript/api/ContactLoopWebhookControllerApi.js +6 -6
- package/dist/typescript/api/UserControllerApi.d.ts +2 -1
- package/dist/typescript/api/UserControllerApi.js +5 -1
- package/dist/typescript/model/Contact.d.ts +16 -0
- package/dist/typescript/model/Contact.js +13 -0
- package/dist/typescript/model/ContactList.d.ts +16 -0
- package/dist/typescript/model/ContactList.js +13 -0
- package/dist/typescript/model/GetSupportTicketsResponse.d.ts +1 -0
- package/dist/typescript/model/IntercomCreateTicketResponse.d.ts +33 -0
- package/dist/typescript/model/IntercomCreateTicketResponse.js +13 -0
- package/dist/typescript/model/IntercomSearchTicketsResponse.d.ts +16 -0
- package/dist/typescript/model/IntercomSearchTicketsResponse.js +13 -0
- package/dist/typescript/model/IntercomTicketAttributes.d.ts +15 -0
- package/dist/typescript/model/IntercomTicketAttributes.js +13 -0
- package/dist/typescript/model/LinkedObjects.d.ts +15 -0
- package/dist/typescript/model/LinkedObjects.js +13 -0
- package/dist/typescript/model/TicketPart.d.ts +18 -0
- package/dist/typescript/model/TicketPart.js +13 -0
- package/dist/typescript/model/TicketPartsWrapper.d.ts +16 -0
- package/dist/typescript/model/TicketPartsWrapper.js +13 -0
- package/dist/typescript/model/TicketType.d.ts +23 -0
- package/dist/typescript/model/TicketType.js +13 -0
- package/dist/typescript/model/TicketTypeAttribute.d.ts +20 -0
- package/dist/typescript/model/TicketTypeAttribute.js +13 -0
- package/dist/typescript/model/TicketTypeAttributesWrapper.d.ts +16 -0
- package/dist/typescript/model/TicketTypeAttributesWrapper.js +13 -0
- package/dist/typescript/model/models.d.ts +11 -1
- package/dist/typescript/model/models.js +11 -1
- package/package.json +1 -1
|
@@ -54,8 +54,9 @@ export declare class CaseControllerApi {
|
|
|
54
54
|
*
|
|
55
55
|
* @summary getSupportTicketsForCase
|
|
56
56
|
* @param caseId caseId
|
|
57
|
+
* @param limit limit
|
|
57
58
|
*/
|
|
58
|
-
getSupportTicketsForCaseUsingGET(caseId: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetSupportTicketsResponse>;
|
|
59
|
+
getSupportTicketsForCaseUsingGET(caseId: string, limit?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetSupportTicketsResponse>;
|
|
59
60
|
/**
|
|
60
61
|
*
|
|
61
62
|
* @summary initiateCaseAndChargeCustomer
|
|
@@ -164,8 +164,9 @@ var CaseControllerApi = /** @class */ (function () {
|
|
|
164
164
|
*
|
|
165
165
|
* @summary getSupportTicketsForCase
|
|
166
166
|
* @param caseId caseId
|
|
167
|
+
* @param limit limit
|
|
167
168
|
*/
|
|
168
|
-
CaseControllerApi.prototype.getSupportTicketsForCaseUsingGET = function (caseId, extraHttpRequestParams) {
|
|
169
|
+
CaseControllerApi.prototype.getSupportTicketsForCaseUsingGET = function (caseId, limit, extraHttpRequestParams) {
|
|
169
170
|
var localVarPath = this.basePath + '/api/v1/cases/{caseId}/support-tickets'
|
|
170
171
|
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
171
172
|
var queryParameters = {};
|
|
@@ -174,6 +175,9 @@ var CaseControllerApi = /** @class */ (function () {
|
|
|
174
175
|
if (caseId === null || caseId === undefined) {
|
|
175
176
|
throw new Error('Required parameter caseId was null or undefined when calling getSupportTicketsForCaseUsingGET.');
|
|
176
177
|
}
|
|
178
|
+
if (limit !== undefined) {
|
|
179
|
+
queryParameters['limit'] = limit;
|
|
180
|
+
}
|
|
177
181
|
var httpRequestParams = {
|
|
178
182
|
method: 'GET',
|
|
179
183
|
url: localVarPath,
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/// <reference types="angular" />
|
|
13
|
-
import * as models from '../model/models';
|
|
14
13
|
export declare class ContactLoopWebhookControllerApi {
|
|
15
14
|
protected $http: ng.IHttpService;
|
|
16
15
|
protected $httpParamSerializer?: (d: any) => any;
|
|
@@ -21,7 +20,7 @@ export declare class ContactLoopWebhookControllerApi {
|
|
|
21
20
|
/**
|
|
22
21
|
*
|
|
23
22
|
* @summary handleContactLoopEvent
|
|
24
|
-
* @param
|
|
23
|
+
* @param requestString requestString
|
|
25
24
|
*/
|
|
26
|
-
handleContactLoopEventUsingPOST(
|
|
25
|
+
handleContactLoopEventUsingPOST(requestString: string, extraHttpRequestParams?: any): ng.IHttpPromise<string>;
|
|
27
26
|
}
|
|
@@ -26,20 +26,20 @@ var ContactLoopWebhookControllerApi = /** @class */ (function () {
|
|
|
26
26
|
/**
|
|
27
27
|
*
|
|
28
28
|
* @summary handleContactLoopEvent
|
|
29
|
-
* @param
|
|
29
|
+
* @param requestString requestString
|
|
30
30
|
*/
|
|
31
|
-
ContactLoopWebhookControllerApi.prototype.handleContactLoopEventUsingPOST = function (
|
|
31
|
+
ContactLoopWebhookControllerApi.prototype.handleContactLoopEventUsingPOST = function (requestString, extraHttpRequestParams) {
|
|
32
32
|
var localVarPath = this.basePath + '/api/v1/contact-loop/webhook';
|
|
33
33
|
var queryParameters = {};
|
|
34
34
|
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
35
|
-
// verify required parameter '
|
|
36
|
-
if (
|
|
37
|
-
throw new Error('Required parameter
|
|
35
|
+
// verify required parameter 'requestString' is not null or undefined
|
|
36
|
+
if (requestString === null || requestString === undefined) {
|
|
37
|
+
throw new Error('Required parameter requestString was null or undefined when calling handleContactLoopEventUsingPOST.');
|
|
38
38
|
}
|
|
39
39
|
var httpRequestParams = {
|
|
40
40
|
method: 'POST',
|
|
41
41
|
url: localVarPath,
|
|
42
|
-
data:
|
|
42
|
+
data: requestString,
|
|
43
43
|
params: queryParameters,
|
|
44
44
|
headers: headerParams
|
|
45
45
|
};
|
|
@@ -41,8 +41,9 @@ export declare class UserControllerApi {
|
|
|
41
41
|
*
|
|
42
42
|
* @summary getSupportTicketsForUser
|
|
43
43
|
* @param email email
|
|
44
|
+
* @param limit limit
|
|
44
45
|
*/
|
|
45
|
-
getSupportTicketsForUserUsingGET(email: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetSupportTicketsResponse>;
|
|
46
|
+
getSupportTicketsForUserUsingGET(email: string, limit?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetSupportTicketsResponse>;
|
|
46
47
|
/**
|
|
47
48
|
*
|
|
48
49
|
* @summary getUserDetails
|
|
@@ -104,8 +104,9 @@ var UserControllerApi = /** @class */ (function () {
|
|
|
104
104
|
*
|
|
105
105
|
* @summary getSupportTicketsForUser
|
|
106
106
|
* @param email email
|
|
107
|
+
* @param limit limit
|
|
107
108
|
*/
|
|
108
|
-
UserControllerApi.prototype.getSupportTicketsForUserUsingGET = function (email, extraHttpRequestParams) {
|
|
109
|
+
UserControllerApi.prototype.getSupportTicketsForUserUsingGET = function (email, limit, extraHttpRequestParams) {
|
|
109
110
|
var localVarPath = this.basePath + '/api/v1/users/{email}/support-tickets'
|
|
110
111
|
.replace('{' + 'email' + '}', encodeURIComponent(String(email)));
|
|
111
112
|
var queryParameters = {};
|
|
@@ -114,6 +115,9 @@ var UserControllerApi = /** @class */ (function () {
|
|
|
114
115
|
if (email === null || email === undefined) {
|
|
115
116
|
throw new Error('Required parameter email was null or undefined when calling getSupportTicketsForUserUsingGET.');
|
|
116
117
|
}
|
|
118
|
+
if (limit !== undefined) {
|
|
119
|
+
queryParameters['limit'] = limit;
|
|
120
|
+
}
|
|
117
121
|
var httpRequestParams = {
|
|
118
122
|
method: 'GET',
|
|
119
123
|
url: localVarPath,
|
|
@@ -0,0 +1,16 @@
|
|
|
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 Contact {
|
|
13
|
+
"external_id"?: string;
|
|
14
|
+
"id"?: string;
|
|
15
|
+
"type"?: string;
|
|
16
|
+
}
|
|
@@ -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,16 @@
|
|
|
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 ContactList {
|
|
14
|
+
"contacts"?: Array<models.Contact>;
|
|
15
|
+
"type"?: string;
|
|
16
|
+
}
|
|
@@ -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,33 @@
|
|
|
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 IntercomCreateTicketResponse {
|
|
14
|
+
"admin_assignee_id"?: string;
|
|
15
|
+
"category"?: string;
|
|
16
|
+
"contacts"?: models.ContactList;
|
|
17
|
+
"created_at"?: number;
|
|
18
|
+
"id"?: string;
|
|
19
|
+
"is_shared"?: boolean;
|
|
20
|
+
"linked_objects"?: models.LinkedObjects;
|
|
21
|
+
"open"?: boolean;
|
|
22
|
+
"snoozed_until"?: number;
|
|
23
|
+
"team_assignee_id"?: string;
|
|
24
|
+
"ticket_attributes"?: models.IntercomTicketAttributes;
|
|
25
|
+
"ticket_id"?: string;
|
|
26
|
+
"ticket_parts"?: models.TicketPartsWrapper;
|
|
27
|
+
"ticket_state"?: string;
|
|
28
|
+
"ticket_state_external_label"?: string;
|
|
29
|
+
"ticket_state_internal_label"?: string;
|
|
30
|
+
"ticket_type"?: models.TicketType;
|
|
31
|
+
"type"?: string;
|
|
32
|
+
"updated_at"?: number;
|
|
33
|
+
}
|
|
@@ -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,16 @@
|
|
|
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 IntercomSearchTicketsResponse {
|
|
14
|
+
"tickets"?: Array<models.IntercomCreateTicketResponse>;
|
|
15
|
+
"total_count"?: number;
|
|
16
|
+
}
|
|
@@ -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,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 IntercomTicketAttributes {
|
|
13
|
+
"_default_description_"?: string;
|
|
14
|
+
"_default_title_"?: 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,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 LinkedObjects {
|
|
13
|
+
"linked_conversations"?: Array<string>;
|
|
14
|
+
"linked_tickets"?: Array<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,18 @@
|
|
|
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 TicketPart {
|
|
13
|
+
"content"?: string;
|
|
14
|
+
"created_at"?: number;
|
|
15
|
+
"id"?: string;
|
|
16
|
+
"type"?: string;
|
|
17
|
+
"updated_at"?: number;
|
|
18
|
+
}
|
|
@@ -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,16 @@
|
|
|
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 TicketPartsWrapper {
|
|
14
|
+
"ticket_parts"?: Array<models.TicketPart>;
|
|
15
|
+
"type"?: string;
|
|
16
|
+
}
|
|
@@ -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,23 @@
|
|
|
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 TicketType {
|
|
14
|
+
"archived"?: boolean;
|
|
15
|
+
"created_at"?: number;
|
|
16
|
+
"description"?: string;
|
|
17
|
+
"id"?: string;
|
|
18
|
+
"is_internal"?: boolean;
|
|
19
|
+
"name"?: string;
|
|
20
|
+
"ticket_type_attributes"?: models.TicketTypeAttributesWrapper;
|
|
21
|
+
"type"?: string;
|
|
22
|
+
"updated_at"?: number;
|
|
23
|
+
}
|
|
@@ -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,20 @@
|
|
|
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 TicketTypeAttribute {
|
|
13
|
+
"data_type"?: string;
|
|
14
|
+
"description"?: string;
|
|
15
|
+
"id"?: string;
|
|
16
|
+
"name"?: string;
|
|
17
|
+
"required_to_create"?: boolean;
|
|
18
|
+
"type"?: string;
|
|
19
|
+
"visible_on_create"?: boolean;
|
|
20
|
+
}
|
|
@@ -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,16 @@
|
|
|
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 TicketTypeAttributesWrapper {
|
|
14
|
+
"data"?: Array<models.TicketTypeAttribute>;
|
|
15
|
+
"type"?: string;
|
|
16
|
+
}
|
|
@@ -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 });
|
|
@@ -135,7 +135,8 @@ export * from './CoachingCardsModel';
|
|
|
135
135
|
export * from './CoachingLinks';
|
|
136
136
|
export * from './CommonHeader';
|
|
137
137
|
export * from './ConfidenceField';
|
|
138
|
-
export * from './
|
|
138
|
+
export * from './Contact';
|
|
139
|
+
export * from './ContactList';
|
|
139
140
|
export * from './ContactTimelineResponse';
|
|
140
141
|
export * from './ConvertPdfToImageModel';
|
|
141
142
|
export * from './ConvertPdfToImageRequest';
|
|
@@ -396,6 +397,9 @@ export * from './InitiateCaseCounterRequest';
|
|
|
396
397
|
export * from './InitiateCaseCounterResponse';
|
|
397
398
|
export * from './InsertCaseLineItemResponse';
|
|
398
399
|
export * from './InsertInvoiceLineItemRequest';
|
|
400
|
+
export * from './IntercomCreateTicketResponse';
|
|
401
|
+
export * from './IntercomSearchTicketsResponse';
|
|
402
|
+
export * from './IntercomTicketAttributes';
|
|
399
403
|
export * from './InviteHouseholdMateRequest';
|
|
400
404
|
export * from './InviteLawyerToLawfirmRequest';
|
|
401
405
|
export * from './IsRefundEligibleResponse';
|
|
@@ -438,6 +442,7 @@ export * from './LetterOfEngagement';
|
|
|
438
442
|
export * from './LineItem';
|
|
439
443
|
export * from './LineItemModel';
|
|
440
444
|
export * from './LineItemRequest';
|
|
445
|
+
export * from './LinkedObjects';
|
|
441
446
|
export * from './ListAgentBookingsResponse';
|
|
442
447
|
export * from './ListBillingProductsResponse';
|
|
443
448
|
export * from './ListBillingSubscribersResponse';
|
|
@@ -674,9 +679,14 @@ export * from './SyncStripeTransfersRequest';
|
|
|
674
679
|
export * from './SyncStripeTransfersResponse';
|
|
675
680
|
export * from './TemporalUnit';
|
|
676
681
|
export * from './TicketLeadDomain';
|
|
682
|
+
export * from './TicketPart';
|
|
683
|
+
export * from './TicketPartsWrapper';
|
|
677
684
|
export * from './TicketReviewRequest';
|
|
678
685
|
export * from './TicketReviewRequestReq';
|
|
679
686
|
export * from './TicketReviewRequestRes';
|
|
687
|
+
export * from './TicketType';
|
|
688
|
+
export * from './TicketTypeAttribute';
|
|
689
|
+
export * from './TicketTypeAttributesWrapper';
|
|
680
690
|
export * from './TimeZone';
|
|
681
691
|
export * from './TimeZoneReq';
|
|
682
692
|
export * from './TimeZoneRes';
|
|
@@ -147,7 +147,8 @@ __exportStar(require("./CoachingCardsModel"), exports);
|
|
|
147
147
|
__exportStar(require("./CoachingLinks"), exports);
|
|
148
148
|
__exportStar(require("./CommonHeader"), exports);
|
|
149
149
|
__exportStar(require("./ConfidenceField"), exports);
|
|
150
|
-
__exportStar(require("./
|
|
150
|
+
__exportStar(require("./Contact"), exports);
|
|
151
|
+
__exportStar(require("./ContactList"), exports);
|
|
151
152
|
__exportStar(require("./ContactTimelineResponse"), exports);
|
|
152
153
|
__exportStar(require("./ConvertPdfToImageModel"), exports);
|
|
153
154
|
__exportStar(require("./ConvertPdfToImageRequest"), exports);
|
|
@@ -408,6 +409,9 @@ __exportStar(require("./InitiateCaseCounterRequest"), exports);
|
|
|
408
409
|
__exportStar(require("./InitiateCaseCounterResponse"), exports);
|
|
409
410
|
__exportStar(require("./InsertCaseLineItemResponse"), exports);
|
|
410
411
|
__exportStar(require("./InsertInvoiceLineItemRequest"), exports);
|
|
412
|
+
__exportStar(require("./IntercomCreateTicketResponse"), exports);
|
|
413
|
+
__exportStar(require("./IntercomSearchTicketsResponse"), exports);
|
|
414
|
+
__exportStar(require("./IntercomTicketAttributes"), exports);
|
|
411
415
|
__exportStar(require("./InviteHouseholdMateRequest"), exports);
|
|
412
416
|
__exportStar(require("./InviteLawyerToLawfirmRequest"), exports);
|
|
413
417
|
__exportStar(require("./IsRefundEligibleResponse"), exports);
|
|
@@ -450,6 +454,7 @@ __exportStar(require("./LetterOfEngagement"), exports);
|
|
|
450
454
|
__exportStar(require("./LineItem"), exports);
|
|
451
455
|
__exportStar(require("./LineItemModel"), exports);
|
|
452
456
|
__exportStar(require("./LineItemRequest"), exports);
|
|
457
|
+
__exportStar(require("./LinkedObjects"), exports);
|
|
453
458
|
__exportStar(require("./ListAgentBookingsResponse"), exports);
|
|
454
459
|
__exportStar(require("./ListBillingProductsResponse"), exports);
|
|
455
460
|
__exportStar(require("./ListBillingSubscribersResponse"), exports);
|
|
@@ -686,9 +691,14 @@ __exportStar(require("./SyncStripeTransfersRequest"), exports);
|
|
|
686
691
|
__exportStar(require("./SyncStripeTransfersResponse"), exports);
|
|
687
692
|
__exportStar(require("./TemporalUnit"), exports);
|
|
688
693
|
__exportStar(require("./TicketLeadDomain"), exports);
|
|
694
|
+
__exportStar(require("./TicketPart"), exports);
|
|
695
|
+
__exportStar(require("./TicketPartsWrapper"), exports);
|
|
689
696
|
__exportStar(require("./TicketReviewRequest"), exports);
|
|
690
697
|
__exportStar(require("./TicketReviewRequestReq"), exports);
|
|
691
698
|
__exportStar(require("./TicketReviewRequestRes"), exports);
|
|
699
|
+
__exportStar(require("./TicketType"), exports);
|
|
700
|
+
__exportStar(require("./TicketTypeAttribute"), exports);
|
|
701
|
+
__exportStar(require("./TicketTypeAttributesWrapper"), exports);
|
|
692
702
|
__exportStar(require("./TimeZone"), exports);
|
|
693
703
|
__exportStar(require("./TimeZoneReq"), exports);
|
|
694
704
|
__exportStar(require("./TimeZoneRes"), exports);
|