@fiado/type-kit 1.6.71 → 1.6.73

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.
Files changed (33) hide show
  1. package/bin/account/dtos/CreateBankAccountOutput.d.ts +5 -0
  2. package/bin/account/dtos/CreateBankAccountOutput.js +6 -0
  3. package/bin/account/dtos/CreateBankAccountUserOutput.d.ts +8 -0
  4. package/bin/account/dtos/CreateBankAccountUserOutput.js +6 -0
  5. package/bin/appSelectionData/dtos/AppSelectionDataCreateRequest.d.ts +9 -0
  6. package/bin/appSelectionData/dtos/AppSelectionDataCreateRequest.js +44 -0
  7. package/bin/appSelectionData/index.d.ts +1 -0
  8. package/bin/appSelectionData/index.js +18 -0
  9. package/bin/creditContract/dto/CreditContractCreateRequest.d.ts +15 -0
  10. package/bin/creditContract/dto/CreditContractCreateRequest.js +72 -0
  11. package/bin/helpdesk/dtos/CreateHelpdeskUser.d.ts +13 -0
  12. package/bin/helpdesk/dtos/CreateHelpdeskUser.js +43 -0
  13. package/bin/index.d.ts +1 -0
  14. package/bin/index.js +2 -1
  15. package/bin/productCatalog/enums/ProductSubtypeEnum.d.ts +1 -1
  16. package/bin/productCatalog/enums/ProductSubtypeEnum.js +1 -1
  17. package/bin/transaction/TransactionCreateRequest.d.ts +2 -0
  18. package/bin/transaction/TransactionCreateRequest.js +6 -0
  19. package/bin/transaction/TransactionCreateResponse.d.ts +2 -0
  20. package/bin/transaction/TransactionCreateResponse.js +6 -0
  21. package/bin/transaction/dtos/TransactionSourceEnum.d.ts +5 -0
  22. package/bin/transaction/dtos/TransactionSourceEnum.js +9 -0
  23. package/package.json +1 -1
  24. package/src/appSelectionData/dtos/AppSelectionDataCreateRequest.ts +27 -0
  25. package/src/appSelectionData/index.ts +4 -0
  26. package/src/index.ts +1 -1
  27. package/src/productCatalog/enums/ProductSubtypeEnum.ts +1 -1
  28. package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.d.ts +0 -3
  29. package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.js +0 -22
  30. package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.d.ts +0 -5
  31. package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.js +0 -6
  32. package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.d.ts +0 -7
  33. package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.js +0 -6
