@otr-app/shared-backend-generated-client 2.5.91 → 2.5.92
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 +6 -1
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/eventBridgeEmailNotificationController.service.ts +166 -0
- package/dist/angular/api/snsListenerController.service.ts +0 -71
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/eventBridgeRequest.ts +26 -0
- package/dist/angular/model/models.ts +5 -1
- package/dist/angular/model/sesBounceObject.ts +29 -0
- package/dist/angular/model/sesComplaintObject.ts +19 -0
- package/dist/angular/model/sesEventDetail.ts +23 -0
- package/dist/angular/model/sesMailObject.ts +21 -0
- package/dist/otrBackendService.js +42 -37
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/EventBridgeEmailNotificationControllerApi.d.ts +27 -0
- package/dist/typescript/api/EventBridgeEmailNotificationControllerApi.js +51 -0
- package/dist/typescript/api/SnsListenerControllerApi.d.ts +0 -6
- package/dist/typescript/api/SnsListenerControllerApi.js +0 -25
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/EventBridgeRequest.d.ts +23 -0
- package/dist/typescript/model/EventBridgeRequest.js +12 -0
- package/dist/typescript/model/SesBounceObject.d.ts +24 -0
- package/dist/typescript/model/SesBounceObject.js +20 -0
- package/dist/typescript/model/SesComplaintObject.d.ts +16 -0
- package/dist/typescript/model/SesComplaintObject.js +12 -0
- package/dist/typescript/model/SesEventDetail.d.ts +18 -0
- package/dist/typescript/model/SesEventDetail.js +12 -0
- package/dist/typescript/model/SesMailObject.d.ts +18 -0
- package/dist/typescript/model/SesMailObject.js +12 -0
- package/dist/typescript/model/models.d.ts +5 -1
- package/dist/typescript/model/models.js +5 -1
- package/dist/typescript-fetch/apis/EventBridgeEmailNotificationControllerApi.d.ts +30 -0
- package/dist/typescript-fetch/apis/EventBridgeEmailNotificationControllerApi.js +62 -0
- package/dist/typescript-fetch/apis/SnsListenerControllerApi.d.ts +1 -12
- package/dist/typescript-fetch/apis/SnsListenerControllerApi.js +1 -31
- package/dist/typescript-fetch/apis/index.d.ts +1 -0
- package/dist/typescript-fetch/apis/index.js +1 -0
- package/dist/typescript-fetch/models/EventBridgeRequest.d.ts +76 -0
- package/dist/typescript-fetch/models/EventBridgeRequest.js +53 -0
- package/dist/typescript-fetch/models/SesBounceObject.d.ts +54 -0
- package/dist/typescript-fetch/models/SesBounceObject.js +52 -0
- package/dist/typescript-fetch/models/SesComplaintObject.d.ts +39 -0
- package/dist/typescript-fetch/models/SesComplaintObject.js +40 -0
- package/dist/typescript-fetch/models/SesEventDetail.d.ts +46 -0
- package/dist/typescript-fetch/models/SesEventDetail.js +43 -0
- package/dist/typescript-fetch/models/SesMailObject.d.ts +51 -0
- package/dist/typescript-fetch/models/SesMailObject.js +44 -0
- package/dist/typescript-fetch/models/index.d.ts +5 -1
- package/dist/typescript-fetch/models/index.js +5 -1
- package/dist/typescript-open-api/otr-backend.d.ts +118 -77
- package/dist/typescript-open-api/otr-backend.js +6 -0
- package/package.json +1 -1
- package/dist/typescript-fetch/models/SNSNotificationRequest.d.ts +0 -45
- package/dist/typescript-fetch/models/SNSNotificationRequest.js +0 -42
|
@@ -0,0 +1,27 @@
|
|
|
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 '../model/models';
|
|
13
|
+
export declare class EventBridgeEmailNotificationControllerApi {
|
|
14
|
+
protected $http: ng.IHttpService;
|
|
15
|
+
protected $httpParamSerializer?: (d: any) => any;
|
|
16
|
+
protected basePath: string;
|
|
17
|
+
defaultHeaders: any;
|
|
18
|
+
static $inject: string[];
|
|
19
|
+
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @summary handleHardBounceComplainEvents
|
|
23
|
+
* @param request request
|
|
24
|
+
* @param xApiToken X-Api-Token
|
|
25
|
+
*/
|
|
26
|
+
handleHardBounceComplainEventsUsingPOST(request: models.EventBridgeRequest, xApiToken?: string, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
13
|
+
export class EventBridgeEmailNotificationControllerApi {
|
|
14
|
+
constructor($http, $httpParamSerializer, basePath) {
|
|
15
|
+
this.$http = $http;
|
|
16
|
+
this.$httpParamSerializer = $httpParamSerializer;
|
|
17
|
+
this.basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
|
|
18
|
+
this.defaultHeaders = {};
|
|
19
|
+
if (basePath !== undefined) {
|
|
20
|
+
this.basePath = basePath;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @summary handleHardBounceComplainEvents
|
|
26
|
+
* @param request request
|
|
27
|
+
* @param xApiToken X-Api-Token
|
|
28
|
+
*/
|
|
29
|
+
handleHardBounceComplainEventsUsingPOST(request, xApiToken, extraHttpRequestParams) {
|
|
30
|
+
const localVarPath = this.basePath + '/api/v1/event-bridge/bounce-complaint-notifications';
|
|
31
|
+
let queryParameters = {};
|
|
32
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
33
|
+
// verify required parameter 'request' is not null or undefined
|
|
34
|
+
if (request === null || request === undefined) {
|
|
35
|
+
throw new Error('Required parameter request was null or undefined when calling handleHardBounceComplainEventsUsingPOST.');
|
|
36
|
+
}
|
|
37
|
+
headerParams['X-Api-Token'] = xApiToken;
|
|
38
|
+
let httpRequestParams = {
|
|
39
|
+
method: 'POST',
|
|
40
|
+
url: localVarPath,
|
|
41
|
+
data: request,
|
|
42
|
+
params: queryParameters,
|
|
43
|
+
headers: headerParams
|
|
44
|
+
};
|
|
45
|
+
if (extraHttpRequestParams) {
|
|
46
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
47
|
+
}
|
|
48
|
+
return this.$http(httpRequestParams);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
EventBridgeEmailNotificationControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
|
|
@@ -17,12 +17,6 @@ export declare class SnsListenerControllerApi {
|
|
|
17
17
|
defaultHeaders: any;
|
|
18
18
|
static $inject: string[];
|
|
19
19
|
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @summary handleBounceComplaintEmails
|
|
23
|
-
* @param request request
|
|
24
|
-
*/
|
|
25
|
-
handleBounceComplaintEmailsUsingPOST(request: models.SNSNotificationRequest, extraHttpRequestParams?: any): ng.IHttpPromise<object>;
|
|
26
20
|
/**
|
|
27
21
|
*
|
|
28
22
|
* @summary handleIncomingEmails
|
|
@@ -20,31 +20,6 @@ export class SnsListenerControllerApi {
|
|
|
20
20
|
this.basePath = basePath;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @summary handleBounceComplaintEmails
|
|
26
|
-
* @param request request
|
|
27
|
-
*/
|
|
28
|
-
handleBounceComplaintEmailsUsingPOST(request, extraHttpRequestParams) {
|
|
29
|
-
const localVarPath = this.basePath + '/api/v1/blacklists/ses/emails';
|
|
30
|
-
let queryParameters = {};
|
|
31
|
-
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
32
|
-
// verify required parameter 'request' is not null or undefined
|
|
33
|
-
if (request === null || request === undefined) {
|
|
34
|
-
throw new Error('Required parameter request was null or undefined when calling handleBounceComplaintEmailsUsingPOST.');
|
|
35
|
-
}
|
|
36
|
-
let httpRequestParams = {
|
|
37
|
-
method: 'POST',
|
|
38
|
-
url: localVarPath,
|
|
39
|
-
data: request,
|
|
40
|
-
params: queryParameters,
|
|
41
|
-
headers: headerParams
|
|
42
|
-
};
|
|
43
|
-
if (extraHttpRequestParams) {
|
|
44
|
-
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
45
|
-
}
|
|
46
|
-
return this.$http(httpRequestParams);
|
|
47
|
-
}
|
|
48
23
|
/**
|
|
49
24
|
*
|
|
50
25
|
* @summary handleIncomingEmails
|
|
@@ -94,6 +94,8 @@ export * from './EmailSubscriptionControllerApi';
|
|
|
94
94
|
import { EmailSubscriptionControllerApi } from './EmailSubscriptionControllerApi';
|
|
95
95
|
export * from './EmployeeControllerApi';
|
|
96
96
|
import { EmployeeControllerApi } from './EmployeeControllerApi';
|
|
97
|
+
export * from './EventBridgeEmailNotificationControllerApi';
|
|
98
|
+
import { EventBridgeEmailNotificationControllerApi } from './EventBridgeEmailNotificationControllerApi';
|
|
97
99
|
export * from './ExternalContentVoteControllerApi';
|
|
98
100
|
import { ExternalContentVoteControllerApi } from './ExternalContentVoteControllerApi';
|
|
99
101
|
export * from './ExternalTicketLookupControllerApi';
|
|
@@ -232,4 +234,4 @@ export * from './WebsocketMessageControllerApi';
|
|
|
232
234
|
import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
|
|
233
235
|
export * from './WorkflowStateControllerApi';
|
|
234
236
|
import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
|
|
235
|
-
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof DriverLicenseControllerApi | typeof EmailSubscriptionControllerApi | typeof EmployeeControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | typeof IntercomWebhookControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPipelineControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
|
|
237
|
+
export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof DriverLicenseControllerApi | typeof EmailSubscriptionControllerApi | typeof EmployeeControllerApi | typeof EventBridgeEmailNotificationControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | typeof IntercomWebhookControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPipelineControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
|
|
@@ -94,6 +94,8 @@ export * from './EmailSubscriptionControllerApi';
|
|
|
94
94
|
import { EmailSubscriptionControllerApi } from './EmailSubscriptionControllerApi';
|
|
95
95
|
export * from './EmployeeControllerApi';
|
|
96
96
|
import { EmployeeControllerApi } from './EmployeeControllerApi';
|
|
97
|
+
export * from './EventBridgeEmailNotificationControllerApi';
|
|
98
|
+
import { EventBridgeEmailNotificationControllerApi } from './EventBridgeEmailNotificationControllerApi';
|
|
97
99
|
export * from './ExternalContentVoteControllerApi';
|
|
98
100
|
import { ExternalContentVoteControllerApi } from './ExternalContentVoteControllerApi';
|
|
99
101
|
export * from './ExternalTicketLookupControllerApi';
|
|
@@ -232,4 +234,4 @@ export * from './WebsocketMessageControllerApi';
|
|
|
232
234
|
import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
|
|
233
235
|
export * from './WorkflowStateControllerApi';
|
|
234
236
|
import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
|
|
235
|
-
export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BlogWebhookControllerApi, BranchLinkControllerApi, CaptchaControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCounterOfferControllerApi, CaseCreationControllerApi, CaseDeclineControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CertificateControllerApi, CitationAuditControllerApi, CitationControllerApi, CoachingCardsControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactLoopWebhookControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, DriverLicenseControllerApi, EmailSubscriptionControllerApi, EmployeeControllerApi, ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, HubspotWebhookControllerApi, InsuranceCalculatorControllerApi, IntercomTicketControllerApi, IntercomWebhookControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, OcrPipelineControllerApi, OcrPredictionControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SingleSignOnControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UserSettingsControllerApi, UserSocialProfileControllerApi, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
|
|
237
|
+
export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BlogWebhookControllerApi, BranchLinkControllerApi, CaptchaControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCounterOfferControllerApi, CaseCreationControllerApi, CaseDeclineControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CertificateControllerApi, CitationAuditControllerApi, CitationControllerApi, CoachingCardsControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactLoopWebhookControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, DriverLicenseControllerApi, EmailSubscriptionControllerApi, EmployeeControllerApi, EventBridgeEmailNotificationControllerApi, ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, HubspotWebhookControllerApi, InsuranceCalculatorControllerApi, IntercomTicketControllerApi, IntercomWebhookControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, OcrPipelineControllerApi, OcrPredictionControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SingleSignOnControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UserSettingsControllerApi, UserSocialProfileControllerApi, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
|
|
@@ -49,6 +49,7 @@ const apiModule = angular.module('api', [])
|
|
|
49
49
|
.service('DriverLicenseControllerApi', api.DriverLicenseControllerApi)
|
|
50
50
|
.service('EmailSubscriptionControllerApi', api.EmailSubscriptionControllerApi)
|
|
51
51
|
.service('EmployeeControllerApi', api.EmployeeControllerApi)
|
|
52
|
+
.service('EventBridgeEmailNotificationControllerApi', api.EventBridgeEmailNotificationControllerApi)
|
|
52
53
|
.service('ExternalContentVoteControllerApi', api.ExternalContentVoteControllerApi)
|
|
53
54
|
.service('ExternalTicketLookupControllerApi', api.ExternalTicketLookupControllerApi)
|
|
54
55
|
.service('FeedbackControllerApi', api.FeedbackControllerApi)
|
|
@@ -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 EventBridgeRequest {
|
|
14
|
+
"account"?: string;
|
|
15
|
+
"detail"?: models.SesEventDetail;
|
|
16
|
+
"detail_type"?: string;
|
|
17
|
+
"id"?: string;
|
|
18
|
+
"region"?: string;
|
|
19
|
+
"resources"?: Array<string>;
|
|
20
|
+
"source"?: string;
|
|
21
|
+
"time"?: string;
|
|
22
|
+
"version"?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 {};
|
|
@@ -0,0 +1,24 @@
|
|
|
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 SesBounceObject {
|
|
13
|
+
"bounceSubType"?: string;
|
|
14
|
+
"bounceType"?: SesBounceObject.BounceTypeEnum;
|
|
15
|
+
"feedbackId"?: string;
|
|
16
|
+
"timestamp"?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare namespace SesBounceObject {
|
|
19
|
+
enum BounceTypeEnum {
|
|
20
|
+
PERMANENT,
|
|
21
|
+
TRANSIENT,
|
|
22
|
+
UNDETERMINED
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -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 var SesBounceObject;
|
|
13
|
+
(function (SesBounceObject) {
|
|
14
|
+
let BounceTypeEnum;
|
|
15
|
+
(function (BounceTypeEnum) {
|
|
16
|
+
BounceTypeEnum[BounceTypeEnum["PERMANENT"] = 'PERMANENT'] = "PERMANENT";
|
|
17
|
+
BounceTypeEnum[BounceTypeEnum["TRANSIENT"] = 'TRANSIENT'] = "TRANSIENT";
|
|
18
|
+
BounceTypeEnum[BounceTypeEnum["UNDETERMINED"] = 'UNDETERMINED'] = "UNDETERMINED";
|
|
19
|
+
})(BounceTypeEnum = SesBounceObject.BounceTypeEnum || (SesBounceObject.BounceTypeEnum = {}));
|
|
20
|
+
})(SesBounceObject || (SesBounceObject = {}));
|
|
@@ -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 SesComplaintObject {
|
|
13
|
+
"complaintFeedbackType"?: string;
|
|
14
|
+
"feedbackId"?: string;
|
|
15
|
+
"timestamp"?: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 {};
|
|
@@ -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 SesEventDetail {
|
|
14
|
+
"bounce"?: models.SesBounceObject;
|
|
15
|
+
"complaint"?: models.SesComplaintObject;
|
|
16
|
+
"eventType"?: string;
|
|
17
|
+
"mail"?: models.SesMailObject;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 {};
|
|
@@ -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 SesMailObject {
|
|
13
|
+
"destination"?: Array<string>;
|
|
14
|
+
"messageId"?: string;
|
|
15
|
+
"source"?: string;
|
|
16
|
+
"sourceArn"?: string;
|
|
17
|
+
"timestamp"?: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 {};
|
|
@@ -236,6 +236,7 @@ export * from './EnableViolationsForLawfirmResponse';
|
|
|
236
236
|
export * from './EngagementLetterModel';
|
|
237
237
|
export * from './EstimateInsuranceSavingsRequest';
|
|
238
238
|
export * from './EstimateInsuranceSavingsResponse';
|
|
239
|
+
export * from './EventBridgeRequest';
|
|
239
240
|
export * from './ExistingAccountDetails';
|
|
240
241
|
export * from './ExternalContentVote';
|
|
241
242
|
export * from './ExternalTicketCourt';
|
|
@@ -626,7 +627,6 @@ export * from './ReviewCommentModel';
|
|
|
626
627
|
export * from './ReviewRatingModel';
|
|
627
628
|
export * from './ReviewVoteAggregateModel';
|
|
628
629
|
export * from './RichCitationInferenceResponse';
|
|
629
|
-
export * from './SNSNotificationRequest';
|
|
630
630
|
export * from './SSLCertificateResponse';
|
|
631
631
|
export * from './SaveAgentBookingRequest';
|
|
632
632
|
export * from './SaveAgentBookingResponse';
|
|
@@ -667,6 +667,10 @@ export * from './SendPayoutToLawfirmRequest';
|
|
|
667
667
|
export * from './SendPayoutToLawfirmResponse';
|
|
668
668
|
export * from './SendTextAlertToUserRequest';
|
|
669
669
|
export * from './ServiceLevelAgreement';
|
|
670
|
+
export * from './SesBounceObject';
|
|
671
|
+
export * from './SesComplaintObject';
|
|
672
|
+
export * from './SesEventDetail';
|
|
673
|
+
export * from './SesMailObject';
|
|
670
674
|
export * from './SetArchiveCaseModel';
|
|
671
675
|
export * from './SetArchiveOnCasesRequest';
|
|
672
676
|
export * from './SetCourtDateForCaseRequest';
|
|
@@ -236,6 +236,7 @@ export * from './EnableViolationsForLawfirmResponse';
|
|
|
236
236
|
export * from './EngagementLetterModel';
|
|
237
237
|
export * from './EstimateInsuranceSavingsRequest';
|
|
238
238
|
export * from './EstimateInsuranceSavingsResponse';
|
|
239
|
+
export * from './EventBridgeRequest';
|
|
239
240
|
export * from './ExistingAccountDetails';
|
|
240
241
|
export * from './ExternalContentVote';
|
|
241
242
|
export * from './ExternalTicketCourt';
|
|
@@ -626,7 +627,6 @@ export * from './ReviewCommentModel';
|
|
|
626
627
|
export * from './ReviewRatingModel';
|
|
627
628
|
export * from './ReviewVoteAggregateModel';
|
|
628
629
|
export * from './RichCitationInferenceResponse';
|
|
629
|
-
export * from './SNSNotificationRequest';
|
|
630
630
|
export * from './SSLCertificateResponse';
|
|
631
631
|
export * from './SaveAgentBookingRequest';
|
|
632
632
|
export * from './SaveAgentBookingResponse';
|
|
@@ -667,6 +667,10 @@ export * from './SendPayoutToLawfirmRequest';
|
|
|
667
667
|
export * from './SendPayoutToLawfirmResponse';
|
|
668
668
|
export * from './SendTextAlertToUserRequest';
|
|
669
669
|
export * from './ServiceLevelAgreement';
|
|
670
|
+
export * from './SesBounceObject';
|
|
671
|
+
export * from './SesComplaintObject';
|
|
672
|
+
export * from './SesEventDetail';
|
|
673
|
+
export * from './SesMailObject';
|
|
670
674
|
export * from './SetArchiveCaseModel';
|
|
671
675
|
export * from './SetArchiveOnCasesRequest';
|
|
672
676
|
export * from './SetCourtDateForCaseRequest';
|
|
@@ -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 runtime from '../runtime';
|
|
13
|
+
import { EventBridgeRequest } from '../models';
|
|
14
|
+
export interface HandleHardBounceComplainEventsUsingPOSTRequest {
|
|
15
|
+
request: EventBridgeRequest;
|
|
16
|
+
xApiToken?: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare class EventBridgeEmailNotificationControllerApi extends runtime.BaseAPI {
|
|
22
|
+
/**
|
|
23
|
+
* handleHardBounceComplainEvents
|
|
24
|
+
*/
|
|
25
|
+
handleHardBounceComplainEventsUsingPOSTRaw(requestParameters: HandleHardBounceComplainEventsUsingPOSTRequest): Promise<runtime.ApiResponse<object>>;
|
|
26
|
+
/**
|
|
27
|
+
* handleHardBounceComplainEvents
|
|
28
|
+
*/
|
|
29
|
+
handleHardBounceComplainEventsUsingPOST(requestParameters: HandleHardBounceComplainEventsUsingPOSTRequest): Promise<object>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OffTheRecord Rest Service API - Devo
|
|
5
|
+
* A service to handle your traffic tickets
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
16
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
17
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
19
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
20
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
import * as runtime from '../runtime';
|
|
24
|
+
import { EventBridgeRequestToJSON, } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export class EventBridgeEmailNotificationControllerApi extends runtime.BaseAPI {
|
|
29
|
+
/**
|
|
30
|
+
* handleHardBounceComplainEvents
|
|
31
|
+
*/
|
|
32
|
+
handleHardBounceComplainEventsUsingPOSTRaw(requestParameters) {
|
|
33
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
+
if (requestParameters.request === null || requestParameters.request === undefined) {
|
|
35
|
+
throw new runtime.RequiredError('request', 'Required parameter requestParameters.request was null or undefined when calling handleHardBounceComplainEventsUsingPOST.');
|
|
36
|
+
}
|
|
37
|
+
const queryParameters = {};
|
|
38
|
+
const headerParameters = {};
|
|
39
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
40
|
+
if (requestParameters.xApiToken !== undefined && requestParameters.xApiToken !== null) {
|
|
41
|
+
headerParameters['X-Api-Token'] = String(requestParameters.xApiToken);
|
|
42
|
+
}
|
|
43
|
+
const response = yield this.request({
|
|
44
|
+
path: `/api/v1/event-bridge/bounce-complaint-notifications`,
|
|
45
|
+
method: 'POST',
|
|
46
|
+
headers: headerParameters,
|
|
47
|
+
query: queryParameters,
|
|
48
|
+
body: EventBridgeRequestToJSON(requestParameters.request),
|
|
49
|
+
});
|
|
50
|
+
return new runtime.JSONApiResponse(response);
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* handleHardBounceComplainEvents
|
|
55
|
+
*/
|
|
56
|
+
handleHardBounceComplainEventsUsingPOST(requestParameters) {
|
|
57
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
58
|
+
const response = yield this.handleHardBounceComplainEventsUsingPOSTRaw(requestParameters);
|
|
59
|
+
return yield response.value();
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -10,10 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import { IncomingEmailModels, IncomingEmailRequest
|
|
14
|
-
export interface HandleBounceComplaintEmailsUsingPOSTRequest {
|
|
15
|
-
request: SNSNotificationRequest;
|
|
16
|
-
}
|
|
13
|
+
import { IncomingEmailModels, IncomingEmailRequest } from '../models';
|
|
17
14
|
export interface HandleIncomingEmailsUsingPOSTRequest {
|
|
18
15
|
request: IncomingEmailRequest;
|
|
19
16
|
}
|
|
@@ -24,14 +21,6 @@ export interface HandleIncomingHelloEmailsUsingPOSTRequest {
|
|
|
24
21
|
*
|
|
25
22
|
*/
|
|
26
23
|
export declare class SnsListenerControllerApi extends runtime.BaseAPI {
|
|
27
|
-
/**
|
|
28
|
-
* handleBounceComplaintEmails
|
|
29
|
-
*/
|
|
30
|
-
handleBounceComplaintEmailsUsingPOSTRaw(requestParameters: HandleBounceComplaintEmailsUsingPOSTRequest): Promise<runtime.ApiResponse<object>>;
|
|
31
|
-
/**
|
|
32
|
-
* handleBounceComplaintEmails
|
|
33
|
-
*/
|
|
34
|
-
handleBounceComplaintEmailsUsingPOST(requestParameters: HandleBounceComplaintEmailsUsingPOSTRequest): Promise<object>;
|
|
35
24
|
/**
|
|
36
25
|
* handleIncomingEmails
|
|
37
26
|
*/
|
|
@@ -21,41 +21,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
23
|
import * as runtime from '../runtime';
|
|
24
|
-
import { IncomingEmailModelsToJSON, IncomingEmailRequestToJSON,
|
|
24
|
+
import { IncomingEmailModelsToJSON, IncomingEmailRequestToJSON, } from '../models';
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export class SnsListenerControllerApi extends runtime.BaseAPI {
|
|
29
|
-
/**
|
|
30
|
-
* handleBounceComplaintEmails
|
|
31
|
-
*/
|
|
32
|
-
handleBounceComplaintEmailsUsingPOSTRaw(requestParameters) {
|
|
33
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
-
if (requestParameters.request === null || requestParameters.request === undefined) {
|
|
35
|
-
throw new runtime.RequiredError('request', 'Required parameter requestParameters.request was null or undefined when calling handleBounceComplaintEmailsUsingPOST.');
|
|
36
|
-
}
|
|
37
|
-
const queryParameters = {};
|
|
38
|
-
const headerParameters = {};
|
|
39
|
-
headerParameters['Content-Type'] = 'application/json';
|
|
40
|
-
const response = yield this.request({
|
|
41
|
-
path: `/api/v1/blacklists/ses/emails`,
|
|
42
|
-
method: 'POST',
|
|
43
|
-
headers: headerParameters,
|
|
44
|
-
query: queryParameters,
|
|
45
|
-
body: SNSNotificationRequestToJSON(requestParameters.request),
|
|
46
|
-
});
|
|
47
|
-
return new runtime.JSONApiResponse(response);
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* handleBounceComplaintEmails
|
|
52
|
-
*/
|
|
53
|
-
handleBounceComplaintEmailsUsingPOST(requestParameters) {
|
|
54
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
55
|
-
const response = yield this.handleBounceComplaintEmailsUsingPOSTRaw(requestParameters);
|
|
56
|
-
return yield response.value();
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
29
|
/**
|
|
60
30
|
* handleIncomingEmails
|
|
61
31
|
*/
|
|
@@ -46,6 +46,7 @@ export * from './DripWebhooksControllerApi';
|
|
|
46
46
|
export * from './DriverLicenseControllerApi';
|
|
47
47
|
export * from './EmailSubscriptionControllerApi';
|
|
48
48
|
export * from './EmployeeControllerApi';
|
|
49
|
+
export * from './EventBridgeEmailNotificationControllerApi';
|
|
49
50
|
export * from './ExternalContentVoteControllerApi';
|
|
50
51
|
export * from './ExternalTicketLookupControllerApi';
|
|
51
52
|
export * from './FeedbackControllerApi';
|
|
@@ -46,6 +46,7 @@ export * from './DripWebhooksControllerApi';
|
|
|
46
46
|
export * from './DriverLicenseControllerApi';
|
|
47
47
|
export * from './EmailSubscriptionControllerApi';
|
|
48
48
|
export * from './EmployeeControllerApi';
|
|
49
|
+
export * from './EventBridgeEmailNotificationControllerApi';
|
|
49
50
|
export * from './ExternalContentVoteControllerApi';
|
|
50
51
|
export * from './ExternalTicketLookupControllerApi';
|
|
51
52
|
export * from './FeedbackControllerApi';
|