@otr-app/shared-backend-generated-client 2.4.17 → 2.4.19
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 +13 -0
- package/dist/angular/api/intercomTicketController.service.ts +72 -0
- package/dist/angular/api/lawfirmController.service.ts +12 -4
- package/dist/angular/model/admin.ts +19 -0
- package/dist/angular/model/attachment.ts +18 -0
- package/dist/angular/model/author.ts +20 -0
- package/dist/angular/model/firstContactReply.ts +19 -0
- package/dist/angular/model/intercomConversationResponse.ts +50 -0
- package/dist/angular/model/intercomSearchConversationsResponse.ts +19 -0
- package/dist/angular/model/models.ts +13 -0
- package/dist/angular/model/source.ts +36 -0
- package/dist/angular/model/statistics.ts +35 -0
- package/dist/angular/model/tag.ts +19 -0
- package/dist/angular/model/tags.ts +19 -0
- package/dist/angular/model/teammates.ts +19 -0
- package/dist/angular/model/topic.ts +19 -0
- package/dist/angular/model/topics.ts +20 -0
- package/dist/otrBackendService.js +49 -0
- package/dist/otrBackendService.min.js +5 -5
- package/dist/typescript/api/IntercomTicketControllerApi.d.ts +7 -0
- package/dist/typescript/api/IntercomTicketControllerApi.js +31 -0
- package/dist/typescript/api/LawfirmControllerApi.d.ts +2 -1
- package/dist/typescript/api/LawfirmControllerApi.js +5 -1
- package/dist/typescript/model/Admin.d.ts +16 -0
- package/dist/typescript/model/Admin.js +13 -0
- package/dist/typescript/model/Attachment.d.ts +15 -0
- package/dist/typescript/model/Attachment.js +13 -0
- package/dist/typescript/model/Author.d.ts +17 -0
- package/dist/typescript/model/Author.js +13 -0
- package/dist/typescript/model/FirstContactReply.d.ts +16 -0
- package/dist/typescript/model/FirstContactReply.js +13 -0
- package/dist/typescript/model/IntercomConversationResponse.d.ts +40 -0
- package/dist/typescript/model/IntercomConversationResponse.js +13 -0
- package/dist/typescript/model/IntercomSearchConversationsResponse.d.ts +16 -0
- package/dist/typescript/model/IntercomSearchConversationsResponse.js +13 -0
- package/dist/typescript/model/Source.d.ts +30 -0
- package/dist/typescript/model/Source.js +23 -0
- package/dist/typescript/model/Statistics.d.ts +32 -0
- package/dist/typescript/model/Statistics.js +13 -0
- package/dist/typescript/model/Tag.d.ts +16 -0
- package/dist/typescript/model/Tag.js +13 -0
- package/dist/typescript/model/Tags.d.ts +16 -0
- package/dist/typescript/model/Tags.js +13 -0
- package/dist/typescript/model/Teammates.d.ts +16 -0
- package/dist/typescript/model/Teammates.js +13 -0
- package/dist/typescript/model/Topic.d.ts +16 -0
- package/dist/typescript/model/Topic.js +13 -0
- package/dist/typescript/model/Topics.d.ts +17 -0
- package/dist/typescript/model/Topics.js +13 -0
- package/dist/typescript/model/models.d.ts +13 -0
- package/dist/typescript/model/models.js +13 -0
- package/package.json +1 -1
|
@@ -18,6 +18,13 @@ export declare class IntercomTicketControllerApi {
|
|
|
18
18
|
defaultHeaders: any;
|
|
19
19
|
static $inject: string[];
|
|
20
20
|
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @summary getConversations
|
|
24
|
+
* @param email email
|
|
25
|
+
* @param length length
|
|
26
|
+
*/
|
|
27
|
+
getConversationsUsingGET(email: string, length?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.IntercomSearchConversationsResponse>;
|
|
21
28
|
/**
|
|
22
29
|
*
|
|
23
30
|
* @summary getTickets
|
|
@@ -23,6 +23,37 @@ var IntercomTicketControllerApi = /** @class */ (function () {
|
|
|
23
23
|
this.basePath = basePath;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @summary getConversations
|
|
29
|
+
* @param email email
|
|
30
|
+
* @param length length
|
|
31
|
+
*/
|
|
32
|
+
IntercomTicketControllerApi.prototype.getConversationsUsingGET = function (email, length, extraHttpRequestParams) {
|
|
33
|
+
var localVarPath = this.basePath + '/api/v1/intercom/conversations';
|
|
34
|
+
var queryParameters = {};
|
|
35
|
+
var headerParams = Object.assign({}, this.defaultHeaders);
|
|
36
|
+
// verify required parameter 'email' is not null or undefined
|
|
37
|
+
if (email === null || email === undefined) {
|
|
38
|
+
throw new Error('Required parameter email was null or undefined when calling getConversationsUsingGET.');
|
|
39
|
+
}
|
|
40
|
+
if (email !== undefined) {
|
|
41
|
+
queryParameters['email'] = email;
|
|
42
|
+
}
|
|
43
|
+
if (length !== undefined) {
|
|
44
|
+
queryParameters['length'] = length;
|
|
45
|
+
}
|
|
46
|
+
var httpRequestParams = {
|
|
47
|
+
method: 'GET',
|
|
48
|
+
url: localVarPath,
|
|
49
|
+
params: queryParameters,
|
|
50
|
+
headers: headerParams
|
|
51
|
+
};
|
|
52
|
+
if (extraHttpRequestParams) {
|
|
53
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
54
|
+
}
|
|
55
|
+
return this.$http(httpRequestParams);
|
|
56
|
+
};
|
|
26
57
|
/**
|
|
27
58
|
*
|
|
28
59
|
* @summary getTickets
|
|
@@ -91,8 +91,9 @@ export declare class LawfirmControllerApi {
|
|
|
91
91
|
*
|
|
92
92
|
* @summary getLawfirmLawyers
|
|
93
93
|
* @param lawfirmId lawfirmId
|
|
94
|
+
* @param settingName settingName
|
|
94
95
|
*/
|
|
95
|
-
getLawfirmLawyersUsingGET(lawfirmId: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmLawyersResponse>;
|
|
96
|
+
getLawfirmLawyersUsingGET(lawfirmId: number, settingName?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmLawyersResponse>;
|
|
96
97
|
/**
|
|
97
98
|
*
|
|
98
99
|
* @summary getLawfirmStatuses
|
|
@@ -317,8 +317,9 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
317
317
|
*
|
|
318
318
|
* @summary getLawfirmLawyers
|
|
319
319
|
* @param lawfirmId lawfirmId
|
|
320
|
+
* @param settingName settingName
|
|
320
321
|
*/
|
|
321
|
-
LawfirmControllerApi.prototype.getLawfirmLawyersUsingGET = function (lawfirmId, extraHttpRequestParams) {
|
|
322
|
+
LawfirmControllerApi.prototype.getLawfirmLawyersUsingGET = function (lawfirmId, settingName, extraHttpRequestParams) {
|
|
322
323
|
var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/lawyers'
|
|
323
324
|
.replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
|
|
324
325
|
var queryParameters = {};
|
|
@@ -327,6 +328,9 @@ var LawfirmControllerApi = /** @class */ (function () {
|
|
|
327
328
|
if (lawfirmId === null || lawfirmId === undefined) {
|
|
328
329
|
throw new Error('Required parameter lawfirmId was null or undefined when calling getLawfirmLawyersUsingGET.');
|
|
329
330
|
}
|
|
331
|
+
if (settingName !== undefined) {
|
|
332
|
+
queryParameters['settingName'] = settingName;
|
|
333
|
+
}
|
|
330
334
|
var httpRequestParams = {
|
|
331
335
|
method: 'GET',
|
|
332
336
|
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 Admin {
|
|
13
|
+
"id"?: string;
|
|
14
|
+
"name"?: 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,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 Attachment {
|
|
13
|
+
"type"?: string;
|
|
14
|
+
"url"?: 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,17 @@
|
|
|
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 Author {
|
|
13
|
+
"email"?: string;
|
|
14
|
+
"id"?: string;
|
|
15
|
+
"name"?: string;
|
|
16
|
+
"type"?: string;
|
|
17
|
+
}
|
|
@@ -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
|
+
export interface FirstContactReply {
|
|
13
|
+
"createdAt"?: number;
|
|
14
|
+
"type"?: string;
|
|
15
|
+
"url"?: 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,40 @@
|
|
|
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 IntercomConversationResponse {
|
|
14
|
+
"admin_assignee_id"?: string;
|
|
15
|
+
"ai_agent"?: string;
|
|
16
|
+
"ai_agent_participated"?: boolean;
|
|
17
|
+
"contacts"?: models.ContactList;
|
|
18
|
+
"conversation_rating"?: string;
|
|
19
|
+
"created_at"?: number;
|
|
20
|
+
"custom_attributes"?: object;
|
|
21
|
+
"first_contact_reply"?: models.FirstContactReply;
|
|
22
|
+
"id"?: string;
|
|
23
|
+
"linked_objects"?: models.LinkedObjects;
|
|
24
|
+
"open"?: boolean;
|
|
25
|
+
"priority"?: string;
|
|
26
|
+
"read"?: boolean;
|
|
27
|
+
"sla_applied"?: string;
|
|
28
|
+
"snoozed_until"?: number;
|
|
29
|
+
"source"?: models.Source;
|
|
30
|
+
"state"?: string;
|
|
31
|
+
"statistics"?: models.Statistics;
|
|
32
|
+
"tags"?: models.Tags;
|
|
33
|
+
"team_assignee_id"?: string;
|
|
34
|
+
"teammates"?: models.Teammates;
|
|
35
|
+
"title"?: string;
|
|
36
|
+
"topics"?: models.Topics;
|
|
37
|
+
"type"?: string;
|
|
38
|
+
"updated_at"?: number;
|
|
39
|
+
"waiting_since"?: number;
|
|
40
|
+
}
|
|
@@ -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 IntercomSearchConversationsResponse {
|
|
14
|
+
"conversations"?: Array<models.IntercomConversationResponse>;
|
|
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,30 @@
|
|
|
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 Source {
|
|
14
|
+
"attachments"?: Array<models.Attachment>;
|
|
15
|
+
"author"?: models.Author;
|
|
16
|
+
"body"?: string;
|
|
17
|
+
"delivered_as"?: Source.DeliveredAsEnum;
|
|
18
|
+
"id"?: string;
|
|
19
|
+
"redacted"?: boolean;
|
|
20
|
+
"subject"?: string;
|
|
21
|
+
"type"?: string;
|
|
22
|
+
"url"?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare namespace Source {
|
|
25
|
+
enum DeliveredAsEnum {
|
|
26
|
+
ADMININITIATED,
|
|
27
|
+
INBOUND,
|
|
28
|
+
OUTBOUND
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
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 });
|
|
14
|
+
exports.Source = void 0;
|
|
15
|
+
var Source;
|
|
16
|
+
(function (Source) {
|
|
17
|
+
var DeliveredAsEnum;
|
|
18
|
+
(function (DeliveredAsEnum) {
|
|
19
|
+
DeliveredAsEnum[DeliveredAsEnum["ADMININITIATED"] = 'ADMIN_INITIATED'] = "ADMININITIATED";
|
|
20
|
+
DeliveredAsEnum[DeliveredAsEnum["INBOUND"] = 'INBOUND'] = "INBOUND";
|
|
21
|
+
DeliveredAsEnum[DeliveredAsEnum["OUTBOUND"] = 'OUTBOUND'] = "OUTBOUND";
|
|
22
|
+
})(DeliveredAsEnum = Source.DeliveredAsEnum || (Source.DeliveredAsEnum = {}));
|
|
23
|
+
})(Source = exports.Source || (exports.Source = {}));
|
|
@@ -0,0 +1,32 @@
|
|
|
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 Statistics {
|
|
13
|
+
"count_assignments"?: number;
|
|
14
|
+
"count_conversation_parts"?: number;
|
|
15
|
+
"count_reopens"?: number;
|
|
16
|
+
"first_admin_reply_at"?: number;
|
|
17
|
+
"first_assignment_at"?: number;
|
|
18
|
+
"first_close_at"?: number;
|
|
19
|
+
"first_contact_reply_at"?: number;
|
|
20
|
+
"last_admin_reply_at"?: number;
|
|
21
|
+
"last_assignment_admin_reply_at"?: number;
|
|
22
|
+
"last_assignment_at"?: number;
|
|
23
|
+
"last_close_at"?: number;
|
|
24
|
+
"last_closed_by_id"?: string;
|
|
25
|
+
"last_contact_reply_at"?: number;
|
|
26
|
+
"median_time_to_reply"?: number;
|
|
27
|
+
"time_to_admin_reply"?: number;
|
|
28
|
+
"time_to_assignment"?: number;
|
|
29
|
+
"time_to_first_close"?: number;
|
|
30
|
+
"time_to_last_close"?: number;
|
|
31
|
+
"type"?: string;
|
|
32
|
+
}
|
|
@@ -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
|
+
export interface Tag {
|
|
13
|
+
"id"?: string;
|
|
14
|
+
"name"?: 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 Tags {
|
|
14
|
+
"tags"?: Array<models.Tag>;
|
|
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 Teammates {
|
|
14
|
+
"admins"?: Array<models.Admin>;
|
|
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
|
+
export interface Topic {
|
|
13
|
+
"id"?: string;
|
|
14
|
+
"name"?: 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,17 @@
|
|
|
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 Topics {
|
|
14
|
+
"topics"?: Array<models.Topic>;
|
|
15
|
+
"total_count"?: number;
|
|
16
|
+
"type"?: string;
|
|
17
|
+
}
|
|
@@ -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 });
|
|
@@ -30,6 +30,7 @@ export * from './AddressDomain';
|
|
|
30
30
|
export * from './AddressDomainReq';
|
|
31
31
|
export * from './AddressDomainRes';
|
|
32
32
|
export * from './AddressEntity';
|
|
33
|
+
export * from './Admin';
|
|
33
34
|
export * from './AgentBookingStats';
|
|
34
35
|
export * from './AgentBookingsSummary';
|
|
35
36
|
export * from './AggregateBySource';
|
|
@@ -44,7 +45,9 @@ export * from './AppEventCreateRequest';
|
|
|
44
45
|
export * from './AppearanceAttorneyDomain';
|
|
45
46
|
export * from './AppleLoginRequest';
|
|
46
47
|
export * from './AssignCitationOwnerRequest';
|
|
48
|
+
export * from './Attachment';
|
|
47
49
|
export * from './AuditLog';
|
|
50
|
+
export * from './Author';
|
|
48
51
|
export * from './AuthorModel';
|
|
49
52
|
export * from './AuthorizeChargeForCasePaymentRequest';
|
|
50
53
|
export * from './AuthorizeChargeForCasePaymentResponse';
|
|
@@ -232,6 +235,7 @@ export * from './FindMatchingUsersRequest';
|
|
|
232
235
|
export * from './FindMatchingUsersResponse';
|
|
233
236
|
export * from './FindsCourtsResponse';
|
|
234
237
|
export * from './FineInformation';
|
|
238
|
+
export * from './FirstContactReply';
|
|
235
239
|
export * from './ForwardMessageRequest';
|
|
236
240
|
export * from './FreshDeskConversation';
|
|
237
241
|
export * from './FreshDeskRequester';
|
|
@@ -397,7 +401,9 @@ export * from './InitiateCaseCounterRequest';
|
|
|
397
401
|
export * from './InitiateCaseCounterResponse';
|
|
398
402
|
export * from './InsertCaseLineItemResponse';
|
|
399
403
|
export * from './InsertInvoiceLineItemRequest';
|
|
404
|
+
export * from './IntercomConversationResponse';
|
|
400
405
|
export * from './IntercomCreateTicketResponse';
|
|
406
|
+
export * from './IntercomSearchConversationsResponse';
|
|
401
407
|
export * from './IntercomSearchTicketsResponse';
|
|
402
408
|
export * from './IntercomTicketAttributes';
|
|
403
409
|
export * from './InviteHouseholdMateRequest';
|
|
@@ -638,7 +644,9 @@ export * from './SocialLoginRequest';
|
|
|
638
644
|
export * from './SocialLoginResponse';
|
|
639
645
|
export * from './SocialLoginUser';
|
|
640
646
|
export * from './SocialPhoneNumber';
|
|
647
|
+
export * from './Source';
|
|
641
648
|
export * from './SqlResponse';
|
|
649
|
+
export * from './Statistics';
|
|
642
650
|
export * from './StripeAccountLinkDomain';
|
|
643
651
|
export * from './StripeApplicationFeeDomain';
|
|
644
652
|
export * from './StripeApplicationFeeRefundDomain';
|
|
@@ -677,6 +685,9 @@ export * from './SyncStripePaymentsResponse';
|
|
|
677
685
|
export * from './SyncStripeRefundsRequest';
|
|
678
686
|
export * from './SyncStripeTransfersRequest';
|
|
679
687
|
export * from './SyncStripeTransfersResponse';
|
|
688
|
+
export * from './Tag';
|
|
689
|
+
export * from './Tags';
|
|
690
|
+
export * from './Teammates';
|
|
680
691
|
export * from './TemporalUnit';
|
|
681
692
|
export * from './TicketLeadDomain';
|
|
682
693
|
export * from './TicketPart';
|
|
@@ -693,6 +704,8 @@ export * from './TimeZoneRes';
|
|
|
693
704
|
export * from './Timestamp';
|
|
694
705
|
export * from './TimestampReq';
|
|
695
706
|
export * from './TimestampRes';
|
|
707
|
+
export * from './Topic';
|
|
708
|
+
export * from './Topics';
|
|
696
709
|
export * from './TrafficViolationInputRequest';
|
|
697
710
|
export * from './TransferCaseRequest';
|
|
698
711
|
export * from './USStateDomain';
|