@dalmore/api-contracts 0.0.0-dev.ada6a86 → 0.0.0-dev.b23d491

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 (52) hide show
  1. package/common/types/activity.types.d.ts +27 -24
  2. package/common/types/activity.types.js +6 -0
  3. package/common/types/activity.types.js.map +1 -1
  4. package/common/types/asset.types.d.ts +298 -0
  5. package/common/types/asset.types.js +191 -42
  6. package/common/types/asset.types.js.map +1 -1
  7. package/common/types/bonus-tier.types.d.ts +41 -0
  8. package/common/types/bonus-tier.types.js +14 -7
  9. package/common/types/bonus-tier.types.js.map +1 -1
  10. package/common/types/common.types.d.ts +27 -3
  11. package/common/types/common.types.js +17 -0
  12. package/common/types/common.types.js.map +1 -1
  13. package/common/types/comply-advantage-api.types.d.ts +133 -466
  14. package/common/types/comply-advantage-api.types.js +24 -3
  15. package/common/types/comply-advantage-api.types.js.map +1 -1
  16. package/common/types/dashboard.types.d.ts +7 -7
  17. package/common/types/data-record.types.d.ts +4 -4
  18. package/common/types/disbursements.types.d.ts +106 -626
  19. package/common/types/disbursements.types.js +3 -0
  20. package/common/types/disbursements.types.js.map +1 -1
  21. package/common/types/escrow-account.types.d.ts +17 -0
  22. package/common/types/escrow-account.types.js +3 -0
  23. package/common/types/escrow-account.types.js.map +1 -1
  24. package/common/types/file.types.d.ts +14 -11
  25. package/common/types/file.types.js +2 -0
  26. package/common/types/file.types.js.map +1 -1
  27. package/common/types/individuals.types.js +5 -2
  28. package/common/types/individuals.types.js.map +1 -1
  29. package/common/types/issuer-bank-account.types.d.ts +4 -276
  30. package/common/types/issuer-offering.types.d.ts +729 -6
  31. package/common/types/issuer-offering.types.js +141 -5
  32. package/common/types/issuer-offering.types.js.map +1 -1
  33. package/common/types/job-item.types.d.ts +14 -14
  34. package/common/types/note.types.d.ts +15 -15
  35. package/common/types/offering.types.d.ts +321 -2
  36. package/common/types/offering.types.js +152 -11
  37. package/common/types/offering.types.js.map +1 -1
  38. package/common/types/signer.types.d.ts +8 -8
  39. package/common/types/site.types.d.ts +20 -0
  40. package/common/types/task.types.d.ts +22 -22
  41. package/common/types/trade.types.d.ts +2 -0
  42. package/common/types/trade.types.js +2 -0
  43. package/common/types/trade.types.js.map +1 -1
  44. package/common/types/transaction.types.d.ts +80 -1
  45. package/common/types/transaction.types.js +22 -2
  46. package/common/types/transaction.types.js.map +1 -1
  47. package/contracts/clients/assets/index.d.ts +88 -0
  48. package/contracts/clients/files/index.d.ts +3 -3
  49. package/contracts/clients/files-public/index.d.ts +3 -3
  50. package/contracts/clients/index.d.ts +344 -10
  51. package/contracts/clients/offerings/index.d.ts +250 -4
  52. package/package.json +1 -1
@@ -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;