@fiado/type-kit 1.0.64 → 1.0.65

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.
@@ -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;
@@ -2,5 +2,7 @@ export * from './dtos/AccountCreateRequest';
2
2
  export * from './dtos/CreateBankAccountInput';
3
3
  export * from './dtos/CreateBankAccountUserInput';
4
4
  export * from './dtos/AccountCreateResponse';
5
+ export * from './dtos/CreateBankAccountOutput';
6
+ export * from './dtos/CreateBankAccountUserOutput';
5
7
  export * from './entities/AccountEntityBase';
6
8
  export * from './enums/BankAccountTypeEnum';
@@ -19,6 +19,9 @@ __exportStar(require("./dtos/AccountCreateRequest"), exports);
19
19
  __exportStar(require("./dtos/CreateBankAccountInput"), exports);
20
20
  __exportStar(require("./dtos/CreateBankAccountUserInput"), exports);
21
21
  __exportStar(require("./dtos/AccountCreateResponse"), exports);
22
+ __exportStar(require("./dtos/CreateBankAccountOutput"), exports);
23
+ __exportStar(require("./dtos/CreateBankAccountUserOutput"), exports);
24
+ //Entities
22
25
  __exportStar(require("./entities/AccountEntityBase"), exports);
23
26
  //Enums
24
27
  __exportStar(require("./enums/BankAccountTypeEnum"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,8 @@
1
+ import { Provider } from "../../provider";
2
+
3
+ export class CreateBankAccountOutput {
4
+ externalAccountId: string
5
+ provider: Provider
6
+ }
7
+
8
+
@@ -0,0 +1,11 @@
1
+ import { Provider } from "../../provider";
2
+
3
+ export class CreateBankAccountUserOutput {
4
+ externalUserId:string
5
+ externalAccountId?:string
6
+ provider:Provider
7
+ accountNumber?:string
8
+ routingNumber?:string
9
+ }
10
+
11
+
@@ -3,9 +3,15 @@ export * from './dtos/AccountCreateRequest';
3
3
  export * from './dtos/CreateBankAccountInput';
4
4
  export * from './dtos/CreateBankAccountUserInput';
5
5
  export * from './dtos/AccountCreateResponse';
6
+ export * from './dtos/CreateBankAccountOutput';
7
+ export * from './dtos/CreateBankAccountUserOutput';
8
+
9
+
10
+ //Entities
6
11
  export * from './entities/AccountEntityBase';
7
12
 
8
13
 
14
+
9
15
  //Enums
10
16
  export * from './enums/BankAccountTypeEnum';
11
17
 
@@ -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);