@fiado/type-kit 3.31.0 → 3.32.0

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 (66) hide show
  1. package/bin/account/dtos/AccountInfo.d.ts +2 -1
  2. package/bin/account/dtos/AccountInfo.js +3 -1
  3. package/bin/account/dtos/ExchangeInfo.d.ts +2 -1
  4. package/bin/account/dtos/ExchangeInfo.js +3 -1
  5. package/bin/account/dtos/GetPocketResponse.d.ts +2 -1
  6. package/bin/account/dtos/GetPocketResponse.js +2 -0
  7. package/bin/account/dtos/PocketItem.d.ts +2 -1
  8. package/bin/account/dtos/PocketItem.js +3 -1
  9. package/bin/apiResponse/dtos/FiadoApiResponse.d.ts +2 -1
  10. package/bin/bankAccount/dtos/GetExternalBankAccountRequest.d.ts +2 -1
  11. package/bin/bankAccount/dtos/GetExternalBankAccountRequest.js +2 -0
  12. package/bin/bankAccount/dtos/GetExternalBankAccountResponse.d.ts +2 -1
  13. package/bin/bankAccount/dtos/GetExternalBankAccountResponse.js +2 -0
  14. package/bin/creditContract/dtos/CreditContractCreateRequest.d.ts +2 -1
  15. package/bin/creditContract/dtos/CreditContractCreateRequest.js +3 -1
  16. package/bin/exchangeRate/dtos/GetExchangeRatesRequest.d.ts +2 -1
  17. package/bin/exchangeRate/dtos/GetExchangeRatesRequest.js +2 -0
  18. package/bin/fraudPreventionEngine/dtos/CreateAccountLevelRequest.d.ts +2 -1
  19. package/bin/fraudPreventionEngine/dtos/CreateAccountLevelRequest.js +2 -0
  20. package/bin/fraudPreventionEngine/dtos/GetAccountLevelParams.d.ts +2 -1
  21. package/bin/fraudPreventionEngine/dtos/GetAccountLevelParams.js +2 -0
  22. package/bin/productCatalog/dtos/GetProductCatalogResponse.d.ts +2 -1
  23. package/bin/productCatalog/dtos/GetProductCatalogResponse.js +3 -1
  24. package/bin/riskProfile/dtos/UpdateAlarmProfileRequest.d.ts +2 -1
  25. package/bin/riskProfile/dtos/UpdateAlarmProfileRequest.js +2 -0
  26. package/bin/riskProfile/dtos/UpdateFactorInfo.d.ts +2 -1
  27. package/bin/riskProfile/dtos/UpdateFactorInfo.js +2 -0
  28. package/bin/riskProfile/dtos/UpdateRiskProfileRequest.d.ts +2 -1
  29. package/bin/riskProfile/dtos/UpdateRiskProfileRequest.js +2 -0
  30. package/bin/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.d.ts +2 -1
  31. package/bin/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.js +2 -0
  32. package/bin/transactionProcessor/dtos/ProcessUpdateLevelRequest.d.ts +2 -1
  33. package/bin/transactionProcessor/dtos/ProcessUpdateLevelRequest.js +2 -0
  34. package/fiado-type-kit-3.32.0.tgz +0 -0
  35. package/package.json +1 -1
  36. package/src/account/dtos/AccountInfo.ts +3 -2
  37. package/src/account/dtos/ExchangeInfo.ts +3 -2
  38. package/src/account/dtos/GetPocketResponse.ts +3 -2
  39. package/src/account/dtos/PocketItem.ts +3 -2
  40. package/src/apiResponse/dtos/FiadoApiResponse.ts +3 -2
  41. package/src/bankAccount/dtos/GetExternalBankAccountRequest.ts +3 -2
  42. package/src/bankAccount/dtos/GetExternalBankAccountResponse.ts +3 -2
  43. package/src/creditContract/dtos/CreditContractCreateRequest.ts +3 -2
  44. package/src/exchangeRate/dtos/GetExchangeRatesRequest.ts +3 -2
  45. package/src/fraudPreventionEngine/dtos/CreateAccountLevelRequest.ts +3 -2
  46. package/src/fraudPreventionEngine/dtos/GetAccountLevelParams.ts +3 -2
  47. package/src/productCatalog/dtos/GetProductCatalogResponse.ts +3 -2
  48. package/src/riskProfile/dtos/UpdateAlarmProfileRequest.ts +3 -2
  49. package/src/riskProfile/dtos/UpdateFactorInfo.ts +3 -2
  50. package/src/riskProfile/dtos/UpdateRiskProfileRequest.ts +3 -2
  51. package/src/transactionProcessor/dtos/AuthorizeSpeiBankTransferRequest.ts +3 -2
  52. package/src/transactionProcessor/dtos/ProcessUpdateLevelRequest.ts +3 -2
  53. package/bin/benefitCenter/dtos/BackofficeLeafOverrideUpsertRequest.d.ts +0 -22
  54. package/bin/benefitCenter/dtos/BackofficeLeafOverrideUpsertRequest.js +0 -91
  55. package/bin/benefitCenter/dtos/FieldOverrideRequest.d.ts +0 -19
  56. package/bin/benefitCenter/dtos/FieldOverrideRequest.js +0 -80
  57. package/bin/benefitCenter/dtos/InputSchemaOverrideRequest.d.ts +0 -9
  58. package/bin/benefitCenter/dtos/InputSchemaOverrideRequest.js +0 -29
  59. package/bin/benefitCenter/enums/LeafOverrideStatusEnum.d.ts +0 -10
  60. package/bin/benefitCenter/enums/LeafOverrideStatusEnum.js +0 -14
  61. package/bin/mdm/dtos/DeviceEnrollResponse.d.ts +0 -11
  62. package/bin/mdm/dtos/DeviceEnrollResponse.js +0 -6
  63. package/bin/mdm/dtos/DeviceReleaseResponse.d.ts +0 -9
  64. package/bin/mdm/dtos/DeviceReleaseResponse.js +0 -6
  65. package/bin/mdm/dtos/DeviceServiceDeactivateResponse.d.ts +0 -9
  66. package/bin/mdm/dtos/DeviceServiceDeactivateResponse.js +0 -6
