@fiado/type-kit 1.9.31 → 1.9.34
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/bin/collector/enums/CollectionType.d.ts +2 -1
- package/bin/collector/enums/CollectionType.js +1 -0
- package/bin/transaction/dtos/TransactionGetResponse.d.ts +1 -0
- package/bin/transactionProcessor/dtos/AuthorizeCollectorOrderRequest.d.ts +22 -0
- package/bin/transactionProcessor/dtos/AuthorizeCollectorOrderRequest.js +6 -0
- package/bin/transactionProcessor/index.d.ts +1 -0
- package/bin/transactionProcessor/index.js +1 -0
- package/package.json +1 -1
- package/src/collector/enums/CollectionType.ts +2 -1
- package/src/transaction/dtos/TransactionGetResponse.ts +1 -0
- package/src/transactionProcessor/dtos/AuthorizeCollectorOrderRequest.ts +24 -0
- package/src/transactionProcessor/index.ts +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CollectionType } from "../../collector";
|
|
2
|
+
import { Company } from "../../company";
|
|
3
|
+
import { DirectoryResponse } from "../../directory";
|
|
4
|
+
import { PeopleResponse } from "../../identity";
|
|
5
|
+
export declare class AuthorizeCollectorOrderRequest {
|
|
6
|
+
executionId: string;
|
|
7
|
+
orderId: string;
|
|
8
|
+
peopleId: string;
|
|
9
|
+
directoryId: string;
|
|
10
|
+
currencyId: string;
|
|
11
|
+
notional: number;
|
|
12
|
+
totalToCollect: number;
|
|
13
|
+
company: Company;
|
|
14
|
+
type: CollectionType;
|
|
15
|
+
servicePriceListId?: string;
|
|
16
|
+
scheduleCollectionDate: string;
|
|
17
|
+
relatedProductIds?: string[];
|
|
18
|
+
creditContractIds: string[];
|
|
19
|
+
collectorTransactionId: string;
|
|
20
|
+
peopleInfo: Partial<PeopleResponse>;
|
|
21
|
+
directoryInfo: Partial<DirectoryResponse>;
|
|
22
|
+
}
|
|
@@ -25,6 +25,7 @@ export * from './dtos/EventTransactionRequest';
|
|
|
25
25
|
export * from './dtos/EventTransactionInfo';
|
|
26
26
|
export * from './dtos/AuthorizeUsdAchTransactionRequest';
|
|
27
27
|
export * from './dtos/AuthorizeMCSendTransactionRequest';
|
|
28
|
+
export * from './dtos/AuthorizeCollectorOrderRequest';
|
|
28
29
|
export * from './enums/TransactionProcessorCodesEnum';
|
|
29
30
|
export * from './enums/AsyncTxStatusEnum';
|
|
30
31
|
export * from './enums/AppEnum';
|
|
@@ -41,6 +41,7 @@ __exportStar(require("./dtos/EventTransactionRequest"), exports);
|
|
|
41
41
|
__exportStar(require("./dtos/EventTransactionInfo"), exports);
|
|
42
42
|
__exportStar(require("./dtos/AuthorizeUsdAchTransactionRequest"), exports);
|
|
43
43
|
__exportStar(require("./dtos/AuthorizeMCSendTransactionRequest"), exports);
|
|
44
|
+
__exportStar(require("./dtos/AuthorizeCollectorOrderRequest"), exports);
|
|
44
45
|
__exportStar(require("./enums/TransactionProcessorCodesEnum"), exports);
|
|
45
46
|
__exportStar(require("./enums/AsyncTxStatusEnum"), exports);
|
|
46
47
|
__exportStar(require("./enums/AppEnum"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
|
|
2
|
+
import { CollectionType } from "../../collector";
|
|
3
|
+
import { Company } from "../../company";
|
|
4
|
+
import { DirectoryResponse } from "../../directory";
|
|
5
|
+
import { PeopleResponse } from "../../identity";
|
|
6
|
+
|
|
7
|
+
export class AuthorizeCollectorOrderRequest {
|
|
8
|
+
executionId: string;
|
|
9
|
+
orderId: string;
|
|
10
|
+
peopleId: string;
|
|
11
|
+
directoryId: string;
|
|
12
|
+
currencyId: string;
|
|
13
|
+
notional: number;
|
|
14
|
+
totalToCollect: number;
|
|
15
|
+
company: Company;
|
|
16
|
+
type: CollectionType;
|
|
17
|
+
servicePriceListId?: string;
|
|
18
|
+
scheduleCollectionDate: string;
|
|
19
|
+
relatedProductIds?: string[];
|
|
20
|
+
creditContractIds: string[];
|
|
21
|
+
collectorTransactionId: string;
|
|
22
|
+
peopleInfo: Partial<PeopleResponse>;
|
|
23
|
+
directoryInfo: Partial<DirectoryResponse>;
|
|
24
|
+
}
|
|
@@ -25,6 +25,7 @@ export * from './dtos/EventTransactionRequest';
|
|
|
25
25
|
export * from './dtos/EventTransactionInfo';
|
|
26
26
|
export * from './dtos/AuthorizeUsdAchTransactionRequest';
|
|
27
27
|
export * from './dtos/AuthorizeMCSendTransactionRequest';
|
|
28
|
+
export * from './dtos/AuthorizeCollectorOrderRequest';
|
|
28
29
|
|
|
29
30
|
export * from './enums/TransactionProcessorCodesEnum';
|
|
30
31
|
export * from './enums/AsyncTxStatusEnum';
|