@d19n/youfibre-odin-sdk 1.0.195 → 1.0.196
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/actions-v2/ActivateRecontractOrderDto.d.ts +18 -0
- package/dist/actions-v2/ActivateRecontractOrderDto.js +21 -0
- package/dist/actions-v2/CancelBillingRequestFromPaymentDto.d.ts +20 -0
- package/dist/actions-v2/CancelBillingRequestFromPaymentDto.js +20 -0
- package/dist/actions-v2/CancelOrderForRecontractDto.d.ts +18 -0
- package/dist/actions-v2/CancelOrderForRecontractDto.js +21 -0
- package/dist/actions-v2/CancelOrderForRollbackDto.d.ts +18 -0
- package/dist/actions-v2/CancelOrderForRollbackDto.js +21 -0
- package/dist/actions-v2/ClearOrderDeactivateOnDateDto.d.ts +20 -0
- package/dist/actions-v2/ClearOrderDeactivateOnDateDto.js +20 -0
- package/dist/actions-v2/CreateBillingRequestForInvoicesDto.d.ts +25 -0
- package/dist/actions-v2/CreateBillingRequestForInvoicesDto.js +18 -0
- package/dist/actions-v2/CreateBillingRequestTransactionDto.d.ts +21 -0
- package/dist/actions-v2/CreateBillingRequestTransactionDto.js +18 -0
- package/dist/actions-v2/CreateFinalNoticeActivityDto.d.ts +18 -0
- package/dist/actions-v2/CreateFinalNoticeActivityDto.js +18 -0
- package/dist/actions-v2/CreateRecontractOrderDto.d.ts +22 -0
- package/dist/actions-v2/CreateRecontractOrderDto.js +18 -0
- package/dist/actions-v2/CreateRecontractOrderItemDto.d.ts +19 -0
- package/dist/actions-v2/CreateRecontractOrderItemDto.js +18 -0
- package/dist/actions-v2/CreateRecontractVoiceConfigurationDto.d.ts +18 -0
- package/dist/actions-v2/CreateRecontractVoiceConfigurationDto.js +18 -0
- package/dist/actions-v2/DeactivateOrderDunningDto.d.ts +18 -0
- package/dist/actions-v2/DeactivateOrderDunningDto.js +21 -0
- package/dist/actions-v2/ReactivateOrderAfterRollbackDto.d.ts +18 -0
- package/dist/actions-v2/ReactivateOrderAfterRollbackDto.js +21 -0
- package/dist/actions-v2/ReassociateOrderItemDevicesDto.d.ts +19 -0
- package/dist/actions-v2/ReassociateOrderItemDevicesDto.js +20 -0
- package/dist/actions-v2/SetInvoiceDunningBrqRequestDto.d.ts +22 -0
- package/dist/actions-v2/SetInvoiceDunningBrqRequestDto.js +20 -0
- package/dist/actions-v2/SetInvoiceDunningOtpCreatedDto.d.ts +21 -0
- package/dist/actions-v2/SetInvoiceDunningOtpCreatedDto.js +20 -0
- package/dist/actions-v2/SetInvoiceDunningPaymentFailedDto.d.ts +22 -0
- package/dist/actions-v2/SetInvoiceDunningPaymentFailedDto.js +20 -0
- package/dist/actions-v2/SetInvoiceFinalDunningReminderDto.d.ts +23 -0
- package/dist/actions-v2/SetInvoiceFinalDunningReminderDto.js +20 -0
- package/dist/actions-v2/SetInvoiceInitialDunningReminderDto.d.ts +22 -0
- package/dist/actions-v2/SetInvoiceInitialDunningReminderDto.js +20 -0
- package/dist/actions-v2/StartBillingRequestFlowDto.d.ts +23 -0
- package/dist/actions-v2/StartBillingRequestFlowDto.js +20 -0
- package/dist/actions-v2/UpdateActivityDateDto.d.ts +20 -0
- package/dist/actions-v2/UpdateActivityDateDto.js +20 -0
- package/dist/actions-v2/UpdateBillingRequestTransactionStatusDto.d.ts +20 -0
- package/dist/actions-v2/UpdateBillingRequestTransactionStatusDto.js +20 -0
- package/package.json +1 -1
- package/src/actions-v2/ActivateRecontractOrderDto.ts +62 -0
- package/src/actions-v2/CancelBillingRequestFromPaymentDto.ts +55 -0
- package/src/actions-v2/CancelOrderForRecontractDto.ts +62 -0
- package/src/actions-v2/CancelOrderForRollbackDto.ts +62 -0
- package/src/actions-v2/ClearOrderDeactivateOnDateDto.ts +55 -0
- package/src/actions-v2/CreateBillingRequestForInvoicesDto.ts +59 -0
- package/src/actions-v2/CreateBillingRequestTransactionDto.ts +55 -0
- package/src/actions-v2/CreateFinalNoticeActivityDto.ts +52 -0
- package/src/actions-v2/CreateRecontractOrderDto.ts +56 -0
- package/src/actions-v2/CreateRecontractOrderItemDto.ts +53 -0
- package/src/actions-v2/CreateRecontractVoiceConfigurationDto.ts +52 -0
- package/src/actions-v2/DeactivateOrderDunningDto.ts +62 -0
- package/src/actions-v2/ReactivateOrderAfterRollbackDto.ts +62 -0
- package/src/actions-v2/ReassociateOrderItemDevicesDto.ts +54 -0
- package/src/actions-v2/SetInvoiceDunningBrqRequestDto.ts +57 -0
- package/src/actions-v2/SetInvoiceDunningOtpCreatedDto.ts +56 -0
- package/src/actions-v2/SetInvoiceDunningPaymentFailedDto.ts +57 -0
- package/src/actions-v2/SetInvoiceFinalDunningReminderDto.ts +58 -0
- package/src/actions-v2/SetInvoiceInitialDunningReminderDto.ts +57 -0
- package/src/actions-v2/StartBillingRequestFlowDto.ts +58 -0
- package/src/actions-v2/UpdateActivityDateDto.ts +55 -0
- package/src/actions-v2/UpdateBillingRequestTransactionStatusDto.ts +55 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
export interface ActivateRecontractOrderMessage extends OdinRecordUpdatedEvent<ActivateRecontractOrderDto, {}> {
|
|
3
|
+
}
|
|
4
|
+
export declare class ActivateRecontractOrderDto extends OdinRecordUpdateDto<Record<string, any>> {
|
|
5
|
+
readonly actionName: string;
|
|
6
|
+
readonly schemaActionId: string;
|
|
7
|
+
readonly stageKey: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
});
|
|
15
|
+
static readonly stepClasses: readonly [];
|
|
16
|
+
steps: [];
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_ACTIVATE_RECONTRACT_ORDER = "ActivateRecontractOrder";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_ACTIVATE_RECONTRACT_ORDER = exports.ActivateRecontractOrderDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class ActivateRecontractOrderDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties: {},
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
});
|
|
14
|
+
this.actionName = 'ActivateRecontractOrder';
|
|
15
|
+
this.schemaActionId = '7f700f1b-6643-410d-b4fa-124ec46f95f1';
|
|
16
|
+
this.stageKey = 'OrderStageActive';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.ActivateRecontractOrderDto = ActivateRecontractOrderDto;
|
|
20
|
+
ActivateRecontractOrderDto.stepClasses = [];
|
|
21
|
+
exports.ROUTING_KEY_ACTIVATE_RECONTRACT_ORDER = 'ActivateRecontractOrder';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CancelBillingRequestFromPaymentProperties {
|
|
3
|
+
Status: string;
|
|
4
|
+
}
|
|
5
|
+
export declare class CancelBillingRequestFromPaymentDto extends OdinRecordUpdateDto<CancelBillingRequestFromPaymentProperties> {
|
|
6
|
+
readonly actionName: string;
|
|
7
|
+
readonly schemaActionId: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, properties: CancelBillingRequestFromPaymentProperties, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
stageKey?: string;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
export interface CancelBillingRequestFromPaymentMessage extends OdinRecordUpdatedEvent<CancelBillingRequestFromPaymentDto, CancelBillingRequestFromPaymentProperties> {
|
|
18
|
+
}
|
|
19
|
+
export declare const ROUTING_KEY_CANCEL_BILLING_REQUEST_FROM_PAYMENT = "CancelBillingRequestFromPayment";
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CANCEL_BILLING_REQUEST_FROM_PAYMENT = exports.CancelBillingRequestFromPaymentDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CancelBillingRequestFromPaymentDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties,
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
|
|
14
|
+
});
|
|
15
|
+
this.actionName = 'CancelBillingRequestFromPayment';
|
|
16
|
+
this.schemaActionId = 'e3b4ccdf-fcdb-4d39-a313-f00175cb5aac';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.CancelBillingRequestFromPaymentDto = CancelBillingRequestFromPaymentDto;
|
|
20
|
+
exports.ROUTING_KEY_CANCEL_BILLING_REQUEST_FROM_PAYMENT = 'CancelBillingRequestFromPayment';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
export interface CancelOrderForRecontractMessage extends OdinRecordUpdatedEvent<CancelOrderForRecontractDto, {}> {
|
|
3
|
+
}
|
|
4
|
+
export declare class CancelOrderForRecontractDto extends OdinRecordUpdateDto<Record<string, any>> {
|
|
5
|
+
readonly actionName: string;
|
|
6
|
+
readonly schemaActionId: string;
|
|
7
|
+
readonly stageKey: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
});
|
|
15
|
+
static readonly stepClasses: readonly [];
|
|
16
|
+
steps: [];
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_CANCEL_ORDER_FOR_RECONTRACT = "CancelOrderForRecontract";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CANCEL_ORDER_FOR_RECONTRACT = exports.CancelOrderForRecontractDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CancelOrderForRecontractDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties: {},
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
});
|
|
14
|
+
this.actionName = 'CancelOrderForRecontract';
|
|
15
|
+
this.schemaActionId = '09710d70-2f27-449e-8628-99a19f36dceb';
|
|
16
|
+
this.stageKey = 'OrderStageCancelled';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.CancelOrderForRecontractDto = CancelOrderForRecontractDto;
|
|
20
|
+
CancelOrderForRecontractDto.stepClasses = [];
|
|
21
|
+
exports.ROUTING_KEY_CANCEL_ORDER_FOR_RECONTRACT = 'CancelOrderForRecontract';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
export interface CancelOrderForRollbackMessage extends OdinRecordUpdatedEvent<CancelOrderForRollbackDto, {}> {
|
|
3
|
+
}
|
|
4
|
+
export declare class CancelOrderForRollbackDto extends OdinRecordUpdateDto<Record<string, any>> {
|
|
5
|
+
readonly actionName: string;
|
|
6
|
+
readonly schemaActionId: string;
|
|
7
|
+
readonly stageKey: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
});
|
|
15
|
+
static readonly stepClasses: readonly [];
|
|
16
|
+
steps: [];
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_CANCEL_ORDER_FOR_ROLLBACK = "CancelOrderForRollback";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CANCEL_ORDER_FOR_ROLLBACK = exports.CancelOrderForRollbackDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CancelOrderForRollbackDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties: {},
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
});
|
|
14
|
+
this.actionName = 'CancelOrderForRollback';
|
|
15
|
+
this.schemaActionId = 'f98327eb-3c3c-4069-bc92-27f4575399be';
|
|
16
|
+
this.stageKey = 'OrderStageCancelled';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.CancelOrderForRollbackDto = CancelOrderForRollbackDto;
|
|
20
|
+
CancelOrderForRollbackDto.stepClasses = [];
|
|
21
|
+
exports.ROUTING_KEY_CANCEL_ORDER_FOR_ROLLBACK = 'CancelOrderForRollback';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface ClearOrderDeactivateOnDateProperties {
|
|
3
|
+
DeactivateOnDate?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare class ClearOrderDeactivateOnDateDto extends OdinRecordUpdateDto<ClearOrderDeactivateOnDateProperties> {
|
|
6
|
+
readonly actionName: string;
|
|
7
|
+
readonly schemaActionId: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, properties: ClearOrderDeactivateOnDateProperties, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
stageKey?: string;
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
export interface ClearOrderDeactivateOnDateMessage extends OdinRecordUpdatedEvent<ClearOrderDeactivateOnDateDto, ClearOrderDeactivateOnDateProperties> {
|
|
18
|
+
}
|
|
19
|
+
export declare const ROUTING_KEY_CLEAR_ORDER_DEACTIVATE_ON_DATE = "ClearOrderDeactivateOnDate";
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CLEAR_ORDER_DEACTIVATE_ON_DATE = exports.ClearOrderDeactivateOnDateDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class ClearOrderDeactivateOnDateDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties,
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
|
|
14
|
+
});
|
|
15
|
+
this.actionName = 'ClearOrderDeactivateOnDate';
|
|
16
|
+
this.schemaActionId = '5c4b8c4f-59c4-49b7-b0f3-a4592079581d';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.ClearOrderDeactivateOnDateDto = ClearOrderDeactivateOnDateDto;
|
|
20
|
+
exports.ROUTING_KEY_CLEAR_ORDER_DEACTIVATE_ON_DATE = 'ClearOrderDeactivateOnDate';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CreateBillingRequestForInvoicesProperties {
|
|
3
|
+
Amount: string;
|
|
4
|
+
CurrencyCode: string;
|
|
5
|
+
Status: string;
|
|
6
|
+
Description?: string;
|
|
7
|
+
ExternalRef?: string;
|
|
8
|
+
GcStatus?: string;
|
|
9
|
+
CuExternalRef?: string;
|
|
10
|
+
BaExternalRef?: string;
|
|
11
|
+
PrqExternalRef?: string;
|
|
12
|
+
ContactName?: string;
|
|
13
|
+
ContactEmailAddress?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class CreateBillingRequestForInvoicesDto extends OdinRecordCreateDto<CreateBillingRequestForInvoicesProperties> {
|
|
16
|
+
readonly actionName: string;
|
|
17
|
+
readonly schemaActionId: string;
|
|
18
|
+
constructor(properties: CreateBillingRequestForInvoicesProperties, options?: {
|
|
19
|
+
journeyId?: string;
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
export interface CreateBillingRequestForInvoicesMessage extends OdinRecordCreatedEvent<CreateBillingRequestForInvoicesDto, CreateBillingRequestForInvoicesProperties> {
|
|
23
|
+
}
|
|
24
|
+
export declare const ROUTING_KEY_CREATE_BILLING_REQUEST_FOR_INVOICES = "CreateBillingRequestForInvoices";
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CREATE_BILLING_REQUEST_FOR_INVOICES = exports.CreateBillingRequestForInvoicesDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CreateBillingRequestForInvoicesDto extends core_1.OdinRecordCreateDto {
|
|
6
|
+
constructor(properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
entity: 'BillingModule:BillingRequest',
|
|
9
|
+
type: undefined,
|
|
10
|
+
properties,
|
|
11
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
12
|
+
});
|
|
13
|
+
this.actionName = 'CreateBillingRequestForInvoices';
|
|
14
|
+
this.schemaActionId = 'cf74d65a-2d57-4f07-b998-e086bd9e234e';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.CreateBillingRequestForInvoicesDto = CreateBillingRequestForInvoicesDto;
|
|
18
|
+
exports.ROUTING_KEY_CREATE_BILLING_REQUEST_FOR_INVOICES = 'CreateBillingRequestForInvoices';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CreateBillingRequestTransactionProperties {
|
|
3
|
+
Status: string;
|
|
4
|
+
Type: string;
|
|
5
|
+
Amount: string;
|
|
6
|
+
InvoiceRef?: string;
|
|
7
|
+
PaymentMethod?: string;
|
|
8
|
+
CurrencyCode?: string;
|
|
9
|
+
ExternalRef?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class CreateBillingRequestTransactionDto extends OdinRecordCreateDto<CreateBillingRequestTransactionProperties> {
|
|
12
|
+
readonly actionName: string;
|
|
13
|
+
readonly schemaActionId: string;
|
|
14
|
+
constructor(properties: CreateBillingRequestTransactionProperties, options?: {
|
|
15
|
+
journeyId?: string;
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
export interface CreateBillingRequestTransactionMessage extends OdinRecordCreatedEvent<CreateBillingRequestTransactionDto, CreateBillingRequestTransactionProperties> {
|
|
19
|
+
}
|
|
20
|
+
export declare const ROUTING_KEY_CREATE_BILLING_REQUEST_TRANSACTION = "CreateBillingRequestTransaction";
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CREATE_BILLING_REQUEST_TRANSACTION = exports.CreateBillingRequestTransactionDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CreateBillingRequestTransactionDto extends core_1.OdinRecordCreateDto {
|
|
6
|
+
constructor(properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
entity: 'BillingModule:Transaction',
|
|
9
|
+
type: undefined,
|
|
10
|
+
properties,
|
|
11
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
12
|
+
});
|
|
13
|
+
this.actionName = 'CreateBillingRequestTransaction';
|
|
14
|
+
this.schemaActionId = '5d7603b1-1a91-4103-b2b7-9d01a1344573';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.CreateBillingRequestTransactionDto = CreateBillingRequestTransactionDto;
|
|
18
|
+
exports.ROUTING_KEY_CREATE_BILLING_REQUEST_TRANSACTION = 'CreateBillingRequestTransaction';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CreateFinalNoticeActivityProperties {
|
|
3
|
+
Channel?: string;
|
|
4
|
+
Description?: string;
|
|
5
|
+
Process?: string;
|
|
6
|
+
Date?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class CreateFinalNoticeActivityDto extends OdinRecordCreateDto<CreateFinalNoticeActivityProperties> {
|
|
9
|
+
readonly actionName: string;
|
|
10
|
+
readonly schemaActionId: string;
|
|
11
|
+
constructor(properties: CreateFinalNoticeActivityProperties, options?: {
|
|
12
|
+
journeyId?: string;
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export interface CreateFinalNoticeActivityMessage extends OdinRecordCreatedEvent<CreateFinalNoticeActivityDto, CreateFinalNoticeActivityProperties> {
|
|
16
|
+
}
|
|
17
|
+
export declare const ROUTING_KEY_CREATE_FINAL_NOTICE_ACTIVITY = "CreateFinalNoticeActivity";
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CREATE_FINAL_NOTICE_ACTIVITY = exports.CreateFinalNoticeActivityDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CreateFinalNoticeActivityDto extends core_1.OdinRecordCreateDto {
|
|
6
|
+
constructor(properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
entity: 'SchemaModule:Activity',
|
|
9
|
+
type: undefined,
|
|
10
|
+
properties,
|
|
11
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
12
|
+
});
|
|
13
|
+
this.actionName = 'CreateFinalNoticeActivity';
|
|
14
|
+
this.schemaActionId = '7d823405-49ae-4004-90ff-a3d69161976e';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.CreateFinalNoticeActivityDto = CreateFinalNoticeActivityDto;
|
|
18
|
+
exports.ROUTING_KEY_CREATE_FINAL_NOTICE_ACTIVITY = 'CreateFinalNoticeActivity';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CreateRecontractOrderProperties {
|
|
3
|
+
SubscriberId?: string;
|
|
4
|
+
ActiveDate?: string;
|
|
5
|
+
BillingStartDate?: string;
|
|
6
|
+
ContractStartDate?: string;
|
|
7
|
+
BillingDay?: number;
|
|
8
|
+
PreviousOrderId?: string;
|
|
9
|
+
Source?: string;
|
|
10
|
+
AmendmentDate?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare class CreateRecontractOrderDto extends OdinRecordCreateDto<CreateRecontractOrderProperties> {
|
|
13
|
+
readonly actionName: string;
|
|
14
|
+
readonly schemaActionId: string;
|
|
15
|
+
constructor(properties: CreateRecontractOrderProperties, options?: {
|
|
16
|
+
journeyId?: string;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
export interface CreateRecontractOrderMessage extends OdinRecordCreatedEvent<CreateRecontractOrderDto, CreateRecontractOrderProperties> {
|
|
20
|
+
}
|
|
21
|
+
export declare const ROUTING_KEY_CREATE_RECONTRACT_ORDER = "CreateRecontractOrder";
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CREATE_RECONTRACT_ORDER = exports.CreateRecontractOrderDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CreateRecontractOrderDto extends core_1.OdinRecordCreateDto {
|
|
6
|
+
constructor(properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
entity: 'OrderModule:Order',
|
|
9
|
+
type: undefined,
|
|
10
|
+
properties,
|
|
11
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
12
|
+
});
|
|
13
|
+
this.actionName = 'CreateRecontractOrder';
|
|
14
|
+
this.schemaActionId = '4f61be8a-6450-4ac6-8302-6d3e03c7598e';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.CreateRecontractOrderDto = CreateRecontractOrderDto;
|
|
18
|
+
exports.ROUTING_KEY_CREATE_RECONTRACT_ORDER = 'CreateRecontractOrder';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CreateRecontractOrderItemProperties {
|
|
3
|
+
ProductType?: string;
|
|
4
|
+
ProductCategory?: string;
|
|
5
|
+
Quantity?: number;
|
|
6
|
+
UnitPrice?: string;
|
|
7
|
+
NetworkServiceId?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class CreateRecontractOrderItemDto extends OdinRecordCreateDto<CreateRecontractOrderItemProperties> {
|
|
10
|
+
readonly actionName: string;
|
|
11
|
+
readonly schemaActionId: string;
|
|
12
|
+
constructor(properties: CreateRecontractOrderItemProperties, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
export interface CreateRecontractOrderItemMessage extends OdinRecordCreatedEvent<CreateRecontractOrderItemDto, CreateRecontractOrderItemProperties> {
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_CREATE_RECONTRACT_ORDER_ITEM = "CreateRecontractOrderItem";
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CREATE_RECONTRACT_ORDER_ITEM = exports.CreateRecontractOrderItemDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CreateRecontractOrderItemDto extends core_1.OdinRecordCreateDto {
|
|
6
|
+
constructor(properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
entity: 'OrderModule:OrderItem',
|
|
9
|
+
type: undefined,
|
|
10
|
+
properties,
|
|
11
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
12
|
+
});
|
|
13
|
+
this.actionName = 'CreateRecontractOrderItem';
|
|
14
|
+
this.schemaActionId = 'c7e1cff8-ebd6-4319-a5e7-be2b8be3dff5';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.CreateRecontractOrderItemDto = CreateRecontractOrderItemDto;
|
|
18
|
+
exports.ROUTING_KEY_CREATE_RECONTRACT_ORDER_ITEM = 'CreateRecontractOrderItem';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecordCreateDto, OdinRecordCreatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface CreateRecontractVoiceConfigurationProperties {
|
|
3
|
+
OrderItemId?: string;
|
|
4
|
+
PhoneNumberToPort?: string;
|
|
5
|
+
PhoneNumberToPortParts?: string;
|
|
6
|
+
PortFromProvider?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare class CreateRecontractVoiceConfigurationDto extends OdinRecordCreateDto<CreateRecontractVoiceConfigurationProperties> {
|
|
9
|
+
readonly actionName: string;
|
|
10
|
+
readonly schemaActionId: string;
|
|
11
|
+
constructor(properties: CreateRecontractVoiceConfigurationProperties, options?: {
|
|
12
|
+
journeyId?: string;
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
export interface CreateRecontractVoiceConfigurationMessage extends OdinRecordCreatedEvent<CreateRecontractVoiceConfigurationDto, CreateRecontractVoiceConfigurationProperties> {
|
|
16
|
+
}
|
|
17
|
+
export declare const ROUTING_KEY_CREATE_RECONTRACT_VOICE_CONFIGURATION = "CreateRecontractVoiceConfiguration";
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_CREATE_RECONTRACT_VOICE_CONFIGURATION = exports.CreateRecontractVoiceConfigurationDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class CreateRecontractVoiceConfigurationDto extends core_1.OdinRecordCreateDto {
|
|
6
|
+
constructor(properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
entity: 'ServiceModule:VoiceConfiguration',
|
|
9
|
+
type: undefined,
|
|
10
|
+
properties,
|
|
11
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
12
|
+
});
|
|
13
|
+
this.actionName = 'CreateRecontractVoiceConfiguration';
|
|
14
|
+
this.schemaActionId = '32e9f7ef-793d-4d3d-b731-0fbe606aacdc';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
exports.CreateRecontractVoiceConfigurationDto = CreateRecontractVoiceConfigurationDto;
|
|
18
|
+
exports.ROUTING_KEY_CREATE_RECONTRACT_VOICE_CONFIGURATION = 'CreateRecontractVoiceConfiguration';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
export interface DeactivateOrderDunningMessage extends OdinRecordUpdatedEvent<DeactivateOrderDunningDto, {}> {
|
|
3
|
+
}
|
|
4
|
+
export declare class DeactivateOrderDunningDto extends OdinRecordUpdateDto<Record<string, any>> {
|
|
5
|
+
readonly actionName: string;
|
|
6
|
+
readonly schemaActionId: string;
|
|
7
|
+
readonly stageKey: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
});
|
|
15
|
+
static readonly stepClasses: readonly [];
|
|
16
|
+
steps: [];
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_DEACTIVATE_ORDER_DUNNING = "DeactivateOrderDunning";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_DEACTIVATE_ORDER_DUNNING = exports.DeactivateOrderDunningDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class DeactivateOrderDunningDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties: {},
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
});
|
|
14
|
+
this.actionName = 'DeactivateOrderDunning';
|
|
15
|
+
this.schemaActionId = '15726c62-419d-4ad3-90ab-07bd137f6637';
|
|
16
|
+
this.stageKey = 'OrderStageDeactivated';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.DeactivateOrderDunningDto = DeactivateOrderDunningDto;
|
|
20
|
+
DeactivateOrderDunningDto.stepClasses = [];
|
|
21
|
+
exports.ROUTING_KEY_DEACTIVATE_ORDER_DUNNING = 'DeactivateOrderDunning';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
export interface ReactivateOrderAfterRollbackMessage extends OdinRecordUpdatedEvent<ReactivateOrderAfterRollbackDto, {}> {
|
|
3
|
+
}
|
|
4
|
+
export declare class ReactivateOrderAfterRollbackDto extends OdinRecordUpdateDto<Record<string, any>> {
|
|
5
|
+
readonly actionName: string;
|
|
6
|
+
readonly schemaActionId: string;
|
|
7
|
+
readonly stageKey: string;
|
|
8
|
+
constructor(record: OdinRecord<any> | {
|
|
9
|
+
id: string;
|
|
10
|
+
entity: string;
|
|
11
|
+
type?: string;
|
|
12
|
+
}, options?: {
|
|
13
|
+
journeyId?: string;
|
|
14
|
+
});
|
|
15
|
+
static readonly stepClasses: readonly [];
|
|
16
|
+
steps: [];
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_REACTIVATE_ORDER_AFTER_ROLLBACK = "ReactivateOrderAfterRollback";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_REACTIVATE_ORDER_AFTER_ROLLBACK = exports.ReactivateOrderAfterRollbackDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class ReactivateOrderAfterRollbackDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties: {},
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
});
|
|
14
|
+
this.actionName = 'ReactivateOrderAfterRollback';
|
|
15
|
+
this.schemaActionId = 'caf39f11-1801-430c-91ce-317de4734f1f';
|
|
16
|
+
this.stageKey = 'OrderStageActive';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.ReactivateOrderAfterRollbackDto = ReactivateOrderAfterRollbackDto;
|
|
20
|
+
ReactivateOrderAfterRollbackDto.stepClasses = [];
|
|
21
|
+
exports.ROUTING_KEY_REACTIVATE_ORDER_AFTER_ROLLBACK = 'ReactivateOrderAfterRollback';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface ReassociateOrderItemDevicesProperties {
|
|
3
|
+
}
|
|
4
|
+
export declare class ReassociateOrderItemDevicesDto extends OdinRecordUpdateDto<ReassociateOrderItemDevicesProperties> {
|
|
5
|
+
readonly actionName: string;
|
|
6
|
+
readonly schemaActionId: string;
|
|
7
|
+
constructor(record: OdinRecord<any> | {
|
|
8
|
+
id: string;
|
|
9
|
+
entity: string;
|
|
10
|
+
type?: string;
|
|
11
|
+
}, properties: ReassociateOrderItemDevicesProperties, options?: {
|
|
12
|
+
journeyId?: string;
|
|
13
|
+
stageKey?: string;
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
export interface ReassociateOrderItemDevicesMessage extends OdinRecordUpdatedEvent<ReassociateOrderItemDevicesDto, ReassociateOrderItemDevicesProperties> {
|
|
17
|
+
}
|
|
18
|
+
export declare const ROUTING_KEY_REASSOCIATE_ORDER_ITEM_DEVICES = "ReassociateOrderItemDevices";
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_REASSOCIATE_ORDER_ITEM_DEVICES = exports.ReassociateOrderItemDevicesDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class ReassociateOrderItemDevicesDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties,
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
|
|
14
|
+
});
|
|
15
|
+
this.actionName = 'ReassociateOrderItemDevices';
|
|
16
|
+
this.schemaActionId = '88b9e9ec-a598-4098-b6a7-50b6478947a4';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.ReassociateOrderItemDevicesDto = ReassociateOrderItemDevicesDto;
|
|
20
|
+
exports.ROUTING_KEY_REASSOCIATE_ORDER_ITEM_DEVICES = 'ReassociateOrderItemDevices';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
|
+
interface SetInvoiceDunningBrqRequestProperties {
|
|
3
|
+
Status: string;
|
|
4
|
+
DunningStatus: string;
|
|
5
|
+
DunningStatusUpdatedAt?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare class SetInvoiceDunningBrqRequestDto extends OdinRecordUpdateDto<SetInvoiceDunningBrqRequestProperties> {
|
|
8
|
+
readonly actionName: string;
|
|
9
|
+
readonly schemaActionId: string;
|
|
10
|
+
constructor(record: OdinRecord<any> | {
|
|
11
|
+
id: string;
|
|
12
|
+
entity: string;
|
|
13
|
+
type?: string;
|
|
14
|
+
}, properties: SetInvoiceDunningBrqRequestProperties, options?: {
|
|
15
|
+
journeyId?: string;
|
|
16
|
+
stageKey?: string;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
export interface SetInvoiceDunningBrqRequestMessage extends OdinRecordUpdatedEvent<SetInvoiceDunningBrqRequestDto, SetInvoiceDunningBrqRequestProperties> {
|
|
20
|
+
}
|
|
21
|
+
export declare const ROUTING_KEY_SET_INVOICE_DUNNING_BRQ_REQUEST = "SetInvoiceDunningBrqRequest";
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ROUTING_KEY_SET_INVOICE_DUNNING_BRQ_REQUEST = exports.SetInvoiceDunningBrqRequestDto = void 0;
|
|
4
|
+
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
class SetInvoiceDunningBrqRequestDto extends core_1.OdinRecordUpdateDto {
|
|
6
|
+
constructor(record, properties, options) {
|
|
7
|
+
super({
|
|
8
|
+
id: record.id,
|
|
9
|
+
entity: record.entity,
|
|
10
|
+
type: record.type,
|
|
11
|
+
properties,
|
|
12
|
+
journeyId: options === null || options === void 0 ? void 0 : options.journeyId,
|
|
13
|
+
stageKey: options === null || options === void 0 ? void 0 : options.stageKey,
|
|
14
|
+
});
|
|
15
|
+
this.actionName = 'SetInvoiceDunningBrqRequest';
|
|
16
|
+
this.schemaActionId = 'ef22841f-f02e-4913-8a76-56ce8e905420';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.SetInvoiceDunningBrqRequestDto = SetInvoiceDunningBrqRequestDto;
|
|
20
|
+
exports.ROUTING_KEY_SET_INVOICE_DUNNING_BRQ_REQUEST = 'SetInvoiceDunningBrqRequest';
|