@dalmore/api-contracts 0.0.0-dev.64aba85 → 0.0.0-dev.6f65580

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.
@@ -1,227 +1,9 @@
1
1
  import { z } from 'zod';
2
2
  export declare const issuerBankAccountIdSchema: z.ZodEffects<z.ZodString, string, string>;
3
- export declare const IIssuerBankAccount: z.ZodObject<{
4
- id: z.ZodString;
5
- __entity: z.ZodOptional<z.ZodString>;
6
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
7
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
8
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
9
- } & {
10
- accountNumber: z.ZodString;
11
- accountHolder: z.ZodString;
12
- routingNumber: z.ZodString;
13
- nickName: z.ZodString;
14
- accountId: z.ZodString;
15
- account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
16
- id: z.ZodString;
17
- __entity: z.ZodOptional<z.ZodString>;
18
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
19
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
20
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
21
- } & {
22
- name: z.ZodString;
23
- status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
24
- managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
25
- platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
26
- onboardingReviewerId: z.ZodNullable<z.ZodString>;
27
- onboardingReviewAt: z.ZodNullable<z.ZodDate>;
28
- allowPendingComplianceReview: z.ZodBoolean;
29
- }, "strip", z.ZodTypeAny, {
30
- status: import("./common.types").AccountStatus;
31
- id: string;
32
- createdAt: string | Date;
33
- updatedAt: string | Date;
34
- deletedAt: string | Date | null;
35
- name: string;
36
- managedBy: import("./common.types").ManagedByType | null;
37
- platform: import("./common.types").Platform;
38
- onboardingReviewerId: string | null;
39
- onboardingReviewAt: Date | null;
40
- allowPendingComplianceReview: boolean;
41
- __entity?: string | undefined;
42
- }, {
43
- status: import("./common.types").AccountStatus;
44
- id: string;
45
- createdAt: string | Date;
46
- updatedAt: string | Date;
47
- deletedAt: string | Date | null;
48
- name: string;
49
- managedBy: import("./common.types").ManagedByType | null;
50
- platform: import("./common.types").Platform;
51
- onboardingReviewerId: string | null;
52
- onboardingReviewAt: Date | null;
53
- allowPendingComplianceReview: boolean;
54
- __entity?: string | undefined;
55
- }>>>;
56
- issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
57
- issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
58
- }, "strip", z.ZodTypeAny, {
59
- id: string;
60
- createdAt: string | Date;
61
- updatedAt: string | Date;
62
- deletedAt: string | Date | null;
63
- accountId: string;
64
- issuerId: string;
65
- accountNumber: string;
66
- accountHolder: string;
67
- routingNumber: string;
68
- nickName: string;
69
- __entity?: string | undefined;
70
- account?: {
71
- status: import("./common.types").AccountStatus;
72
- id: string;
73
- createdAt: string | Date;
74
- updatedAt: string | Date;
75
- deletedAt: string | Date | null;
76
- name: string;
77
- managedBy: import("./common.types").ManagedByType | null;
78
- platform: import("./common.types").Platform;
79
- onboardingReviewerId: string | null;
80
- onboardingReviewAt: Date | null;
81
- allowPendingComplianceReview: boolean;
82
- __entity?: string | undefined;
83
- } | null | undefined;
84
- issuer?: any;
85
- }, {
86
- id: string;
87
- createdAt: string | Date;
88
- updatedAt: string | Date;
89
- deletedAt: string | Date | null;
90
- accountId: string;
91
- issuerId: string;
92
- accountNumber: string;
93
- accountHolder: string;
94
- routingNumber: string;
95
- nickName: string;
96
- __entity?: string | undefined;
97
- account?: {
98
- status: import("./common.types").AccountStatus;
99
- id: string;
100
- createdAt: string | Date;
101
- updatedAt: string | Date;
102
- deletedAt: string | Date | null;
103
- name: string;
104
- managedBy: import("./common.types").ManagedByType | null;
105
- platform: import("./common.types").Platform;
106
- onboardingReviewerId: string | null;
107
- onboardingReviewAt: Date | null;
108
- allowPendingComplianceReview: boolean;
109
- __entity?: string | undefined;
110
- } | null | undefined;
111
- issuer?: any;
112
- }>;
3
+ export declare const IIssuerBankAccount: any;
113
4
  export type IIssuerBankAccount = z.infer<typeof IIssuerBankAccount>;