@@ -0,0 +1,5 @@
1
+ import { Provider } from "../../provider";
2
+ export declare class CreateBankAccountOutput {
3
+ externalAccountId: string;
4
+ provider: Provider;
5
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateBankAccountOutput = void 0;
4
+ class CreateBankAccountOutput {
5
+ }
6
+ exports.CreateBankAccountOutput = CreateBankAccountOutput;
@@ -0,0 +1,8 @@
1
+ import { Provider } from "../../provider";
2
+ export declare class CreateBankAccountUserOutput {
3
+ externalUserId: string;
4
+ externalAccountId?: string;
5
+ provider: Provider;
6
+ accountNumber?: string;
7
+ routingNumber?: string;
8
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateBankAccountUserOutput = void 0;
4
+ class CreateBankAccountUserOutput {
5
+ }
6
+ exports.CreateBankAccountUserOutput = CreateBankAccountUserOutput;
@@ -0,0 +1,9 @@
1
+ export declare class AppSelectionDataCreateRequest {
2
+ additionalInfo: string;
3
+ dataType: string;
4
+ description: string;
5
+ displayName: string;
6
+ isActive: boolean;
7
+ order: number;
8
+ value: string;
9
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AppSelectionDataCreateRequest = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class AppSelectionDataCreateRequest {
15
+ }
16
+ exports.AppSelectionDataCreateRequest = AppSelectionDataCreateRequest;
17
+ __decorate([
18
+ (0, class_validator_1.IsString)(),
19
+ __metadata("design:type", String)
20
+ ], AppSelectionDataCreateRequest.prototype, "additionalInfo", void 0);
21
+ __decorate([
22
+ (0, class_validator_1.IsString)(),
23
+ __metadata("design:type", String)
24
+ ], AppSelectionDataCreateRequest.prototype, "dataType", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsString)(),
27
+ __metadata("design:type", String)
28
+ ], AppSelectionDataCreateRequest.prototype, "description", void 0);
29
+ __decorate([
30
+ (0, class_validator_1.IsString)(),
31
+ __metadata("design:type", String)
32
+ ], AppSelectionDataCreateRequest.prototype, "displayName", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsBoolean)(),
35
+ __metadata("design:type", Boolean)
36
+ ], AppSelectionDataCreateRequest.prototype, "isActive", void 0);
37
+ __decorate([
38
+ (0, class_validator_1.IsNumber)(),
39
+ __metadata("design:type", Number)
40
+ ], AppSelectionDataCreateRequest.prototype, "order", void 0);
41
+ __decorate([
42
+ (0, class_validator_1.IsString)(),
43
+ __metadata("design:type", String)
44
+ ], AppSelectionDataCreateRequest.prototype, "value", void 0);
@@ -0,0 +1 @@
1
+ export * from './dtos/AppSelectionDataCreateRequest';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ //dtos
18
+ __exportStar(require("./dtos/AppSelectionDataCreateRequest"), exports);
@@ -0,0 +1,15 @@
1
+ import { CountryId } from "../../country";
2
+ import { InstrumentEnum } from "../enums/InstrumentEnum";
3
+ export default class CreditContractCreateRequest {
4
+ directoryUserId: string;
5
+ relatedTransaction: string;
6
+ peopleId: string;
7
+ currencyId: CountryId;
8
+ creditNotional: number;
9
+ creditFee: number;
10
+ creditTax: number;
11
+ creditTotal: number;
12
+ instrument: InstrumentEnum;
13
+ amountBlocked: number;
14
+ relatedPocketId: string;
15
+ }
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ const class_validator_1 = require("class-validator");
13
+ const country_1 = require("../../country");
14
+ const InstrumentEnum_1 = require("../enums/InstrumentEnum");
15
+ class CreditContractCreateRequest {
16
+ }
17
+ exports.default = CreditContractCreateRequest;
18
+ __decorate([
19
+ (0, class_validator_1.IsString)(),
20
+ (0, class_validator_1.IsNotEmpty)(),
21
+ __metadata("design:type", String)
22
+ ], CreditContractCreateRequest.prototype, "directoryUserId", void 0);
23
+ __decorate([
24
+ (0, class_validator_1.IsString)(),
25
+ (0, class_validator_1.IsNotEmpty)(),
26
+ __metadata("design:type", String)
27
+ ], CreditContractCreateRequest.prototype, "relatedTransaction", void 0);
28
+ __decorate([
29
+ (0, class_validator_1.IsString)(),
30
+ (0, class_validator_1.IsNotEmpty)(),
31
+ __metadata("design:type", String)
32
+ ], CreditContractCreateRequest.prototype, "peopleId", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsEnum)(country_1.CountryId),
35
+ (0, class_validator_1.IsNotEmpty)(),
36
+ __metadata("design:type", String)
37
+ ], CreditContractCreateRequest.prototype, "currencyId", void 0);
38
+ __decorate([
39
+ (0, class_validator_1.IsNumber)(),
40
+ (0, class_validator_1.IsNotEmpty)(),
41
+ __metadata("design:type", Number)
42
+ ], CreditContractCreateRequest.prototype, "creditNotional", void 0);
43
+ __decorate([
44
+ (0, class_validator_1.IsNumber)(),
45
+ (0, class_validator_1.IsNotEmpty)(),
46
+ __metadata("design:type", Number)
47
+ ], CreditContractCreateRequest.prototype, "creditFee", void 0);
48
+ __decorate([
49
+ (0, class_validator_1.IsNumber)(),
50
+ (0, class_validator_1.IsNotEmpty)(),
51
+ __metadata("design:type", Number)
52
+ ], CreditContractCreateRequest.prototype, "creditTax", void 0);
53
+ __decorate([
54
+ (0, class_validator_1.IsNumber)(),
55
+ (0, class_validator_1.IsNotEmpty)(),
56
+ __metadata("design:type", Number)
57
+ ], CreditContractCreateRequest.prototype, "creditTotal", void 0);
58
+ __decorate([
59
+ (0, class_validator_1.IsEnum)(InstrumentEnum_1.InstrumentEnum),
60
+ (0, class_validator_1.IsNotEmpty)(),
61
+ __metadata("design:type", String)
62
+ ], CreditContractCreateRequest.prototype, "instrument", void 0);
63
+ __decorate([
64
+ (0, class_validator_1.IsNumber)(),
65
+ (0, class_validator_1.IsNotEmpty)(),
66
+ __metadata("design:type", Number)
67
+ ], CreditContractCreateRequest.prototype, "amountBlocked", void 0);
68
+ __decorate([
69
+ (0, class_validator_1.IsString)(),
70
+ (0, class_validator_1.IsNotEmpty)(),
71
+ __metadata("design:type", String)
72
+ ], CreditContractCreateRequest.prototype, "relatedPocketId", void 0);
@@ -0,0 +1,13 @@
1
+ import { TypeOfContactIdEnum } from "../../contactInfo";
2
+ export declare class CreateHelpdeskUser {
3
+ directoryId: string;
4
+ indexName: string;
5
+ usaDebitAccount: boolean;
6
+ mxnDebitAccount: boolean;
7
+ otherContacts: {
8
+ contact: string;
9
+ typeOfContactId: TypeOfContactIdEnum;
10
+ }[];
11
+ directoryStatus: string;
12
+ bankSponsor: string;
13
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.CreateHelpdeskUser = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ class CreateHelpdeskUser {
15
+ }
16
+ exports.CreateHelpdeskUser = CreateHelpdeskUser;
17
+ __decorate([
18
+ (0, class_validator_1.IsNotEmpty)(),
19
+ (0, class_validator_1.IsString)(),
20
+ __metadata("design:type", String)
21
+ ], CreateHelpdeskUser.prototype, "directoryId", void 0);
22
+ __decorate([
23
+ (0, class_validator_1.IsNotEmpty)(),
24
+ (0, class_validator_1.IsString)(),
25
+ __metadata("design:type", String)
26
+ ], CreateHelpdeskUser.prototype, "indexName", void 0);
27
+ __decorate([
28
+ (0, class_validator_1.IsBoolean)(),
29
+ __metadata("design:type", Boolean)
30
+ ], CreateHelpdeskUser.prototype, "usaDebitAccount", void 0);
31
+ __decorate([
32
+ (0, class_validator_1.IsBoolean)(),
33
+ __metadata("design:type", Boolean)
34
+ ], CreateHelpdeskUser.prototype, "mxnDebitAccount", void 0);
35
+ __decorate([
36
+ (0, class_validator_1.IsString)(),
37
+ (0, class_validator_1.IsNotEmpty)(),
38
+ __metadata("design:type", String)
39
+ ], CreateHelpdeskUser.prototype, "directoryStatus", void 0);
40
+ __decorate([
41
+ (0, class_validator_1.IsString)(),
42
+ __metadata("design:type", String)
43
+ ], CreateHelpdeskUser.prototype, "bankSponsor", void 0);
package/bin/index.d.ts CHANGED
@@ -41,3 +41,4 @@ export * as Blacklist from './blacklist';
41
41
  export * as IssuanceBusiness from './issuanceBusiness';
42
42
  export * as Observations from './observations';
43
43
  export * as Device from './device';
44
+ export * as AppSelectionData from './appSelectionData';
package/bin/index.js CHANGED
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.Device = exports.Observations = exports.IssuanceBusiness = exports.Blacklist = exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
26
+ exports.AppSelectionData = exports.Device = exports.Observations = exports.IssuanceBusiness = exports.Blacklist = exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
27
27
  exports.Account = __importStar(require("./account"));
28
28
  exports.Activity = __importStar(require("./activity"));
29
29
  exports.Beneficiary = __importStar(require("./beneficiary"));
@@ -67,3 +67,4 @@ exports.Blacklist = __importStar(require("./blacklist"));
67
67
  exports.IssuanceBusiness = __importStar(require("./issuanceBusiness"));
68
68
  exports.Observations = __importStar(require("./observations"));
69
69
  exports.Device = __importStar(require("./device"));
70
+ exports.AppSelectionData = __importStar(require("./appSelectionData"));
@@ -37,5 +37,5 @@ export declare enum ProductSubtypeEnum {
37
37
  FIADO_BUSINESS_PROV = "PROV",
38
38
  FIADO_BUSINESS_REV_PROV = "REV_PROV",
39
39
  FIADO_BUSINESS_ADJUSTMENT = "ADJUSTMENT",
40
- FIADO_BUSINESS_ADJUSTMENT_REV = "ADJUSTMENT_REV"
40
+ FIADO_BUSINESS_REV_ADJUSTMENT = "REV_ADJUSTMENT"
41
41
  }
@@ -48,5 +48,5 @@ var ProductSubtypeEnum;
48
48
  ProductSubtypeEnum["FIADO_BUSINESS_PROV"] = "PROV";
49
49
  ProductSubtypeEnum["FIADO_BUSINESS_REV_PROV"] = "REV_PROV";
50
50
  ProductSubtypeEnum["FIADO_BUSINESS_ADJUSTMENT"] = "ADJUSTMENT";
51
- ProductSubtypeEnum["FIADO_BUSINESS_ADJUSTMENT_REV"] = "ADJUSTMENT_REV";
51
+ ProductSubtypeEnum["FIADO_BUSINESS_REV_ADJUSTMENT"] = "REV_ADJUSTMENT";
52
52
  })(ProductSubtypeEnum || (exports.ProductSubtypeEnum = ProductSubtypeEnum = {}));
