@otr-app/shared-backend-generated-client 2.4.18 → 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/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 +44 -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/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
|
|
@@ -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';
|
|
@@ -42,6 +42,7 @@ __exportStar(require("./AddressDomain"), exports);
|
|
|
42
42
|
__exportStar(require("./AddressDomainReq"), exports);
|
|
43
43
|
__exportStar(require("./AddressDomainRes"), exports);
|
|
44
44
|
__exportStar(require("./AddressEntity"), exports);
|
|
45
|
+
__exportStar(require("./Admin"), exports);
|
|
45
46
|
__exportStar(require("./AgentBookingStats"), exports);
|
|
46
47
|
__exportStar(require("./AgentBookingsSummary"), exports);
|
|
47
48
|
__exportStar(require("./AggregateBySource"), exports);
|
|
@@ -56,7 +57,9 @@ __exportStar(require("./AppEventCreateRequest"), exports);
|
|
|
56
57
|
__exportStar(require("./AppearanceAttorneyDomain"), exports);
|
|
57
58
|
__exportStar(require("./AppleLoginRequest"), exports);
|
|
58
59
|
__exportStar(require("./AssignCitationOwnerRequest"), exports);
|
|
60
|
+
__exportStar(require("./Attachment"), exports);
|
|
59
61
|
__exportStar(require("./AuditLog"), exports);
|
|
62
|
+
__exportStar(require("./Author"), exports);
|
|
60
63
|
__exportStar(require("./AuthorModel"), exports);
|
|
61
64
|
__exportStar(require("./AuthorizeChargeForCasePaymentRequest"), exports);
|
|
62
65
|
__exportStar(require("./AuthorizeChargeForCasePaymentResponse"), exports);
|
|
@@ -244,6 +247,7 @@ __exportStar(require("./FindMatchingUsersRequest"), exports);
|
|
|
244
247
|
__exportStar(require("./FindMatchingUsersResponse"), exports);
|
|
245
248
|
__exportStar(require("./FindsCourtsResponse"), exports);
|
|
246
249
|
__exportStar(require("./FineInformation"), exports);
|
|
250
|
+
__exportStar(require("./FirstContactReply"), exports);
|
|
247
251
|
__exportStar(require("./ForwardMessageRequest"), exports);
|
|
248
252
|
__exportStar(require("./FreshDeskConversation"), exports);
|
|
249
253
|
__exportStar(require("./FreshDeskRequester"), exports);
|
|
@@ -409,7 +413,9 @@ __exportStar(require("./InitiateCaseCounterRequest"), exports);
|
|
|
409
413
|
__exportStar(require("./InitiateCaseCounterResponse"), exports);
|
|
410
414
|
__exportStar(require("./InsertCaseLineItemResponse"), exports);
|
|
411
415
|
__exportStar(require("./InsertInvoiceLineItemRequest"), exports);
|
|
416
|
+
__exportStar(require("./IntercomConversationResponse"), exports);
|
|
412
417
|
__exportStar(require("./IntercomCreateTicketResponse"), exports);
|
|
418
|
+
__exportStar(require("./IntercomSearchConversationsResponse"), exports);
|
|
413
419
|
__exportStar(require("./IntercomSearchTicketsResponse"), exports);
|
|
414
420
|
__exportStar(require("./IntercomTicketAttributes"), exports);
|
|
415
421
|
__exportStar(require("./InviteHouseholdMateRequest"), exports);
|
|
@@ -650,7 +656,9 @@ __exportStar(require("./SocialLoginRequest"), exports);
|
|
|
650
656
|
__exportStar(require("./SocialLoginResponse"), exports);
|
|
651
657
|
__exportStar(require("./SocialLoginUser"), exports);
|
|
652
658
|
__exportStar(require("./SocialPhoneNumber"), exports);
|
|
659
|
+
__exportStar(require("./Source"), exports);
|
|
653
660
|
__exportStar(require("./SqlResponse"), exports);
|
|
661
|
+
__exportStar(require("./Statistics"), exports);
|
|
654
662
|
__exportStar(require("./StripeAccountLinkDomain"), exports);
|
|
655
663
|
__exportStar(require("./StripeApplicationFeeDomain"), exports);
|
|
656
664
|
__exportStar(require("./StripeApplicationFeeRefundDomain"), exports);
|
|
@@ -689,6 +697,9 @@ __exportStar(require("./SyncStripePaymentsResponse"), exports);
|
|
|
689
697
|
__exportStar(require("./SyncStripeRefundsRequest"), exports);
|
|
690
698
|
__exportStar(require("./SyncStripeTransfersRequest"), exports);
|
|
691
699
|
__exportStar(require("./SyncStripeTransfersResponse"), exports);
|
|
700
|
+
__exportStar(require("./Tag"), exports);
|
|
701
|
+
__exportStar(require("./Tags"), exports);
|
|
702
|
+
__exportStar(require("./Teammates"), exports);
|
|
692
703
|
__exportStar(require("./TemporalUnit"), exports);
|
|
693
704
|
__exportStar(require("./TicketLeadDomain"), exports);
|
|
694
705
|
__exportStar(require("./TicketPart"), exports);
|
|
@@ -705,6 +716,8 @@ __exportStar(require("./TimeZoneRes"), exports);
|
|
|
705
716
|
__exportStar(require("./Timestamp"), exports);
|
|
706
717
|
__exportStar(require("./TimestampReq"), exports);
|
|
707
718
|
__exportStar(require("./TimestampRes"), exports);
|
|
719
|
+
__exportStar(require("./Topic"), exports);
|
|
720
|
+
__exportStar(require("./Topics"), exports);
|
|
708
721
|
__exportStar(require("./TrafficViolationInputRequest"), exports);
|
|
709
722
|
__exportStar(require("./TransferCaseRequest"), exports);
|
|
710
723
|
__exportStar(require("./USStateDomain"), exports);
|