114
5
  export declare const IPaginatedIssuerBankAccount: z.ZodObject<{
115
- items: z.ZodArray<z.ZodObject<{
116
- id: z.ZodString;
117
- __entity: z.ZodOptional<z.ZodString>;
118
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
119
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
120
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
121
- } & {
122
- accountNumber: z.ZodString;
123
- accountHolder: z.ZodString;
124
- routingNumber: z.ZodString;
125
- nickName: z.ZodString;
126
- accountId: z.ZodString;
127
- account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
128
- id: z.ZodString;
129
- __entity: z.ZodOptional<z.ZodString>;
130
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
131
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
132
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
133
- } & {
134
- name: z.ZodString;
135
- status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
136
- managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
137
- platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
138
- onboardingReviewerId: z.ZodNullable<z.ZodString>;
139
- onboardingReviewAt: z.ZodNullable<z.ZodDate>;
140
- allowPendingComplianceReview: z.ZodBoolean;
141
- }, "strip", z.ZodTypeAny, {
142
- status: import("./common.types").AccountStatus;
143
- id: string;
144
- createdAt: string | Date;
145
- updatedAt: string | Date;
146
- deletedAt: string | Date | null;
147
- name: string;
148
- managedBy: import("./common.types").ManagedByType | null;
149
- platform: import("./common.types").Platform;
150
- onboardingReviewerId: string | null;
151
- onboardingReviewAt: Date | null;
152
- allowPendingComplianceReview: boolean;
153
- __entity?: string | undefined;
154
- }, {
155
- status: import("./common.types").AccountStatus;
156
- id: string;
157
- createdAt: string | Date;
158
- updatedAt: string | Date;
159
- deletedAt: string | Date | null;
160
- name: string;
161
- managedBy: import("./common.types").ManagedByType | null;
162
- platform: import("./common.types").Platform;
163
- onboardingReviewerId: string | null;
164
- onboardingReviewAt: Date | null;
165
- allowPendingComplianceReview: boolean;
166
- __entity?: string | undefined;
167
- }>>>;
168
- issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
169
- issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
170
- }, "strip", z.ZodTypeAny, {
171
- id: string;
172
- createdAt: string | Date;
173
- updatedAt: string | Date;
174
- deletedAt: string | Date | null;
175
- accountId: string;
176
- issuerId: string;
177
- accountNumber: string;
178
- accountHolder: string;
179
- routingNumber: string;
180
- nickName: string;
181
- __entity?: string | undefined;
182
- account?: {
183
- status: import("./common.types").AccountStatus;
184
- id: string;
185
- createdAt: string | Date;
186
- updatedAt: string | Date;
187
- deletedAt: string | Date | null;
188
- name: string;
189
- managedBy: import("./common.types").ManagedByType | null;
190
- platform: import("./common.types").Platform;
191
- onboardingReviewerId: string | null;
192
- onboardingReviewAt: Date | null;
193
- allowPendingComplianceReview: boolean;
194
- __entity?: string | undefined;
195
- } | null | undefined;
196
- issuer?: any;
197
- }, {
198
- id: string;
199
- createdAt: string | Date;
200
- updatedAt: string | Date;
201
- deletedAt: string | Date | null;
202
- accountId: string;
203
- issuerId: string;
204
- accountNumber: string;
205
- accountHolder: string;
206
- routingNumber: string;
207
- nickName: string;
208
- __entity?: string | undefined;
209
- account?: {
210
- status: import("./common.types").AccountStatus;
211
- id: string;
212
- createdAt: string | Date;
213
- updatedAt: string | Date;
214
- deletedAt: string | Date | null;
215
- name: string;
216
- managedBy: import("./common.types").ManagedByType | null;
217
- platform: import("./common.types").Platform;
218
- onboardingReviewerId: string | null;
219
- onboardingReviewAt: Date | null;
220
- allowPendingComplianceReview: boolean;
221
- __entity?: string | undefined;
222
- } | null | undefined;
223
- issuer?: any;
224
- }>, "many">;
6
+ items: z.ZodArray<any, "many">;
225
7
  meta: z.ZodObject<{
226
8
  itemCount: z.ZodNumber;
227
9
  totalItems: z.ZodOptional<z.ZodNumber>;
@@ -242,34 +24,7 @@ export declare const IPaginatedIssuerBankAccount: z.ZodObject<{
242
24
  totalPages?: number | undefined;
243
25
  }>;
244
26
  }, "strip", z.ZodTypeAny, {
245
- items: {
246
- id: string;
247
- createdAt: string | Date;
248
- updatedAt: string | Date;
249
- deletedAt: string | Date | null;
250
- accountId: string;
251
- issuerId: string;
252
- accountNumber: string;
253
- accountHolder: string;
254
- routingNumber: string;
255
- nickName: string;
256
- __entity?: string | undefined;
257
- account?: {
258
- status: import("./common.types").AccountStatus;
259
- id: string;
260
- createdAt: string | Date;
261
- updatedAt: string | Date;
262
- deletedAt: string | Date | null;
263
- name: string;
264
- managedBy: import("./common.types").ManagedByType | null;
265
- platform: import("./common.types").Platform;
266
- onboardingReviewerId: string | null;
267
- onboardingReviewAt: Date | null;
268
- allowPendingComplianceReview: boolean;
269
- __entity?: string | undefined;
270
- } | null | undefined;
271
- issuer?: any;
272
- }[];
27
+ items: any[];
273
28
  meta: {
274
29
  itemCount: number;
275
30
  itemsPerPage: number;
@@ -278,34 +33,7 @@ export declare const IPaginatedIssuerBankAccount: z.ZodObject<{
278
33
  totalPages?: number | undefined;
279
34
  };
280
35
  }, {
281
- items: {
282
- id: string;
283
- createdAt: string | Date;
284
- updatedAt: string | Date;
285
- deletedAt: string | Date | null;
286
- accountId: string;
287
- issuerId: string;
288
- accountNumber: string;
289
- accountHolder: string;
290
- routingNumber: string;
291
- nickName: string;
292
- __entity?: string | undefined;
293
- account?: {
294
- status: import("./common.types").AccountStatus;
295
- id: string;
296
- createdAt: string | Date;
297
- updatedAt: string | Date;
298
- deletedAt: string | Date | null;
299
- name: string;
300
- managedBy: import("./common.types").ManagedByType | null;
301
- platform: import("./common.types").Platform;
302
- onboardingReviewerId: string | null;
303
- onboardingReviewAt: Date | null;
304
- allowPendingComplianceReview: boolean;
305
- __entity?: string | undefined;
306
- } | null | undefined;
307
- issuer?: any;
308
- }[];
36
+ items: any[];
309
37
  meta: {
310
38
  itemCount: number;
311
39
  itemsPerPage: number;