@@ -0,0 +1,2 @@
1
+ export declare class TransactionCreateRequest {
2
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionCreateRequest = void 0;
4
+ class TransactionCreateRequest {
5
+ }
6
+ exports.TransactionCreateRequest = TransactionCreateRequest;
@@ -0,0 +1,2 @@
1
+ export declare class TransactionCreateResponse {
2
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionCreateResponse = void 0;
4
+ class TransactionCreateResponse {
5
+ }
6
+ exports.TransactionCreateResponse = TransactionCreateResponse;
@@ -0,0 +1,5 @@
1
+ export declare enum TransactionSourceEnum {
2
+ FIADO_INC = "FIADO_INC",
3
+ FIADO_IFPE = "FIADO_IFPE",
4
+ FIADO_SA = "FIADO_SA"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TransactionSourceEnum = void 0;
4
+ var TransactionSourceEnum;
5
+ (function (TransactionSourceEnum) {
6
+ TransactionSourceEnum["FIADO_INC"] = "FIADO_INC";
7
+ TransactionSourceEnum["FIADO_IFPE"] = "FIADO_IFPE";
8
+ TransactionSourceEnum["FIADO_SA"] = "FIADO_SA";
9
+ })(TransactionSourceEnum || (exports.TransactionSourceEnum = TransactionSourceEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.6.71",
3
+ "version": "1.6.73",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,27 @@
1
+ import { IsBoolean, IsNotEmpty, IsNumber, IsString } from 'class-validator';
2
+
3
+
4
+ export class AppSelectionDataCreateRequest {
5
+
6
+ @IsString()
7
+ additionalInfo: string;
8
+
9
+ @IsString()
10
+ dataType: string;
11
+
12
+ @IsString()
13
+ description: string;
14
+
15
+ @IsString()
16
+ displayName: string;
17
+
18
+ @IsBoolean()
19
+ isActive: boolean;
20
+
21
+ @IsNumber()
22
+ order: number;
23
+
24
+ @IsString()
25
+ value: string;
26
+
27
+ }
@@ -0,0 +1,4 @@
1
+
2
+ //dtos
3
+ export * from './dtos/AppSelectionDataCreateRequest';
4
+
package/src/index.ts CHANGED
@@ -41,5 +41,5 @@ export * as Blacklist from './blacklist';
41
41
  export * as IssuanceBusiness from './issuanceBusiness';
42
42
  export * as Observations from './observations';
43
43
  export * as Device from './device';
44
-
44
+ export * as AppSelectionData from './appSelectionData';
45
45
 
@@ -51,6 +51,6 @@ export enum ProductSubtypeEnum {
51
51
  FIADO_BUSINESS_PROV = "PROV",
52
52
  FIADO_BUSINESS_REV_PROV = "REV_PROV",
53
53
  FIADO_BUSINESS_ADJUSTMENT = "ADJUSTMENT",
54
- FIADO_BUSINESS_ADJUSTMENT_REV = "ADJUSTMENT_REV",
54
+ FIADO_BUSINESS_REV_ADJUSTMENT = "REV_ADJUSTMENT",
55
55
 
56
56
  }
@@ -1,3 +0,0 @@
1
- export declare class GroupDirectoryRetationsUpdateRequest {
2
- agent: string;
3
- }
@@ -1,22 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.GroupDirectoryRetationsUpdateRequest = void 0;
13
- const class_validator_1 = require("class-validator");
14
- class GroupDirectoryRetationsUpdateRequest {
15
- }
16
- exports.GroupDirectoryRetationsUpdateRequest = GroupDirectoryRetationsUpdateRequest;
17
- __decorate([
18
- (0, class_validator_1.IsOptional)(),
19
- (0, class_validator_1.IsString)(),
20
- (0, class_validator_1.Length)(1, 20),
21
- __metadata("design:type", String)
22
- ], GroupDirectoryRetationsUpdateRequest.prototype, "agent", void 0);
@@ -1,5 +0,0 @@
1
- export declare class AuthorizeP2pTransactionRequest {
2
- idempotencyKey: string;
3
- targetDirectoryId: string;
4
- amount: number;
5
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AuthorizeP2pTransactionRequest = void 0;
4
- class AuthorizeP2pTransactionRequest {
5
- }
6
- exports.AuthorizeP2pTransactionRequest = AuthorizeP2pTransactionRequest;
@@ -1,7 +0,0 @@
1
- import { OperationEnum } from "../../../transaction";
2
- export declare class AuthorizePocketTransactionRequest {
3
- idempotencyKey: string;
4
- targetPocketId: string;
5
- operation: OperationEnum;
6
- amount: number;
7
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AuthorizePocketTransactionRequest = void 0;
4
- class AuthorizePocketTransactionRequest {
5
- }
6
- exports.AuthorizePocketTransactionRequest = AuthorizePocketTransactionRequest;