@otr-app/shared-backend-generated-client 2.3.272 → 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 -0
- package/dist/angular/api/caseController.service.ts +12 -4
- 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 -0
- 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 +16 -0
- 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/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 -0
- package/dist/typescript/model/models.js +11 -0
- 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,
|
|
@@ -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,6 +135,8 @@ export * from './CoachingCardsModel';
|
|
|
135
135
|
export * from './CoachingLinks';
|
|
136
136
|
export * from './CommonHeader';
|
|
137
137
|
export * from './ConfidenceField';
|
|
138
|
+
export * from './Contact';
|
|
139
|
+
export * from './ContactList';
|
|
138
140
|
export * from './ContactTimelineResponse';
|
|
139
141
|
export * from './ConvertPdfToImageModel';
|
|
140
142
|
export * from './ConvertPdfToImageRequest';
|
|
@@ -395,6 +397,9 @@ export * from './InitiateCaseCounterRequest';
|
|
|
395
397
|
export * from './InitiateCaseCounterResponse';
|
|
396
398
|
export * from './InsertCaseLineItemResponse';
|
|
397
399
|
export * from './InsertInvoiceLineItemRequest';
|
|
400
|
+
export * from './IntercomCreateTicketResponse';
|
|
401
|
+
export * from './IntercomSearchTicketsResponse';
|
|
402
|
+
export * from './IntercomTicketAttributes';
|
|
398
403
|
export * from './InviteHouseholdMateRequest';
|
|
399
404
|
export * from './InviteLawyerToLawfirmRequest';
|
|
400
405
|
export * from './IsRefundEligibleResponse';
|
|
@@ -437,6 +442,7 @@ export * from './LetterOfEngagement';
|
|
|
437
442
|
export * from './LineItem';
|
|
438
443
|
export * from './LineItemModel';
|
|
439
444
|
export * from './LineItemRequest';
|
|
445
|
+
export * from './LinkedObjects';
|
|
440
446
|
export * from './ListAgentBookingsResponse';
|
|
441
447
|
export * from './ListBillingProductsResponse';
|
|
442
448
|
export * from './ListBillingSubscribersResponse';
|
|
@@ -673,9 +679,14 @@ export * from './SyncStripeTransfersRequest';
|
|
|
673
679
|
export * from './SyncStripeTransfersResponse';
|
|
674
680
|
export * from './TemporalUnit';
|
|
675
681
|
export * from './TicketLeadDomain';
|
|
682
|
+
export * from './TicketPart';
|
|
683
|
+
export * from './TicketPartsWrapper';
|
|
676
684
|
export * from './TicketReviewRequest';
|
|
677
685
|
export * from './TicketReviewRequestReq';
|
|
678
686
|
export * from './TicketReviewRequestRes';
|
|
687
|
+
export * from './TicketType';
|
|
688
|
+
export * from './TicketTypeAttribute';
|
|
689
|
+
export * from './TicketTypeAttributesWrapper';
|
|
679
690
|
export * from './TimeZone';
|
|
680
691
|
export * from './TimeZoneReq';
|
|
681
692
|
export * from './TimeZoneRes';
|
|
@@ -147,6 +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("./Contact"), exports);
|
|
151
|
+
__exportStar(require("./ContactList"), exports);
|
|
150
152
|
__exportStar(require("./ContactTimelineResponse"), exports);
|
|
151
153
|
__exportStar(require("./ConvertPdfToImageModel"), exports);
|
|
152
154
|
__exportStar(require("./ConvertPdfToImageRequest"), exports);
|
|
@@ -407,6 +409,9 @@ __exportStar(require("./InitiateCaseCounterRequest"), exports);
|
|
|
407
409
|
__exportStar(require("./InitiateCaseCounterResponse"), exports);
|
|
408
410
|
__exportStar(require("./InsertCaseLineItemResponse"), exports);
|
|
409
411
|
__exportStar(require("./InsertInvoiceLineItemRequest"), exports);
|
|
412
|
+
__exportStar(require("./IntercomCreateTicketResponse"), exports);
|
|
413
|
+
__exportStar(require("./IntercomSearchTicketsResponse"), exports);
|
|
414
|
+
__exportStar(require("./IntercomTicketAttributes"), exports);
|
|
410
415
|
__exportStar(require("./InviteHouseholdMateRequest"), exports);
|
|
411
416
|
__exportStar(require("./InviteLawyerToLawfirmRequest"), exports);
|
|
412
417
|
__exportStar(require("./IsRefundEligibleResponse"), exports);
|
|
@@ -449,6 +454,7 @@ __exportStar(require("./LetterOfEngagement"), exports);
|
|
|
449
454
|
__exportStar(require("./LineItem"), exports);
|
|
450
455
|
__exportStar(require("./LineItemModel"), exports);
|
|
451
456
|
__exportStar(require("./LineItemRequest"), exports);
|
|
457
|
+
__exportStar(require("./LinkedObjects"), exports);
|
|
452
458
|
__exportStar(require("./ListAgentBookingsResponse"), exports);
|
|
453
459
|
__exportStar(require("./ListBillingProductsResponse"), exports);
|
|
454
460
|
__exportStar(require("./ListBillingSubscribersResponse"), exports);
|
|
@@ -685,9 +691,14 @@ __exportStar(require("./SyncStripeTransfersRequest"), exports);
|
|
|
685
691
|
__exportStar(require("./SyncStripeTransfersResponse"), exports);
|
|
686
692
|
__exportStar(require("./TemporalUnit"), exports);
|
|
687
693
|
__exportStar(require("./TicketLeadDomain"), exports);
|
|
694
|
+
__exportStar(require("./TicketPart"), exports);
|
|
695
|
+
__exportStar(require("./TicketPartsWrapper"), exports);
|
|
688
696
|
__exportStar(require("./TicketReviewRequest"), exports);
|
|
689
697
|
__exportStar(require("./TicketReviewRequestReq"), exports);
|
|
690
698
|
__exportStar(require("./TicketReviewRequestRes"), exports);
|
|
699
|
+
__exportStar(require("./TicketType"), exports);
|
|
700
|
+
__exportStar(require("./TicketTypeAttribute"), exports);
|
|
701
|
+
__exportStar(require("./TicketTypeAttributesWrapper"), exports);
|
|
691
702
|
__exportStar(require("./TimeZone"), exports);
|
|
692
703
|
__exportStar(require("./TimeZoneReq"), exports);
|
|
693
704
|
__exportStar(require("./TimeZoneRes"), exports);
|