@otr-app/shared-backend-generated-client 2.2.36 → 2.2.38
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/typescript/api/SnsListenerControllerApi.d.ts +1 -1
- package/dist/typescript/model/CommonHeader.d.ts +18 -0
- package/dist/typescript/model/CommonHeader.js +13 -0
- package/dist/typescript/model/CursorModel.d.ts +1 -0
- package/dist/typescript/model/IncomingEmail.d.ts +21 -0
- package/dist/typescript/model/IncomingEmail.js +13 -0
- package/dist/typescript/model/IncomingEmailMessage.d.ts +17 -0
- package/dist/typescript/model/IncomingEmailMessage.js +13 -0
- package/dist/typescript/model/IncomingEmailRequest.d.ts +18 -0
- package/dist/typescript/model/IncomingEmailRequest.js +13 -0
- package/dist/typescript/model/IncomingHeader.d.ts +15 -0
- package/dist/typescript/model/IncomingHeader.js +13 -0
- package/dist/typescript/model/ListUserAuditEventsByCursorResponse.d.ts +1 -1
- package/dist/typescript/model/ListUserAuditEventsCursorModel.d.ts +14 -0
- package/dist/typescript/model/ListUserAuditEventsCursorModel.js +13 -0
- package/dist/typescript/model/models.d.ts +6 -0
- package/dist/typescript/model/models.js +6 -0
- package/package.json +1 -1
|
@@ -29,5 +29,5 @@ export declare class SnsListenerControllerApi {
|
|
|
29
29
|
* @summary handleIncomingEmails
|
|
30
30
|
* @param request request
|
|
31
31
|
*/
|
|
32
|
-
handleIncomingEmailsUsingPOST(request: models.
|
|
32
|
+
handleIncomingEmailsUsingPOST(request: models.IncomingEmailRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
33
33
|
}
|
|
@@ -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 CommonHeader {
|
|
13
|
+
"from"?: Array<string>;
|
|
14
|
+
"messageId"?: string;
|
|
15
|
+
"returnPath"?: string;
|
|
16
|
+
"subject"?: string;
|
|
17
|
+
"to"?: Array<string>;
|
|
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,21 @@
|
|
|
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 IncomingEmail {
|
|
14
|
+
"commonHeaders"?: models.CommonHeader;
|
|
15
|
+
"destination"?: Array<string>;
|
|
16
|
+
"headers"?: Array<models.IncomingHeader>;
|
|
17
|
+
"headersTruncated"?: string;
|
|
18
|
+
"messageId"?: string;
|
|
19
|
+
"source"?: string;
|
|
20
|
+
"timestamp"?: string;
|
|
21
|
+
}
|
|
@@ -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 IncomingEmailMessage {
|
|
14
|
+
"content"?: string;
|
|
15
|
+
"mail"?: models.IncomingEmail;
|
|
16
|
+
"notificationType"?: 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,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
|
+
import * as models from './models';
|
|
13
|
+
export interface IncomingEmailRequest {
|
|
14
|
+
"Message"?: models.IncomingEmailMessage;
|
|
15
|
+
"SubscribeURL"?: string;
|
|
16
|
+
"Type"?: string;
|
|
17
|
+
"UnsubscribeURL"?: string;
|
|
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,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 IncomingHeader {
|
|
13
|
+
"name"?: string;
|
|
14
|
+
"value"?: 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 });
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface ListUserAuditEventsByCursorResponse {
|
|
14
|
-
"cursorModel"?: models.
|
|
14
|
+
"cursorModel"?: models.ListUserAuditEventsCursorModel;
|
|
15
15
|
"events"?: Array<models.UserAuditEventModel>;
|
|
16
16
|
"totalRecords"?: number;
|
|
17
17
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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 ListUserAuditEventsCursorModel {
|
|
13
|
+
"nextPageToken"?: string;
|
|
14
|
+
}
|
|
@@ -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 });
|
|
@@ -95,6 +95,7 @@ export * from './CitationWithMissingFields';
|
|
|
95
95
|
export * from './ClientActionRequiredRequest';
|
|
96
96
|
export * from './ClientConfirmedUnpaidCase';
|
|
97
97
|
export * from './ClientLeadDomain';
|
|
98
|
+
export * from './CommonHeader';
|
|
98
99
|
export * from './ContactTimelineResponse';
|
|
99
100
|
export * from './CountryDomain';
|
|
100
101
|
export * from './CountryRegion';
|
|
@@ -301,6 +302,10 @@ export * from './GetUserStripeAccountResponse';
|
|
|
301
302
|
export * from './GraphRequest';
|
|
302
303
|
export * from './HandleOrphanedStripeChargeRequest';
|
|
303
304
|
export * from './HandleOrphanedStripeChargeResponse';
|
|
305
|
+
export * from './IncomingEmail';
|
|
306
|
+
export * from './IncomingEmailMessage';
|
|
307
|
+
export * from './IncomingEmailRequest';
|
|
308
|
+
export * from './IncomingHeader';
|
|
304
309
|
export * from './InitiateCaseAndChargeCustomerRequest';
|
|
305
310
|
export * from './InitiateCaseAndChargeCustomerResponse';
|
|
306
311
|
export * from './InsertCaseLineItemResponse';
|
|
@@ -352,6 +357,7 @@ export * from './ListReferralsResponse';
|
|
|
352
357
|
export * from './ListReviewsResponse';
|
|
353
358
|
export * from './ListSubscriptionInvoicesResponse';
|
|
354
359
|
export * from './ListUserAuditEventsByCursorResponse';
|
|
360
|
+
export * from './ListUserAuditEventsCursorModel';
|
|
355
361
|
export * from './ListViolationClassificationResponse';
|
|
356
362
|
export * from './LobEvent';
|
|
357
363
|
export * from './LobEventRequest';
|
|
@@ -107,6 +107,7 @@ __exportStar(require("./CitationWithMissingFields"), exports);
|
|
|
107
107
|
__exportStar(require("./ClientActionRequiredRequest"), exports);
|
|
108
108
|
__exportStar(require("./ClientConfirmedUnpaidCase"), exports);
|
|
109
109
|
__exportStar(require("./ClientLeadDomain"), exports);
|
|
110
|
+
__exportStar(require("./CommonHeader"), exports);
|
|
110
111
|
__exportStar(require("./ContactTimelineResponse"), exports);
|
|
111
112
|
__exportStar(require("./CountryDomain"), exports);
|
|
112
113
|
__exportStar(require("./CountryRegion"), exports);
|
|
@@ -313,6 +314,10 @@ __exportStar(require("./GetUserStripeAccountResponse"), exports);
|
|
|
313
314
|
__exportStar(require("./GraphRequest"), exports);
|
|
314
315
|
__exportStar(require("./HandleOrphanedStripeChargeRequest"), exports);
|
|
315
316
|
__exportStar(require("./HandleOrphanedStripeChargeResponse"), exports);
|
|
317
|
+
__exportStar(require("./IncomingEmail"), exports);
|
|
318
|
+
__exportStar(require("./IncomingEmailMessage"), exports);
|
|
319
|
+
__exportStar(require("./IncomingEmailRequest"), exports);
|
|
320
|
+
__exportStar(require("./IncomingHeader"), exports);
|
|
316
321
|
__exportStar(require("./InitiateCaseAndChargeCustomerRequest"), exports);
|
|
317
322
|
__exportStar(require("./InitiateCaseAndChargeCustomerResponse"), exports);
|
|
318
323
|
__exportStar(require("./InsertCaseLineItemResponse"), exports);
|
|
@@ -364,6 +369,7 @@ __exportStar(require("./ListReferralsResponse"), exports);
|
|
|
364
369
|
__exportStar(require("./ListReviewsResponse"), exports);
|
|
365
370
|
__exportStar(require("./ListSubscriptionInvoicesResponse"), exports);
|
|
366
371
|
__exportStar(require("./ListUserAuditEventsByCursorResponse"), exports);
|
|
372
|
+
__exportStar(require("./ListUserAuditEventsCursorModel"), exports);
|
|
367
373
|
__exportStar(require("./ListViolationClassificationResponse"), exports);
|
|
368
374
|
__exportStar(require("./LobEvent"), exports);
|
|
369
375
|
__exportStar(require("./LobEventRequest"), exports);
|