@@ -1,5 +1,5 @@
1
1
  import { AccountEntityStatusEnum } from "../enums/AccountEntityStatusEnum";
2
- export default class AccountInfo {
2
+ export declare class AccountInfo {
3
3
  id: string;
4
4
  directoryId: string;
5
5
  currencyId: string;
@@ -11,3 +11,4 @@ export default class AccountInfo {
11
11
  status: AccountEntityStatusEnum;
12
12
  externalAccountId?: string;
13
13
  }
14
+ export default AccountInfo;
@@ -9,12 +9,13 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AccountInfo = void 0;
12
13
  const class_validator_1 = require("class-validator");
13
14
  const regex_1 = require("../../helpers/constans/regex");
14
15
  const AccountEntityStatusEnum_1 = require("../enums/AccountEntityStatusEnum");
15
16
  class AccountInfo {
16
17
  }
17
- exports.default = AccountInfo;
18
+ exports.AccountInfo = AccountInfo;
18
19
  __decorate([
19
20
  (0, class_validator_1.IsString)(),
20
21
  (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
@@ -62,3 +63,4 @@ __decorate([
62
63
  (0, class_validator_1.IsString)(),
63
64
  __metadata("design:type", String)
64
65
  ], AccountInfo.prototype, "externalAccountId", void 0);
66
+ exports.default = AccountInfo;
@@ -1,4 +1,5 @@
1
- export default class ExchangeInfo {
1
+ export declare class ExchangeInfo {
2
2
  currencyId: string;
3
3
  rate: number;
4
4
  }
5
+ export default ExchangeInfo;
@@ -9,10 +9,11 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ExchangeInfo = void 0;
12
13
  const class_validator_1 = require("class-validator");
13
14
  class ExchangeInfo {
14
15
  }
15
- exports.default = ExchangeInfo;
16
+ exports.ExchangeInfo = ExchangeInfo;
16
17
  __decorate([
17
18
  (0, class_validator_1.IsString)(),
18
19
  __metadata("design:type", String)
@@ -21,3 +22,4 @@ __decorate([
21
22
  (0, class_validator_1.IsNumber)(),
22
23
  __metadata("design:type", Number)
23
24
  ], ExchangeInfo.prototype, "rate", void 0);
25
+ exports.default = ExchangeInfo;
@@ -1,8 +1,9 @@
1
1
  import AccountInfo from "./AccountInfo";
2
2
  import PocketItem from "./PocketItem";
3
3
  import ExchangeInfo from "./ExchangeInfo";
4
- export default class GetPocketResponse {
4
+ export declare class GetPocketResponse {
5
5
  accountInfo: AccountInfo;
6
6
  pockets: PocketItem[];
7
7
  exchangeInfo: ExchangeInfo;
8
8
  }
9
+ export default GetPocketResponse;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetPocketResponse = void 0;
3
4
  class GetPocketResponse {
4
5
  }
6
+ exports.GetPocketResponse = GetPocketResponse;
5
7
  exports.default = GetPocketResponse;
@@ -1,5 +1,5 @@
1
1
  import { PocketBalanceItem } from "./PocketBalanceItem";
2
- export default class PocketItem {
2
+ export declare class PocketItem {
3
3
  id: string;
4
4
  ownerDirectoryId: string;
5
5
  beneficiaryDirectoryId: string;
@@ -10,3 +10,4 @@ export default class PocketItem {
10
10
  profilePicture: string;
11
11
  pocketBalance: PocketBalanceItem[];
12
12
  }
13
+ export default PocketItem;
@@ -9,11 +9,12 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.PocketItem = void 0;
12
13
  const class_validator_1 = require("class-validator");
13
14
  const regex_1 = require("../../helpers/constans/regex");
14
15
  class PocketItem {
15
16
  }
16
- exports.default = PocketItem;
17
+ exports.PocketItem = PocketItem;
17
18
  __decorate([
18
19
  (0, class_validator_1.IsString)(),
19
20
  (0, class_validator_1.Matches)(regex_1.regexUuidV4, {
@@ -59,3 +60,4 @@ __decorate([
59
60
  (0, class_validator_1.ValidateNested)(),
60
61
  __metadata("design:type", Array)
61
62
  ], PocketItem.prototype, "pocketBalance", void 0);
63
+ exports.default = PocketItem;
@@ -1,7 +1,8 @@
1
- export default interface FiadoApiResponse<T> {
1
+ export interface FiadoApiResponse<T> {
2
2
  data: T;
3
3
  date: string | null;
4
4
  code: string | null;
5
5
  msg: string | null;
6
6
  description: string | null;
7
7
  }
8
+ export default FiadoApiResponse;
@@ -1,4 +1,4 @@
1
- export default class GetExternalBankAccountRequest {
1
+ export declare class GetExternalBankAccountRequest {
2
2
  countryId?: string;
3
3
  bankAccountId?: string;
4
4
  accountNumber?: string;
@@ -10,3 +10,4 @@ export default class GetExternalBankAccountRequest {
10
10
  bankId?: string;
11
11
  default?: boolean;
12
12
  }
13
+ export default GetExternalBankAccountRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetExternalBankAccountRequest = void 0;
3
4
  class GetExternalBankAccountRequest {
4
5
  }
6
+ exports.GetExternalBankAccountRequest = GetExternalBankAccountRequest;
5
7
  exports.default = GetExternalBankAccountRequest;
@@ -1,6 +1,6 @@
1
1
  import { ExternalAccountOwnershipEnum } from "../enums/ExternalAccountOwnershipEnum";
2
2
  import { ExternalAccountTypeEnum } from "../enums/ExternalAccountTypeEnum";
3
- export default class GetExternalBankAccountResponse {
3
+ export declare class GetExternalBankAccountResponse {
4
4
  id: string;
5
5
  countryId: string;
6
6
  accountNumber: string | null;
@@ -15,3 +15,4 @@ export default class GetExternalBankAccountResponse {
15
15
  iconUrl: string | null;
16
16
  ownership?: ExternalAccountOwnershipEnum;
17
17
  }
18
+ export default GetExternalBankAccountResponse;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetExternalBankAccountResponse = void 0;
3
4
  class GetExternalBankAccountResponse {
4
5
  }
6
+ exports.GetExternalBankAccountResponse = GetExternalBankAccountResponse;
5
7
  exports.default = GetExternalBankAccountResponse;
@@ -1,7 +1,7 @@
1
1
  import { CountryId } from "../../country";
2
2
  import { ProductTypeEnum } from "../../productCatalog";
3
3
  import { Provider } from "../../provider";
4
- export default class CreditContractCreateRequest {
4
+ export declare class CreditContractCreateRequest {
5
5
  id: string;
6
6
  directoryUserId: string;
7
7
  relatedTransaction: string;
@@ -18,3 +18,4 @@ export default class CreditContractCreateRequest {
18
18
  holdTxId: string;
19
19
  relatedProductId?: string;
20
20
  }
21
+ export default CreditContractCreateRequest;
@@ -9,13 +9,14 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.CreditContractCreateRequest = void 0;
12
13
  const class_validator_1 = require("class-validator");
13
14
  const country_1 = require("../../country");
14
15
  const productCatalog_1 = require("../../productCatalog");
15
16
  const provider_1 = require("../../provider");
16
17
  class CreditContractCreateRequest {
17
18
  }
18
- exports.default = CreditContractCreateRequest;
19
+ exports.CreditContractCreateRequest = CreditContractCreateRequest;
19
20
  __decorate([
20
21
  (0, class_validator_1.IsString)(),
21
22
  (0, class_validator_1.IsNotEmpty)(),
@@ -91,3 +92,4 @@ __decorate([
91
92
  (0, class_validator_1.IsOptional)(),
92
93
  __metadata("design:type", String)
93
94
  ], CreditContractCreateRequest.prototype, "relatedProductId", void 0);
95
+ exports.default = CreditContractCreateRequest;
@@ -1,4 +1,5 @@
1
- export default class GetExchangeRatesRequest {
1
+ export declare class GetExchangeRatesRequest {
2
2
  originCurrencyId: string;
3
3
  destinationCurrencyId: string;
4
4
  }
5
+ export default GetExchangeRatesRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetExchangeRatesRequest = void 0;
3
4
  class GetExchangeRatesRequest {
4
5
  }
6
+ exports.GetExchangeRatesRequest = GetExchangeRatesRequest;
5
7
  exports.default = GetExchangeRatesRequest;
@@ -1,5 +1,5 @@
1
1
  import { AccountLevelTenantEnum } from "../enums/AccountLevelTenantEnum";
2
- export default class CreateAccountLevelRequest {
2
+ export declare class CreateAccountLevelRequest {
3
3
  id: string;
4
4
  amountUnit: string;
5
5
  maxAvailableBalanceAmount: number;
@@ -7,3 +7,4 @@ export default class CreateAccountLevelRequest {
7
7
  maxMonthlyOutgoingAmount: number;
8
8
  tenantId: AccountLevelTenantEnum;
9
9
  }
10
+ export default CreateAccountLevelRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateAccountLevelRequest = void 0;
3
4
  class CreateAccountLevelRequest {
4
5
  }
6
+ exports.CreateAccountLevelRequest = CreateAccountLevelRequest;
5
7
  exports.default = CreateAccountLevelRequest;
@@ -1,5 +1,6 @@
1
- export default class GetAccountLevelParams {
1
+ export declare class GetAccountLevelParams {
2
2
  id?: string;
3
3
  tenantId?: string;
4
4
  amountUnit?: string;
5
5
  }
6
+ export default GetAccountLevelParams;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetAccountLevelParams = void 0;
3
4
  class GetAccountLevelParams {
4
5
  }
6
+ exports.GetAccountLevelParams = GetAccountLevelParams;
5
7
  exports.default = GetAccountLevelParams;
@@ -1,7 +1,7 @@
1
1
  import { CountryId } from "../../country";
2
2
  import { ProductTaxFeeTypeEnum } from "../enums/ProductTaxFeeTypeEnum";
3
3
  import { ProductTypeEnum } from "../enums/ProductTypeEnum";
4
- export default class GetProductCatalogResponse {
4
+ export declare class GetProductCatalogResponse {
5
5
  id: string;
6
6
  description: string;
7
7
  displayName: string;
@@ -14,3 +14,4 @@ export default class GetProductCatalogResponse {
14
14
  createdAt: string;
15
15
  updatedAt: string;
16
16
  }
17
+ export default GetProductCatalogResponse;
@@ -9,13 +9,14 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GetProductCatalogResponse = void 0;
12
13
  const country_1 = require("../../country");
13
14
  const ProductTaxFeeTypeEnum_1 = require("../enums/ProductTaxFeeTypeEnum");
14
15
  const class_validator_1 = require("class-validator");
15
16
  const ProductTypeEnum_1 = require("../enums/ProductTypeEnum");
16
17
  class GetProductCatalogResponse {
17
18
  }
18
- exports.default = GetProductCatalogResponse;
19
+ exports.GetProductCatalogResponse = GetProductCatalogResponse;
19
20
  __decorate([
20
21
  (0, class_validator_1.IsString)(),
21
22
  __metadata("design:type", String)
@@ -60,3 +61,4 @@ __decorate([
60
61
  (0, class_validator_1.IsString)(),
61
62
  __metadata("design:type", String)
62
63
  ], GetProductCatalogResponse.prototype, "updatedAt", void 0);
64
+ exports.default = GetProductCatalogResponse;
@@ -1,6 +1,7 @@
1
1
  import { AlarmCategory } from "../enums/AlarmCategory";
2
- export default class UpdateAlarmProfileRequest {
2
+ export declare class UpdateAlarmProfileRequest {
3
3
  directoryId: string;
4
4
  category: AlarmCategory;
5
5
  value: number;
6
6
  }
7
+ export default UpdateAlarmProfileRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateAlarmProfileRequest = void 0;
3
4
  class UpdateAlarmProfileRequest {
4
5
  }
6
+ exports.UpdateAlarmProfileRequest = UpdateAlarmProfileRequest;
5
7
  exports.default = UpdateAlarmProfileRequest;
@@ -1,5 +1,6 @@
1
1
  import { RiskFactorCategoryEnum } from "../enums/RiskFactorCategoryEnum";
2
- export default class UpdateFactorInfo {
2
+ export declare class UpdateFactorInfo {
3
3
  category: RiskFactorCategoryEnum;
4
4
  value: any;
5
5
  }
6
+ export default UpdateFactorInfo;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateFactorInfo = void 0;
3
4
  class UpdateFactorInfo {
4
5
  }
6
+ exports.UpdateFactorInfo = UpdateFactorInfo;
5
7
  exports.default = UpdateFactorInfo;
@@ -1,5 +1,6 @@
1
1
  import UpdateFactorInfo from "./UpdateFactorInfo";
2
- export default class UpdateRiskProfileRequest {
2
+ export declare class UpdateRiskProfileRequest {
3
3
  directoryId: string;
4
4
  factors: UpdateFactorInfo[];
5
5
  }
6
+ export default UpdateRiskProfileRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateRiskProfileRequest = void 0;
3
4
  class UpdateRiskProfileRequest {
4
5
  }
6
+ exports.UpdateRiskProfileRequest = UpdateRiskProfileRequest;
5
7
  exports.default = UpdateRiskProfileRequest;
@@ -1,4 +1,4 @@
1
- export default class AuthorizeSpeiBankTransferRequest {
1
+ export declare class AuthorizeSpeiBankTransferRequest {
2
2
  idempotencyKey: string;
3
3
  productCatalogId: string;
4
4
  targetBankAccountId: string;
@@ -6,3 +6,4 @@ export default class AuthorizeSpeiBankTransferRequest {
6
6
  concept: string | null;
7
7
  secretNumber: string;
8
8
  }
9
+ export default AuthorizeSpeiBankTransferRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AuthorizeSpeiBankTransferRequest = void 0;
3
4
  class AuthorizeSpeiBankTransferRequest {
4
5
  }
6
+ exports.AuthorizeSpeiBankTransferRequest = AuthorizeSpeiBankTransferRequest;
5
7
  exports.default = AuthorizeSpeiBankTransferRequest;
@@ -1,4 +1,5 @@
1
- export default class ProcessUpdateLevelRequest {
1
+ export declare class ProcessUpdateLevelRequest {
2
2
  directoryId: string;
3
3
  peopleId: string;
4
4
  }
5
+ export default ProcessUpdateLevelRequest;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProcessUpdateLevelRequest = void 0;
3
4
  class ProcessUpdateLevelRequest {
4
5
  }
6
+ exports.ProcessUpdateLevelRequest = ProcessUpdateLevelRequest;
5
7
  exports.default = ProcessUpdateLevelRequest;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.31.0",
3
+ "version": "3.32.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -2,7 +2,7 @@ import {IsEnum, IsNumber, IsOptional, IsString, Matches} from "class-validator";
2
2
  import {regexUuidV4} from "../../helpers/constans/regex";
3
3
  import {AccountEntityStatusEnum} from "../enums/AccountEntityStatusEnum";
4
4
 
5
- export default class AccountInfo {
5
+ export class AccountInfo {
6
6
  @IsString()
7
7
  @Matches(regexUuidV4,
8
8
  {
@@ -41,4 +41,5 @@ export default class AccountInfo {
41
41
  @IsOptional()
42
42
  @IsString()
43
43
  externalAccountId?: string;
44
- }
44
+ }
45
+ export default AccountInfo;
@@ -1,9 +1,10 @@
1
1
  import {IsNumber, IsString} from "class-validator";
2
2
 
3
- export default class ExchangeInfo {
3
+ export class ExchangeInfo {
4
4
  @IsString()
5
5
  currencyId: string;
6
6
 
7
7
  @IsNumber()
8
8
  rate: number;
9
- }
9
+ }
10
+ export default ExchangeInfo;
@@ -2,8 +2,9 @@ import AccountInfo from "./AccountInfo";
2
2
  import PocketItem from "./PocketItem";
3
3
  import ExchangeInfo from "./ExchangeInfo";
4
4
 
5
- export default class GetPocketResponse {
5
+ export class GetPocketResponse {
6
6
  accountInfo: AccountInfo;
7
7
  pockets: PocketItem[];
8
8
  exchangeInfo: ExchangeInfo;
9
- }
9
+ }
10
+ export default GetPocketResponse;
@@ -2,7 +2,7 @@ import {IsBoolean, IsString, Matches, ValidateNested} from "class-validator";
2
2
  import {regexUuidV4} from "../../helpers/constans/regex";
3
3
  import {PocketBalanceItem} from "./PocketBalanceItem";
4
4
 
5
- export default class PocketItem {
5
+ export class PocketItem {
6
6
  @IsString()
7
7
  @Matches(regexUuidV4,
8
8
  {
@@ -41,4 +41,5 @@ export default class PocketItem {
41
41
 
42
42
  @ValidateNested()
43
43
  pocketBalance: PocketBalanceItem[];
44
- }
44
+ }
45
+ export default PocketItem;
@@ -1,8 +1,9 @@
1
1
 
2
- export default interface FiadoApiResponse<T> {
2
+ export interface FiadoApiResponse<T> {
3
3
  data:T;
4
4
  date:string|null;
5
5
  code:string|null;
6
6
  msg:string|null;
7
7
  description:string|null;
8
- }
8
+ }
9
+ export default FiadoApiResponse;
@@ -1,4 +1,4 @@
1
- export default class GetExternalBankAccountRequest {
1
+ export class GetExternalBankAccountRequest {
2
2
  countryId?: string;
3
3
  bankAccountId?: string;
4
4
  accountNumber?: string;
@@ -9,4 +9,5 @@ export default class GetExternalBankAccountRequest {
9
9
  accountHolderName?: string;
10
10
  bankId?: string;
11
11
  default?: boolean;
12
- }
12
+ }
13
+ export default GetExternalBankAccountRequest;
@@ -1,7 +1,7 @@
1
1
  import { ExternalAccountOwnershipEnum } from "../enums/ExternalAccountOwnershipEnum";
2
2
  import { ExternalAccountTypeEnum } from "../enums/ExternalAccountTypeEnum";
3
3
 
4
- export default class GetExternalBankAccountResponse {
4
+ export class GetExternalBankAccountResponse {
5
5
  id: string;
6
6
  countryId: string;
7
7
  accountNumber: string | null;
@@ -15,4 +15,5 @@ export default class GetExternalBankAccountResponse {
15
15
  bankName: string | null;
16
16
  iconUrl: string | null;
17
17
  ownership?: ExternalAccountOwnershipEnum;
18
- }
18
+ }
19
+ export default GetExternalBankAccountResponse;
@@ -2,7 +2,7 @@ import { IsEnum, IsNotEmpty, IsNumber, IsOptional, IsString, Matches } from "cla
2
2
  import { CountryId } from "../../country";
3
3
  import { ProductTypeEnum } from "../../productCatalog";
4
4
  import { Provider } from "../../provider";
5
- export default class CreditContractCreateRequest {
5
+ export class CreditContractCreateRequest {
6
6
 
7
7
  @IsString()
8
8
  @IsNotEmpty()
@@ -64,4 +64,5 @@ export default class CreditContractCreateRequest {
64
64
  @IsOptional()
65
65
  relatedProductId?: string;
66
66
 
67
- }
67
+ }
68
+ export default CreditContractCreateRequest;
@@ -1,4 +1,5 @@
1
- export default class GetExchangeRatesRequest {
1
+ export class GetExchangeRatesRequest {
2
2
  originCurrencyId: string;
3
3
  destinationCurrencyId: string;
4
- }
4
+ }
5
+ export default GetExchangeRatesRequest;
@@ -1,10 +1,11 @@
1
1
  import {AccountLevelTenantEnum} from "../enums/AccountLevelTenantEnum";
2
2
 
3
- export default class CreateAccountLevelRequest {
3
+ export class CreateAccountLevelRequest {
4
4
  id: string;
5
5
  amountUnit: string;
6
6
  maxAvailableBalanceAmount: number;
7
7
  maxMonthlyIncomingAmount: number;
8
8
  maxMonthlyOutgoingAmount: number;
9
9
  tenantId: AccountLevelTenantEnum;
10
- }
10
+ }
11
+ export default CreateAccountLevelRequest;
@@ -1,6 +1,7 @@
1
- export default class GetAccountLevelParams {
1
+ export class GetAccountLevelParams {
2
2
  id?: string;
3
3
  tenantId?: string;
4
4
  amountUnit?: string;
5
5
 
6
- }
6
+ }
7
+ export default GetAccountLevelParams;
@@ -3,7 +3,7 @@ import {ProductTaxFeeTypeEnum} from "../enums/ProductTaxFeeTypeEnum";
3
3
  import {IsEnum, IsNumber, IsString} from "class-validator";
4
4
  import {ProductTypeEnum} from "../enums/ProductTypeEnum";
5
5
 
6
- export default class GetProductCatalogResponse {
6
+ export class GetProductCatalogResponse {
7
7
  @IsString()
8
8
  id: string;
9
9
 
@@ -36,4 +36,5 @@ export default class GetProductCatalogResponse {
36
36
 
37
37
  @IsString()
38
38
  updatedAt: string;
39
- }
39
+ }
40
+ export default GetProductCatalogResponse;
@@ -3,8 +3,9 @@ import { AlarmCategory } from "../enums/AlarmCategory";
3
3
 
4
4
 
5
5
 
6
- export default class UpdateAlarmProfileRequest {
6
+ export class UpdateAlarmProfileRequest {
7
7
  directoryId: string;
8
8
  category: AlarmCategory;
9
9
  value: number;
10
- }
10
+ }
11
+ export default UpdateAlarmProfileRequest;
@@ -1,6 +1,7 @@
1
1
  import {RiskFactorCategoryEnum} from "../enums/RiskFactorCategoryEnum";
2
2
 
3
- export default class UpdateFactorInfo {
3
+ export class UpdateFactorInfo {
4
4
  category!: RiskFactorCategoryEnum;
5
5
  value: any;
6
- }
6
+ }
7
+ export default UpdateFactorInfo;
@@ -1,6 +1,7 @@
1
1
  import UpdateFactorInfo from "./UpdateFactorInfo";
2
2
 
3
- export default class UpdateRiskProfileRequest {
3
+ export class UpdateRiskProfileRequest {
4
4
  directoryId!: string;
5
5
  factors!: UpdateFactorInfo[];
6
- }
6
+ }
7
+ export default UpdateRiskProfileRequest;
@@ -1,8 +1,9 @@
1
- export default class AuthorizeSpeiBankTransferRequest {
1
+ export class AuthorizeSpeiBankTransferRequest {
2
2
  idempotencyKey: string;
3
3
  productCatalogId: string;
4
4
  targetBankAccountId: string;
5
5
  amount: number;
6
6
  concept: string | null;
7
7
  secretNumber: string;
8
- }
8
+ }
9
+ export default AuthorizeSpeiBankTransferRequest;
@@ -1,4 +1,5 @@
1
- export default class ProcessUpdateLevelRequest {
1
+ export class ProcessUpdateLevelRequest {
2
2
  directoryId: string;
3
3
  peopleId: string;
4
- }
4
+ }
5
+ export default ProcessUpdateLevelRequest;
@@ -1,22 +0,0 @@
1
- import { InputSchemaOverrideRequest } from "./InputSchemaOverrideRequest";
2
- /**
3
- * Body de PUT /backoffice/leaves/{leafId}. Upsert parcial:
4
- * - undefined → no se toca
5
- * - string/number/boolean seteado → pisa el valor previo del override
6
- * - null NO se acepta (para borrar un campo, usar DELETE /fields/{fieldName})
7
- *
8
- * Si todos los campos llegan undefined → 400 INVALID_PATCH_PAYLOAD.
9
- */
10
- export declare class BackofficeLeafOverrideUpsertRequest {
11
- serviceName?: string;
12
- logo?: string;
13
- description?: string;
14
- helpText?: string;
15
- serviceOrder?: number;
16
- subcategoryOrder?: number;
17
- enabled?: boolean;
18
- category?: string;
19
- subcategory?: string;
20
- requiresReferenceVerification?: boolean;
21
- inputSchema?: InputSchemaOverrideRequest;
22
- }
@@ -1,91 +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.BackofficeLeafOverrideUpsertRequest = void 0;
13
- const class_validator_1 = require("class-validator");
14
- const class_transformer_1 = require("class-transformer");
15
- const InputSchemaOverrideRequest_1 = require("./InputSchemaOverrideRequest");
16
- /**
17
- * Body de PUT /backoffice/leaves/{leafId}. Upsert parcial:
18
- * - undefined → no se toca
19
- * - string/number/boolean seteado → pisa el valor previo del override
20
- * - null NO se acepta (para borrar un campo, usar DELETE /fields/{fieldName})
21
- *
22
- * Si todos los campos llegan undefined → 400 INVALID_PATCH_PAYLOAD.
23
- */
24
- class BackofficeLeafOverrideUpsertRequest {
25
- }
26
- exports.BackofficeLeafOverrideUpsertRequest = BackofficeLeafOverrideUpsertRequest;
27
- __decorate([
28
- (0, class_validator_1.IsOptional)(),
29
- (0, class_validator_1.IsString)(),
30
- (0, class_validator_1.MaxLength)(120),
31
- __metadata("design:type", String)
32
- ], BackofficeLeafOverrideUpsertRequest.prototype, "serviceName", void 0);
33
- __decorate([
34
- (0, class_validator_1.IsOptional)(),
35
- (0, class_validator_1.IsUrl)({ protocols: ["https"], require_protocol: true }),
36
- (0, class_validator_1.MaxLength)(500),
37
- __metadata("design:type", String)
38
- ], BackofficeLeafOverrideUpsertRequest.prototype, "logo", void 0);
39
- __decorate([
40
- (0, class_validator_1.IsOptional)(),
41
- (0, class_validator_1.IsString)(),
42
- (0, class_validator_1.MaxLength)(2000),
43
- __metadata("design:type", String)
44
- ], BackofficeLeafOverrideUpsertRequest.prototype, "description", void 0);
45
- __decorate([
46
- (0, class_validator_1.IsOptional)(),
47
- (0, class_validator_1.IsString)(),
48
- (0, class_validator_1.MaxLength)(1000),
49
- __metadata("design:type", String)
50
- ], BackofficeLeafOverrideUpsertRequest.prototype, "helpText", void 0);
51
- __decorate([
52
- (0, class_validator_1.IsOptional)(),
53
- (0, class_validator_1.IsInt)(),
54
- (0, class_validator_1.Min)(0),
55
- __metadata("design:type", Number)
56
- ], BackofficeLeafOverrideUpsertRequest.prototype, "serviceOrder", void 0);
57
- __decorate([
58
- (0, class_validator_1.IsOptional)(),
59
- (0, class_validator_1.IsInt)(),
60
- (0, class_validator_1.Min)(0),
61
- __metadata("design:type", Number)
62
- ], BackofficeLeafOverrideUpsertRequest.prototype, "subcategoryOrder", void 0);
63
- __decorate([
64
- (0, class_validator_1.IsOptional)(),
65
- (0, class_validator_1.IsBoolean)(),
66
- __metadata("design:type", Boolean)
67
- ], BackofficeLeafOverrideUpsertRequest.prototype, "enabled", void 0);
68
- __decorate([
69
- (0, class_validator_1.IsOptional)(),
70
- (0, class_validator_1.IsString)(),
71
- (0, class_validator_1.MaxLength)(60),
72
- (0, class_validator_1.Matches)(/^[A-Z][A-Z0-9_ ]*$/, { message: "category must be uppercase with underscores or spaces" }),
73
- __metadata("design:type", String)
74
- ], BackofficeLeafOverrideUpsertRequest.prototype, "category", void 0);
75
- __decorate([
76
- (0, class_validator_1.IsOptional)(),
77
- (0, class_validator_1.IsString)(),
78
- (0, class_validator_1.MaxLength)(60),
79
- __metadata("design:type", String)
80
- ], BackofficeLeafOverrideUpsertRequest.prototype, "subcategory", void 0);
81
- __decorate([
82
- (0, class_validator_1.IsOptional)(),
83
- (0, class_validator_1.IsBoolean)(),
84
- __metadata("design:type", Boolean)
85
- ], BackofficeLeafOverrideUpsertRequest.prototype, "requiresReferenceVerification", void 0);
86
- __decorate([
87
- (0, class_validator_1.IsOptional)(),
88
- (0, class_validator_1.ValidateNested)(),
89
- (0, class_transformer_1.Type)(() => InputSchemaOverrideRequest_1.InputSchemaOverrideRequest),
90
- __metadata("design:type", InputSchemaOverrideRequest_1.InputSchemaOverrideRequest)
91
- ], BackofficeLeafOverrideUpsertRequest.prototype, "inputSchema", void 0);
@@ -1,19 +0,0 @@
1
- import { InputFieldTypeEnum } from "../enums/InputFieldTypeEnum";
2
- import { InputValidation } from "./InputValidation";
3
- import { SelectOption } from "./SelectOption";
4
- /**
5
- * Override parcial de un field individual del `inputSchema` por `key`.
6
- * El admin no puede agregar ni quitar fields — solo editar los existentes.
7
- */
8
- export declare class FieldOverrideRequest {
9
- key: string;
10
- type?: InputFieldTypeEnum;
11
- label?: string;
12
- placeholder?: string;
13
- required?: boolean;
14
- helpImage?: string;
15
- showHelp?: boolean;
16
- options?: SelectOption[];
17
- dependsOn?: string;
18
- validation?: InputValidation;
19
- }
@@ -1,80 +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.FieldOverrideRequest = void 0;
13
- const class_validator_1 = require("class-validator");
14
- const class_transformer_1 = require("class-transformer");
15
- const InputFieldTypeEnum_1 = require("../enums/InputFieldTypeEnum");
16
- const InputValidation_1 = require("./InputValidation");
17
- const SelectOption_1 = require("./SelectOption");
18
- /**
19
- * Override parcial de un field individual del `inputSchema` por `key`.
20
- * El admin no puede agregar ni quitar fields — solo editar los existentes.
21
- */
22
- class FieldOverrideRequest {
23
- }
24
- exports.FieldOverrideRequest = FieldOverrideRequest;
25
- __decorate([
26
- (0, class_validator_1.IsString)(),
27
- (0, class_validator_1.IsNotEmpty)(),
28
- __metadata("design:type", String)
29
- ], FieldOverrideRequest.prototype, "key", void 0);
30
- __decorate([
31
- (0, class_validator_1.IsOptional)(),
32
- (0, class_validator_1.IsEnum)(InputFieldTypeEnum_1.InputFieldTypeEnum),
33
- __metadata("design:type", String)
34
- ], FieldOverrideRequest.prototype, "type", void 0);
35
- __decorate([
36
- (0, class_validator_1.IsOptional)(),
37
- (0, class_validator_1.IsString)(),
38
- (0, class_validator_1.MaxLength)(120),
39
- __metadata("design:type", String)
40
- ], FieldOverrideRequest.prototype, "label", void 0);
41
- __decorate([
42
- (0, class_validator_1.IsOptional)(),
43
- (0, class_validator_1.IsString)(),
44
- (0, class_validator_1.MaxLength)(120),
45
- __metadata("design:type", String)
46
- ], FieldOverrideRequest.prototype, "placeholder", void 0);
47
- __decorate([
48
- (0, class_validator_1.IsOptional)(),
49
- (0, class_validator_1.IsBoolean)(),
50
- __metadata("design:type", Boolean)
51
- ], FieldOverrideRequest.prototype, "required", void 0);
52
- __decorate([
53
- (0, class_validator_1.IsOptional)(),
54
- (0, class_validator_1.IsUrl)({ protocols: ["https"], require_protocol: true }),
55
- __metadata("design:type", String)
56
- ], FieldOverrideRequest.prototype, "helpImage", void 0);
57
- __decorate([
58
- (0, class_validator_1.IsOptional)(),
59
- (0, class_validator_1.IsBoolean)(),
60
- __metadata("design:type", Boolean)
61
- ], FieldOverrideRequest.prototype, "showHelp", void 0);
62
- __decorate([
63
- (0, class_validator_1.IsOptional)(),
64
- (0, class_validator_1.IsArray)(),
65
- (0, class_validator_1.ValidateNested)({ each: true }),
66
- (0, class_transformer_1.Type)(() => SelectOption_1.SelectOption),
67
- __metadata("design:type", Array)
68
- ], FieldOverrideRequest.prototype, "options", void 0);
69
- __decorate([
70
- (0, class_validator_1.IsOptional)(),
71
- (0, class_validator_1.IsString)(),
72
- (0, class_validator_1.MaxLength)(60),
73
- __metadata("design:type", String)
74
- ], FieldOverrideRequest.prototype, "dependsOn", void 0);
75
- __decorate([
76
- (0, class_validator_1.IsOptional)(),
77
- (0, class_validator_1.ValidateNested)(),
78
- (0, class_transformer_1.Type)(() => InputValidation_1.InputValidation),
79
- __metadata("design:type", InputValidation_1.InputValidation)
80
- ], FieldOverrideRequest.prototype, "validation", void 0);
@@ -1,9 +0,0 @@
1
- import { FieldOverrideRequest } from "./FieldOverrideRequest";
2
- /**
3
- * Override del inputSchema completo. El array `fieldOverrides[]` lista overrides
4
- * parciales por `key`. La validación cruzada de que cada `key` exista en el
5
- * inputSchema del conector la hace el manager (no se puede expresar con class-validator).
6
- */
7
- export declare class InputSchemaOverrideRequest {
8
- fieldOverrides: FieldOverrideRequest[];
9
- }
@@ -1,29 +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.InputSchemaOverrideRequest = void 0;
13
- const class_validator_1 = require("class-validator");
14
- const class_transformer_1 = require("class-transformer");
15
- const FieldOverrideRequest_1 = require("./FieldOverrideRequest");
16
- /**
17
- * Override del inputSchema completo. El array `fieldOverrides[]` lista overrides
18
- * parciales por `key`. La validación cruzada de que cada `key` exista en el
19
- * inputSchema del conector la hace el manager (no se puede expresar con class-validator).
20
- */
21
- class InputSchemaOverrideRequest {
22
- }
23
- exports.InputSchemaOverrideRequest = InputSchemaOverrideRequest;
24
- __decorate([
25
- (0, class_validator_1.IsArray)(),
26
- (0, class_validator_1.ValidateNested)({ each: true }),
27
- (0, class_transformer_1.Type)(() => FieldOverrideRequest_1.FieldOverrideRequest),
28
- __metadata("design:type", Array)
29
- ], InputSchemaOverrideRequest.prototype, "fieldOverrides", void 0);
@@ -1,10 +0,0 @@
1
- /**
2
- * Estado de un leaf en el listado del backoffice de overrides.
3
- *
4
- * - ACTIVE: el override (si existe) tiene un base correspondiente en el catálogo del conector.
5
- * - ORPHANED: existe override pero el conector ya no devuelve este leafId — el provider lo retiró.
6
- */
7
- export declare enum LeafOverrideStatusEnum {
8
- ACTIVE = "ACTIVE",
9
- ORPHANED = "ORPHANED"
10
- }
@@ -1,14 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LeafOverrideStatusEnum = void 0;
4
- /**
5
- * Estado de un leaf en el listado del backoffice de overrides.
6
- *
7
- * - ACTIVE: el override (si existe) tiene un base correspondiente en el catálogo del conector.
8
- * - ORPHANED: existe override pero el conector ya no devuelve este leafId — el provider lo retiró.
9
- */
10
- var LeafOverrideStatusEnum;
11
- (function (LeafOverrideStatusEnum) {
12
- LeafOverrideStatusEnum["ACTIVE"] = "ACTIVE";
13
- LeafOverrideStatusEnum["ORPHANED"] = "ORPHANED";
14
- })(LeafOverrideStatusEnum || (exports.LeafOverrideStatusEnum = LeafOverrideStatusEnum = {}));
@@ -1,11 +0,0 @@
1
- import { DeviceEnrollmentModeEnum } from "../enums/DeviceEnrollmentModeEnum";
2
- import { MdmOperationStatusEnum } from "../enums/MdmOperationStatusEnum";
3
- import { MdmError } from "./MdmError";
4
- export declare class DeviceEnrollResponse {
5
- imei: string;
6
- operationReference: string;
7
- status: MdmOperationStatusEnum;
8
- enrollmentMode?: DeviceEnrollmentModeEnum;
9
- enrollmentId?: string;
10
- error?: MdmError;
11
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeviceEnrollResponse = void 0;
4
- class DeviceEnrollResponse {
5
- }
6
- exports.DeviceEnrollResponse = DeviceEnrollResponse;
@@ -1,9 +0,0 @@
1
- import { MdmOperationStatusEnum } from "../enums/MdmOperationStatusEnum";
2
- import { MdmError } from "./MdmError";
3
- export declare class DeviceReleaseResponse {
4
- imei: string;
5
- operationReference: string;
6
- status: MdmOperationStatusEnum;
7
- releasedAt?: string;
8
- error?: MdmError;
9
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeviceReleaseResponse = void 0;
4
- class DeviceReleaseResponse {
5
- }
6
- exports.DeviceReleaseResponse = DeviceReleaseResponse;
@@ -1,9 +0,0 @@
1
- import { MdmOperationStatusEnum } from "../enums/MdmOperationStatusEnum";
2
- import { MdmError } from "./MdmError";
3
- export declare class DeviceServiceDeactivateResponse {
4
- imei: string;
5
- operationReference: string;
6
- status: MdmOperationStatusEnum;
7
- deactivatedAt?: string;
8
- error?: MdmError;
9
- }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeviceServiceDeactivateResponse = void 0;
4
- class DeviceServiceDeactivateResponse {
5
- }
6
- exports.DeviceServiceDeactivateResponse = DeviceServiceDeactivateResponse;