@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,6 +1,6 @@
1
1
  import { z } from 'zod';
2
- import { OfferingType, ManagedByType, OfferingVersioningType, ComplianceReview, DurationType, AssetType } from './common.types';
3
- import { AssetTemplateType } from './asset.types';
2
+ import { OfferingType, ManagedByType, OfferingVersioningType, ComplianceReview, DurationType, AssetType, HttpMethod } from './common.types';
3
+ import { AssetTemplateType, InterestType } from './asset.types';
4
4
  export declare enum OfferingStatus {
5
5
  ONBOARDING = "ONBOARDING",
6
6
  IN_COMPLIANCE_REVIEW = "IN_COMPLIANCE_REVIEW",
@@ -134,6 +134,10 @@ export declare const IIssuerOffering: z.ZodObject<{
134
134
  template: z.ZodNativeEnum<typeof AssetTemplateType>;
135
135
  tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
136
136
  enableBonus: z.ZodBoolean;
137
+ principalAmount: z.ZodNullable<z.ZodNumber>;
138
+ maxTotalRaise: z.ZodNullable<z.ZodNumber>;
139
+ interestRate: z.ZodNullable<z.ZodNumber>;
140
+ interestType: z.ZodNullable<z.ZodNativeEnum<typeof InterestType>>;
137
141
  }, "strip", z.ZodTypeAny, {
138
142
  type: AssetType | null;
139
143
  id: string;
@@ -152,6 +156,10 @@ export declare const IIssuerOffering: z.ZodObject<{
152
156
  durationType: DurationType | null;
153
157
  tiers: number[] | null;
154
158
  enableBonus: boolean;
159
+ principalAmount: number | null;
160
+ maxTotalRaise: number | null;
161
+ interestRate: number | null;
162
+ interestType: InterestType | null;
155
163
  __entity?: string | undefined;
156
164
  account?: {
157
165
  status: import("./common.types").AccountStatus;
@@ -186,6 +194,10 @@ export declare const IIssuerOffering: z.ZodObject<{
186
194
  durationType: DurationType | null;
187
195
  tiers: number[] | null;
188
196
  enableBonus: boolean;
197
+ principalAmount: number | null;
198
+ maxTotalRaise: number | null;
199
+ interestRate: number | null;
200
+ interestType: InterestType | null;
189
201
  __entity?: string | undefined;
190
202
  account?: {
191
203
  status: import("./common.types").AccountStatus;
@@ -212,6 +224,121 @@ export declare const IIssuerOffering: z.ZodObject<{
212
224
  valuationCap: z.ZodNullable<z.ZodNumber>;
213
225
  showTotalRaised: z.ZodOptional<z.ZodBoolean>;
214
226
  status: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof OfferingStatus>>>;
227
+ hasEscrow: z.ZodOptional<z.ZodBoolean>;
228
+ escrowAgreementFileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
229
+ bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
230
+ bankAccount: z.ZodOptional<z.ZodNullable<z.ZodLazy<any>>>;
231
+ escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
232
+ escrowAccount: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
233
+ id: z.ZodString;
234
+ __entity: z.ZodOptional<z.ZodString>;
235
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
236
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
237
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
238
+ } & {
239
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
240
+ accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
241
+ routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
242
+ accountName: z.ZodString;
243
+ agentEmail: z.ZodString;
244
+ agentName: z.ZodString;
245
+ accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
246
+ account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
247
+ id: z.ZodString;
248
+ __entity: z.ZodOptional<z.ZodString>;
249
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
250
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
251
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
252
+ } & {
253
+ name: z.ZodString;
254
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
255
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof ManagedByType>>;
256
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
257
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
258
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
259
+ allowPendingComplianceReview: z.ZodBoolean;
260
+ }, "strip", z.ZodTypeAny, {
261
+ status: import("./common.types").AccountStatus;
262
+ id: string;
263
+ createdAt: string | Date;
264
+ updatedAt: string | Date;
265
+ deletedAt: string | Date | null;
266
+ name: string;
267
+ managedBy: ManagedByType | null;
268
+ platform: import("./common.types").Platform;
269
+ onboardingReviewerId: string | null;
270
+ onboardingReviewAt: Date | null;
271
+ allowPendingComplianceReview: boolean;
272
+ __entity?: string | undefined;
273
+ }, {
274
+ status: import("./common.types").AccountStatus;
275
+ id: string;
276
+ createdAt: string | Date;
277
+ updatedAt: string | Date;
278
+ deletedAt: string | Date | null;
279
+ name: string;
280
+ managedBy: ManagedByType | null;
281
+ platform: import("./common.types").Platform;
282
+ onboardingReviewerId: string | null;
283
+ onboardingReviewAt: Date | null;
284
+ allowPendingComplianceReview: boolean;
285
+ __entity?: string | undefined;
286
+ }>>>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ id: string;
289
+ createdAt: string | Date;
290
+ updatedAt: string | Date;
291
+ deletedAt: string | Date | null;
292
+ accountId: string;
293
+ accountName: string;
294
+ agentEmail: string;
295
+ agentName: string;
296
+ __entity?: string | undefined;
297
+ account?: {
298
+ status: import("./common.types").AccountStatus;
299
+ id: string;
300
+ createdAt: string | Date;
301
+ updatedAt: string | Date;
302
+ deletedAt: string | Date | null;
303
+ name: string;
304
+ managedBy: ManagedByType | null;
305
+ platform: import("./common.types").Platform;
306
+ onboardingReviewerId: string | null;
307
+ onboardingReviewAt: Date | null;
308
+ allowPendingComplianceReview: boolean;
309
+ __entity?: string | undefined;
310
+ } | null | undefined;
311
+ accountNumber?: string | null | undefined;
312
+ routingNumber?: string | null | undefined;
313
+ company?: string | null | undefined;
314
+ }, {
315
+ id: string;
316
+ createdAt: string | Date;
317
+ updatedAt: string | Date;
318
+ deletedAt: string | Date | null;
319
+ accountId: string;
320
+ accountName: string;
321
+ agentEmail: string;
322
+ agentName: string;
323
+ __entity?: string | undefined;
324
+ account?: {
325
+ status: import("./common.types").AccountStatus;
326
+ id: string;
327
+ createdAt: string | Date;
328
+ updatedAt: string | Date;
329
+ deletedAt: string | Date | null;
330
+ name: string;
331
+ managedBy: ManagedByType | null;
332
+ platform: import("./common.types").Platform;
333
+ onboardingReviewerId: string | null;
334
+ onboardingReviewAt: Date | null;
335
+ allowPendingComplianceReview: boolean;
336
+ __entity?: string | undefined;
337
+ } | null | undefined;
338
+ accountNumber?: string | null | undefined;
339
+ routingNumber?: string | null | undefined;
340
+ company?: string | null | undefined;
341
+ }>>>>;
215
342
  }, "strip", z.ZodTypeAny, {
216
343
  type: OfferingType | null;
217
344
  id: string;
@@ -256,6 +383,10 @@ export declare const IIssuerOffering: z.ZodObject<{
256
383
  durationType: DurationType | null;
257
384
  tiers: number[] | null;
258
385
  enableBonus: boolean;
386
+ principalAmount: number | null;
387
+ maxTotalRaise: number | null;
388
+ interestRate: number | null;
389
+ interestType: InterestType | null;
259
390
  __entity?: string | undefined;
260
391
  account?: {
261
392
  status: import("./common.types").AccountStatus;
@@ -293,6 +424,39 @@ export declare const IIssuerOffering: z.ZodObject<{
293
424
  memorandumId?: string | null | undefined;
294
425
  subscriptionAgreementId?: string | null | undefined;
295
426
  showTotalRaised?: boolean | undefined;
427
+ hasEscrow?: boolean | undefined;
428
+ escrowAgreementFileId?: string | null | undefined;
429
+ bankAccountId?: string | null | undefined;
430
+ bankAccount?: any;
431
+ escrowAccountId?: string | null | undefined;
432
+ escrowAccount?: {
433
+ id: string;
434
+ createdAt: string | Date;
435
+ updatedAt: string | Date;
436
+ deletedAt: string | Date | null;
437
+ accountId: string;
438
+ accountName: string;
439
+ agentEmail: string;
440
+ agentName: string;
441
+ __entity?: string | undefined;
442
+ account?: {
443
+ status: import("./common.types").AccountStatus;
444
+ id: string;
445
+ createdAt: string | Date;
446
+ updatedAt: string | Date;
447
+ deletedAt: string | Date | null;
448
+ name: string;
449
+ managedBy: ManagedByType | null;
450
+ platform: import("./common.types").Platform;
451
+ onboardingReviewerId: string | null;
452
+ onboardingReviewAt: Date | null;
453
+ allowPendingComplianceReview: boolean;
454
+ __entity?: string | undefined;
455
+ } | null | undefined;
456
+ accountNumber?: string | null | undefined;
457
+ routingNumber?: string | null | undefined;
458
+ company?: string | null | undefined;
459
+ } | null | undefined;
296
460
  }, {
297
461
  type: OfferingType | null;
298
462
  id: string;
@@ -337,6 +501,10 @@ export declare const IIssuerOffering: z.ZodObject<{
337
501
  durationType: DurationType | null;
338
502
  tiers: number[] | null;
339
503
  enableBonus: boolean;
504
+ principalAmount: number | null;
505
+ maxTotalRaise: number | null;
506
+ interestRate: number | null;
507
+ interestType: InterestType | null;
340
508
  __entity?: string | undefined;
341
509
  account?: {
342
510
  status: import("./common.types").AccountStatus;
@@ -374,6 +542,39 @@ export declare const IIssuerOffering: z.ZodObject<{
374
542
  memorandumId?: string | null | undefined;
375
543
  subscriptionAgreementId?: string | null | undefined;
376
544
  showTotalRaised?: boolean | undefined;
545
+ hasEscrow?: boolean | undefined;
546
+ escrowAgreementFileId?: string | null | undefined;
547
+ bankAccountId?: string | null | undefined;
548
+ bankAccount?: any;
549
+ escrowAccountId?: string | null | undefined;
550
+ escrowAccount?: {
551
+ id: string;
552
+ createdAt: string | Date;
553
+ updatedAt: string | Date;
554
+ deletedAt: string | Date | null;
555
+ accountId: string;
556
+ accountName: string;
557
+ agentEmail: string;
558
+ agentName: string;
559
+ __entity?: string | undefined;
560
+ account?: {
561
+ status: import("./common.types").AccountStatus;
562
+ id: string;
563
+ createdAt: string | Date;
564
+ updatedAt: string | Date;
565
+ deletedAt: string | Date | null;
566
+ name: string;
567
+ managedBy: ManagedByType | null;
568
+ platform: import("./common.types").Platform;
569
+ onboardingReviewerId: string | null;
570
+ onboardingReviewAt: Date | null;
571
+ allowPendingComplianceReview: boolean;
572
+ __entity?: string | undefined;
573
+ } | null | undefined;
574
+ accountNumber?: string | null | undefined;
575
+ routingNumber?: string | null | undefined;
576
+ company?: string | null | undefined;
577
+ } | null | undefined;
377
578
  }>;
378
579
  export type IIssuerOffering = z.infer<typeof IIssuerOffering>;
379
580
  export declare const IPaginatedIssuerOffering: z.ZodObject<{
@@ -504,6 +705,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
504
705
  template: z.ZodNativeEnum<typeof AssetTemplateType>;
505
706
  tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
506
707
  enableBonus: z.ZodBoolean;
708
+ principalAmount: z.ZodNullable<z.ZodNumber>;
709
+ maxTotalRaise: z.ZodNullable<z.ZodNumber>;
710
+ interestRate: z.ZodNullable<z.ZodNumber>;
711
+ interestType: z.ZodNullable<z.ZodNativeEnum<typeof InterestType>>;
507
712
  }, "strip", z.ZodTypeAny, {
508
713
  type: AssetType | null;
509
714
  id: string;
@@ -522,6 +727,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
522
727
  durationType: DurationType | null;
523
728
  tiers: number[] | null;
524
729
  enableBonus: boolean;
730
+ principalAmount: number | null;
731
+ maxTotalRaise: number | null;
732
+ interestRate: number | null;
733
+ interestType: InterestType | null;
525
734
  __entity?: string | undefined;
526
735
  account?: {
527
736
  status: import("./common.types").AccountStatus;
@@ -556,6 +765,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
556
765
  durationType: DurationType | null;
557
766
  tiers: number[] | null;
558
767
  enableBonus: boolean;
768
+ principalAmount: number | null;
769
+ maxTotalRaise: number | null;
770
+ interestRate: number | null;
771
+ interestType: InterestType | null;
559
772
  __entity?: string | undefined;
560
773
  account?: {
561
774
  status: import("./common.types").AccountStatus;
@@ -582,6 +795,121 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
582
795
  valuationCap: z.ZodNullable<z.ZodNumber>;
583
796
  showTotalRaised: z.ZodOptional<z.ZodBoolean>;
584
797
  status: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof OfferingStatus>>>;
798
+ hasEscrow: z.ZodOptional<z.ZodBoolean>;
799
+ escrowAgreementFileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
800
+ bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
801
+ bankAccount: z.ZodOptional<z.ZodNullable<z.ZodLazy<any>>>;
802
+ escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
803
+ escrowAccount: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
804
+ id: z.ZodString;
805
+ __entity: z.ZodOptional<z.ZodString>;
806
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
807
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
808
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
809
+ } & {
810
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
811
+ accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
812
+ routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
813
+ accountName: z.ZodString;
814
+ agentEmail: z.ZodString;
815
+ agentName: z.ZodString;
816
+ accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
817
+ account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
818
+ id: z.ZodString;
819
+ __entity: z.ZodOptional<z.ZodString>;
820
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
821
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
822
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
823
+ } & {
824
+ name: z.ZodString;
825
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
826
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof ManagedByType>>;
827
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
828
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
829
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
830
+ allowPendingComplianceReview: z.ZodBoolean;
831
+ }, "strip", z.ZodTypeAny, {
832
+ status: import("./common.types").AccountStatus;
833
+ id: string;
834
+ createdAt: string | Date;
835
+ updatedAt: string | Date;
836
+ deletedAt: string | Date | null;
837
+ name: string;
838
+ managedBy: ManagedByType | null;
839
+ platform: import("./common.types").Platform;
840
+ onboardingReviewerId: string | null;
841
+ onboardingReviewAt: Date | null;
842
+ allowPendingComplianceReview: boolean;
843
+ __entity?: string | undefined;
844
+ }, {
845
+ status: import("./common.types").AccountStatus;
846
+ id: string;
847
+ createdAt: string | Date;
848
+ updatedAt: string | Date;
849
+ deletedAt: string | Date | null;
850
+ name: string;
851
+ managedBy: ManagedByType | null;
852
+ platform: import("./common.types").Platform;
853
+ onboardingReviewerId: string | null;
854
+ onboardingReviewAt: Date | null;
855
+ allowPendingComplianceReview: boolean;
856
+ __entity?: string | undefined;
857
+ }>>>;
858
+ }, "strip", z.ZodTypeAny, {
859
+ id: string;
860
+ createdAt: string | Date;
861
+ updatedAt: string | Date;
862
+ deletedAt: string | Date | null;
863
+ accountId: string;
864
+ accountName: string;
865
+ agentEmail: string;
866
+ agentName: string;
867
+ __entity?: string | undefined;
868
+ account?: {
869
+ status: import("./common.types").AccountStatus;
870
+ id: string;
871
+ createdAt: string | Date;
872
+ updatedAt: string | Date;
873
+ deletedAt: string | Date | null;
874
+ name: string;
875
+ managedBy: ManagedByType | null;
876
+ platform: import("./common.types").Platform;
877
+ onboardingReviewerId: string | null;
878
+ onboardingReviewAt: Date | null;
879
+ allowPendingComplianceReview: boolean;
880
+ __entity?: string | undefined;
881
+ } | null | undefined;
882
+ accountNumber?: string | null | undefined;
883
+ routingNumber?: string | null | undefined;
884
+ company?: string | null | undefined;
885
+ }, {
886
+ id: string;
887
+ createdAt: string | Date;
888
+ updatedAt: string | Date;
889
+ deletedAt: string | Date | null;
890
+ accountId: string;
891
+ accountName: string;
892
+ agentEmail: string;
893
+ agentName: string;
894
+ __entity?: string | undefined;
895
+ account?: {
896
+ status: import("./common.types").AccountStatus;
897
+ id: string;
898
+ createdAt: string | Date;
899
+ updatedAt: string | Date;
900
+ deletedAt: string | Date | null;
901
+ name: string;
902
+ managedBy: ManagedByType | null;
903
+ platform: import("./common.types").Platform;
904
+ onboardingReviewerId: string | null;
905
+ onboardingReviewAt: Date | null;
906
+ allowPendingComplianceReview: boolean;
907
+ __entity?: string | undefined;
908
+ } | null | undefined;
909
+ accountNumber?: string | null | undefined;
910
+ routingNumber?: string | null | undefined;
911
+ company?: string | null | undefined;
912
+ }>>>>;
585
913
  }, "strip", z.ZodTypeAny, {
586
914
  type: OfferingType | null;
587
915
  id: string;
@@ -626,6 +954,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
626
954
  durationType: DurationType | null;
627
955
  tiers: number[] | null;
628
956
  enableBonus: boolean;
957
+ principalAmount: number | null;
958
+ maxTotalRaise: number | null;
959
+ interestRate: number | null;
960
+ interestType: InterestType | null;
629
961
  __entity?: string | undefined;
630
962
  account?: {
631
963
  status: import("./common.types").AccountStatus;
@@ -663,6 +995,39 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
663
995
  memorandumId?: string | null | undefined;
664
996
  subscriptionAgreementId?: string | null | undefined;
665
997
  showTotalRaised?: boolean | undefined;
998
+ hasEscrow?: boolean | undefined;
999
+ escrowAgreementFileId?: string | null | undefined;
1000
+ bankAccountId?: string | null | undefined;
1001
+ bankAccount?: any;
1002
+ escrowAccountId?: string | null | undefined;
1003
+ escrowAccount?: {
1004
+ id: string;
1005
+ createdAt: string | Date;
1006
+ updatedAt: string | Date;
1007
+ deletedAt: string | Date | null;
1008
+ accountId: string;
1009
+ accountName: string;
1010
+ agentEmail: string;
1011
+ agentName: string;
1012
+ __entity?: string | undefined;
1013
+ account?: {
1014
+ status: import("./common.types").AccountStatus;
1015
+ id: string;
1016
+ createdAt: string | Date;
1017
+ updatedAt: string | Date;
1018
+ deletedAt: string | Date | null;
1019
+ name: string;
1020
+ managedBy: ManagedByType | null;
1021
+ platform: import("./common.types").Platform;
1022
+ onboardingReviewerId: string | null;
1023
+ onboardingReviewAt: Date | null;
1024
+ allowPendingComplianceReview: boolean;
1025
+ __entity?: string | undefined;
1026
+ } | null | undefined;
1027
+ accountNumber?: string | null | undefined;
1028
+ routingNumber?: string | null | undefined;
1029
+ company?: string | null | undefined;
1030
+ } | null | undefined;
666
1031
  }, {
667
1032
  type: OfferingType | null;
668
1033
  id: string;
@@ -707,6 +1072,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
707
1072
  durationType: DurationType | null;
708
1073
  tiers: number[] | null;
709
1074
  enableBonus: boolean;
1075
+ principalAmount: number | null;
1076
+ maxTotalRaise: number | null;
1077
+ interestRate: number | null;
1078
+ interestType: InterestType | null;
710
1079
  __entity?: string | undefined;
711
1080
  account?: {
712
1081
  status: import("./common.types").AccountStatus;
@@ -744,6 +1113,39 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
744
1113
  memorandumId?: string | null | undefined;
745
1114
  subscriptionAgreementId?: string | null | undefined;
746
1115
  showTotalRaised?: boolean | undefined;
1116
+ hasEscrow?: boolean | undefined;
1117
+ escrowAgreementFileId?: string | null | undefined;
1118
+ bankAccountId?: string | null | undefined;
1119
+ bankAccount?: any;
1120
+ escrowAccountId?: string | null | undefined;
1121
+ escrowAccount?: {
1122
+ id: string;
1123
+ createdAt: string | Date;
1124
+ updatedAt: string | Date;
1125
+ deletedAt: string | Date | null;
1126
+ accountId: string;
1127
+ accountName: string;
1128
+ agentEmail: string;
1129
+ agentName: string;
1130
+ __entity?: string | undefined;
1131
+ account?: {
1132
+ status: import("./common.types").AccountStatus;
1133
+ id: string;
1134
+ createdAt: string | Date;
1135
+ updatedAt: string | Date;
1136
+ deletedAt: string | Date | null;
1137
+ name: string;
1138
+ managedBy: ManagedByType | null;
1139
+ platform: import("./common.types").Platform;
1140
+ onboardingReviewerId: string | null;
1141
+ onboardingReviewAt: Date | null;
1142
+ allowPendingComplianceReview: boolean;
1143
+ __entity?: string | undefined;
1144
+ } | null | undefined;
1145
+ accountNumber?: string | null | undefined;
1146
+ routingNumber?: string | null | undefined;
1147
+ company?: string | null | undefined;
1148
+ } | null | undefined;
747
1149
  }>, "many">;
748
1150
  meta: z.ZodObject<{
749
1151
  itemCount: z.ZodNumber;
@@ -809,6 +1211,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
809
1211
  durationType: DurationType | null;
810
1212
  tiers: number[] | null;
811
1213
  enableBonus: boolean;
1214
+ principalAmount: number | null;
1215
+ maxTotalRaise: number | null;
1216
+ interestRate: number | null;
1217
+ interestType: InterestType | null;
812
1218
  __entity?: string | undefined;
813
1219
  account?: {
814
1220
  status: import("./common.types").AccountStatus;
@@ -846,6 +1252,39 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
846
1252
  memorandumId?: string | null | undefined;
847
1253
  subscriptionAgreementId?: string | null | undefined;
848
1254
  showTotalRaised?: boolean | undefined;
1255
+ hasEscrow?: boolean | undefined;
1256
+ escrowAgreementFileId?: string | null | undefined;
1257
+ bankAccountId?: string | null | undefined;
1258
+ bankAccount?: any;
1259
+ escrowAccountId?: string | null | undefined;
1260
+ escrowAccount?: {
1261
+ id: string;
1262
+ createdAt: string | Date;
1263
+ updatedAt: string | Date;
1264
+ deletedAt: string | Date | null;
1265
+ accountId: string;
1266
+ accountName: string;
1267
+ agentEmail: string;
1268
+ agentName: string;
1269
+ __entity?: string | undefined;
1270
+ account?: {
1271
+ status: import("./common.types").AccountStatus;
1272
+ id: string;
1273
+ createdAt: string | Date;
1274
+ updatedAt: string | Date;
1275
+ deletedAt: string | Date | null;
1276
+ name: string;
1277
+ managedBy: ManagedByType | null;
1278
+ platform: import("./common.types").Platform;
1279
+ onboardingReviewerId: string | null;
1280
+ onboardingReviewAt: Date | null;
1281
+ allowPendingComplianceReview: boolean;
1282
+ __entity?: string | undefined;
1283
+ } | null | undefined;
1284
+ accountNumber?: string | null | undefined;
1285
+ routingNumber?: string | null | undefined;
1286
+ company?: string | null | undefined;
1287
+ } | null | undefined;
849
1288
  }[];
850
1289
  meta: {
851
1290
  itemCount: number;
@@ -899,6 +1338,10 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
899
1338
  durationType: DurationType | null;
900
1339
  tiers: number[] | null;
901
1340
  enableBonus: boolean;
1341
+ principalAmount: number | null;
1342
+ maxTotalRaise: number | null;
1343
+ interestRate: number | null;
1344
+ interestType: InterestType | null;
902
1345
  __entity?: string | undefined;
903
1346
  account?: {
904
1347
  status: import("./common.types").AccountStatus;
@@ -936,6 +1379,39 @@ export declare const IPaginatedIssuerOffering: z.ZodObject<{
936
1379
  memorandumId?: string | null | undefined;
937
1380
  subscriptionAgreementId?: string | null | undefined;
938
1381
  showTotalRaised?: boolean | undefined;
1382
+ hasEscrow?: boolean | undefined;
1383
+ escrowAgreementFileId?: string | null | undefined;
1384
+ bankAccountId?: string | null | undefined;
1385
+ bankAccount?: any;
1386
+ escrowAccountId?: string | null | undefined;
1387
+ escrowAccount?: {
1388
+ id: string;
1389
+ createdAt: string | Date;
1390
+ updatedAt: string | Date;
1391
+ deletedAt: string | Date | null;
1392
+ accountId: string;
1393
+ accountName: string;
1394
+ agentEmail: string;
1395
+ agentName: string;
1396
+ __entity?: string | undefined;
1397
+ account?: {
1398
+ status: import("./common.types").AccountStatus;
1399
+ id: string;
1400
+ createdAt: string | Date;
1401
+ updatedAt: string | Date;
1402
+ deletedAt: string | Date | null;
1403
+ name: string;
1404
+ managedBy: ManagedByType | null;
1405
+ platform: import("./common.types").Platform;
1406
+ onboardingReviewerId: string | null;
1407
+ onboardingReviewAt: Date | null;
1408
+ allowPendingComplianceReview: boolean;
1409
+ __entity?: string | undefined;
1410
+ } | null | undefined;
1411
+ accountNumber?: string | null | undefined;
1412
+ routingNumber?: string | null | undefined;
1413
+ company?: string | null | undefined;
1414
+ } | null | undefined;
939
1415
  }[];
940
1416
  meta: {
941
1417
  itemCount: number;
@@ -971,6 +1447,49 @@ export declare const PostIssuerOffering: z.ZodEffects<z.ZodObject<{
971
1447
  template: z.ZodDefault<z.ZodNativeEnum<typeof AssetTemplateType>>;
972
1448
  tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
973
1449
  enableBonus: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1450
+ hasEscrow: z.ZodOptional<z.ZodBoolean>;
1451
+ bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1452
+ escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1453
+ principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1454
+ maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1455
+ interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1456
+ interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof InterestType>>>;
1457
+ bonusTiers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1458
+ type: z.ZodNativeEnum<typeof import("./bonus-tier.types").BonusType>;
1459
+ value: z.ZodEffects<z.ZodNumber, number, number>;
1460
+ startAmount: z.ZodEffects<z.ZodNumber, number, number>;
1461
+ endAmount: z.ZodEffects<z.ZodNumber, number, number>;
1462
+ }, "strip", z.ZodTypeAny, {
1463
+ value: number;
1464
+ type: import("./bonus-tier.types").BonusType;
1465
+ startAmount: number;
1466
+ endAmount: number;
1467
+ }, {
1468
+ value: number;
1469
+ type: import("./bonus-tier.types").BonusType;
1470
+ startAmount: number;
1471
+ endAmount: number;
1472
+ }>, {
1473
+ value: number;
1474
+ type: import("./bonus-tier.types").BonusType;
1475
+ startAmount: number;
1476
+ endAmount: number;
1477
+ }, {
1478
+ value: number;
1479
+ type: import("./bonus-tier.types").BonusType;
1480
+ startAmount: number;
1481
+ endAmount: number;
1482
+ }>, {
1483
+ value: number;
1484
+ type: import("./bonus-tier.types").BonusType;
1485
+ startAmount: number;
1486
+ endAmount: number;
1487
+ }, {
1488
+ value: number;
1489
+ type: import("./bonus-tier.types").BonusType;
1490
+ startAmount: number;
1491
+ endAmount: number;
1492
+ }>, "many">>;
974
1493
  }, "strip", z.ZodTypeAny, {
975
1494
  type: OfferingType;
976
1495
  name: string;
@@ -991,11 +1510,24 @@ export declare const PostIssuerOffering: z.ZodEffects<z.ZodObject<{
991
1510
  startAt?: Date | null | undefined;
992
1511
  endAt?: Date | null | undefined;
993
1512
  cancellationPeriod?: number | null | undefined;
1513
+ hasEscrow?: boolean | undefined;
1514
+ bankAccountId?: string | null | undefined;
1515
+ escrowAccountId?: string | null | undefined;
994
1516
  yield?: number | null | undefined;
995
1517
  duration?: number | null | undefined;
996
1518
  durationType?: DurationType | null | undefined;
997
1519
  tiers?: number[] | null | undefined;
998
1520
  enableBonus?: boolean | undefined;
1521
+ principalAmount?: number | null | undefined;
1522
+ maxTotalRaise?: number | null | undefined;
1523
+ interestRate?: number | null | undefined;
1524
+ interestType?: InterestType | null | undefined;
1525
+ bonusTiers?: {
1526
+ value: number;
1527
+ type: import("./bonus-tier.types").BonusType;
1528
+ startAmount: number;
1529
+ endAmount: number;
1530
+ }[] | undefined;
999
1531
  }, {
1000
1532
  type: OfferingType;
1001
1533
  name: string;
@@ -1016,11 +1548,24 @@ export declare const PostIssuerOffering: z.ZodEffects<z.ZodObject<{
1016
1548
  startAt?: string | null | undefined;
1017
1549
  endAt?: string | null | undefined;
1018
1550
  cancellationPeriod?: number | null | undefined;
1551
+ hasEscrow?: boolean | undefined;
1552
+ bankAccountId?: string | null | undefined;
1553
+ escrowAccountId?: string | null | undefined;
1019
1554
  yield?: number | null | undefined;
1020
1555
  duration?: number | null | undefined;
1021
1556
  durationType?: DurationType | null | undefined;
1022
1557
  tiers?: number[] | null | undefined;
1023
1558
  enableBonus?: boolean | undefined;
1559
+ principalAmount?: number | null | undefined;
1560
+ maxTotalRaise?: number | null | undefined;
1561
+ interestRate?: number | null | undefined;
1562
+ interestType?: InterestType | null | undefined;
1563
+ bonusTiers?: {
1564
+ value: number;
1565
+ type: import("./bonus-tier.types").BonusType;
1566
+ startAmount: number;
1567
+ endAmount: number;
1568
+ }[] | undefined;
1024
1569
  }>, {
1025
1570
  type: OfferingType;
1026
1571
  name: string;
@@ -1041,11 +1586,24 @@ export declare const PostIssuerOffering: z.ZodEffects<z.ZodObject<{
1041
1586
  startAt?: Date | null | undefined;
1042
1587
  endAt?: Date | null | undefined;
1043
1588
  cancellationPeriod?: number | null | undefined;
1589
+ hasEscrow?: boolean | undefined;
1590
+ bankAccountId?: string | null | undefined;
1591
+ escrowAccountId?: string | null | undefined;
1044
1592
  yield?: number | null | undefined;
1045
1593
  duration?: number | null | undefined;
1046
1594
  durationType?: DurationType | null | undefined;
1047
1595
  tiers?: number[] | null | undefined;
1048
1596
  enableBonus?: boolean | undefined;
1597
+ principalAmount?: number | null | undefined;
1598
+ maxTotalRaise?: number | null | undefined;
1599
+ interestRate?: number | null | undefined;
1600
+ interestType?: InterestType | null | undefined;
1601
+ bonusTiers?: {
1602
+ value: number;
1603
+ type: import("./bonus-tier.types").BonusType;
1604
+ startAmount: number;
1605
+ endAmount: number;
1606
+ }[] | undefined;
1049
1607
  }, {
1050
1608
  type: OfferingType;
1051
1609
  name: string;
@@ -1066,14 +1624,27 @@ export declare const PostIssuerOffering: z.ZodEffects<z.ZodObject<{
1066
1624
  startAt?: string | null | undefined;
1067
1625
  endAt?: string | null | undefined;
1068
1626
  cancellationPeriod?: number | null | undefined;
1627
+ hasEscrow?: boolean | undefined;
1628
+ bankAccountId?: string | null | undefined;
1629
+ escrowAccountId?: string | null | undefined;
1069
1630
  yield?: number | null | undefined;
1070
1631
  duration?: number | null | undefined;
1071
1632
  durationType?: DurationType | null | undefined;
1072
1633
  tiers?: number[] | null | undefined;
1073
1634
  enableBonus?: boolean | undefined;
1635
+ principalAmount?: number | null | undefined;
1636
+ maxTotalRaise?: number | null | undefined;
1637
+ interestRate?: number | null | undefined;
1638
+ interestType?: InterestType | null | undefined;
1639
+ bonusTiers?: {
1640
+ value: number;
1641
+ type: import("./bonus-tier.types").BonusType;
1642
+ startAmount: number;
1643
+ endAmount: number;
1644
+ }[] | undefined;
1074
1645
  }>;
1075
1646
  export type PostIssuerOffering = z.infer<typeof PostIssuerOffering>;
1076
- export declare const PatchIssuerOffering: z.ZodObject<{
1647
+ export declare const PatchIssuerOffering: z.ZodEffects<z.ZodObject<{
1077
1648
  name: z.ZodOptional<z.ZodString>;
1078
1649
  type: z.ZodOptional<z.ZodNativeEnum<typeof OfferingType>>;
1079
1650
  targetAmount: z.ZodOptional<z.ZodNumber>;
@@ -1087,7 +1658,6 @@ export declare const PatchIssuerOffering: z.ZodObject<{
1087
1658
  memorandumId: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1088
1659
  subscriptionAgreementId: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1089
1660
  coverArtId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1090
- managedBy: z.ZodOptional<z.ZodNativeEnum<typeof ManagedByType>>;
1091
1661
  showTotalRaised: z.ZodOptional<z.ZodBoolean>;
1092
1662
  issuerId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1093
1663
  assetName: z.ZodOptional<z.ZodString>;
@@ -1101,10 +1671,53 @@ export declare const PatchIssuerOffering: z.ZodObject<{
1101
1671
  tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
1102
1672
  enabled: z.ZodOptional<z.ZodBoolean>;
1103
1673
  enableBonus: z.ZodOptional<z.ZodBoolean>;
1674
+ hasEscrow: z.ZodOptional<z.ZodBoolean>;
1675
+ escrowAgreementFileId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1676
+ bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1677
+ escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
1678
+ principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1679
+ maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1680
+ interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1681
+ interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof InterestType>>>;
1682
+ bonusTiers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
1683
+ type: z.ZodNativeEnum<typeof import("./bonus-tier.types").BonusType>;
1684
+ value: z.ZodEffects<z.ZodNumber, number, number>;
1685
+ startAmount: z.ZodEffects<z.ZodNumber, number, number>;
1686
+ endAmount: z.ZodEffects<z.ZodNumber, number, number>;
1687
+ }, "strip", z.ZodTypeAny, {
1688
+ value: number;
1689
+ type: import("./bonus-tier.types").BonusType;
1690
+ startAmount: number;
1691
+ endAmount: number;
1692
+ }, {
1693
+ value: number;
1694
+ type: import("./bonus-tier.types").BonusType;
1695
+ startAmount: number;
1696
+ endAmount: number;
1697
+ }>, {
1698
+ value: number;
1699
+ type: import("./bonus-tier.types").BonusType;
1700
+ startAmount: number;
1701
+ endAmount: number;
1702
+ }, {
1703
+ value: number;
1704
+ type: import("./bonus-tier.types").BonusType;
1705
+ startAmount: number;
1706
+ endAmount: number;
1707
+ }>, {
1708
+ value: number;
1709
+ type: import("./bonus-tier.types").BonusType;
1710
+ startAmount: number;
1711
+ endAmount: number;
1712
+ }, {
1713
+ value: number;
1714
+ type: import("./bonus-tier.types").BonusType;
1715
+ startAmount: number;
1716
+ endAmount: number;
1717
+ }>, "many">>;
1104
1718
  }, "strip", z.ZodTypeAny, {
1105
1719
  type?: OfferingType | undefined;
1106
1720
  name?: string | undefined;
1107
- managedBy?: ManagedByType | undefined;
1108
1721
  description?: string | null | undefined;
1109
1722
  enabled?: boolean | undefined;
1110
1723
  template?: AssetTemplateType | null | undefined;
@@ -1120,6 +1733,10 @@ export declare const PatchIssuerOffering: z.ZodObject<{
1120
1733
  memorandumId?: string | null | undefined;
1121
1734
  subscriptionAgreementId?: string | null | undefined;
1122
1735
  showTotalRaised?: boolean | undefined;
1736
+ hasEscrow?: boolean | undefined;
1737
+ escrowAgreementFileId?: string | null | undefined;
1738
+ bankAccountId?: string | null | undefined;
1739
+ escrowAccountId?: string | null | undefined;
1123
1740
  assetName?: string | undefined;
1124
1741
  assetType?: AssetType | undefined;
1125
1742
  pricePerUnit?: number | null | undefined;
@@ -1129,10 +1746,101 @@ export declare const PatchIssuerOffering: z.ZodObject<{
1129
1746
  durationType?: DurationType | null | undefined;
1130
1747
  tiers?: number[] | null | undefined;
1131
1748
  enableBonus?: boolean | undefined;
1749
+ principalAmount?: number | null | undefined;
1750
+ maxTotalRaise?: number | null | undefined;
1751
+ interestRate?: number | null | undefined;
1752
+ interestType?: InterestType | null | undefined;
1753
+ bonusTiers?: {
1754
+ value: number;
1755
+ type: import("./bonus-tier.types").BonusType;
1756
+ startAmount: number;
1757
+ endAmount: number;
1758
+ }[] | undefined;
1759
+ }, {
1760
+ type?: OfferingType | undefined;
1761
+ name?: string | undefined;
1762
+ description?: string | null | undefined;
1763
+ enabled?: boolean | undefined;
1764
+ template?: AssetTemplateType | null | undefined;
1765
+ coverArtId?: string | null | undefined;
1766
+ targetAmount?: number | undefined;
1767
+ minInvestment?: number | null | undefined;
1768
+ maxInvestment?: number | null | undefined;
1769
+ contingencyAmount?: number | null | undefined;
1770
+ startAt?: string | null | undefined;
1771
+ endAt?: string | null | undefined;
1772
+ issuerId?: string | undefined;
1773
+ cancellationPeriod?: number | null | undefined;
1774
+ memorandumId?: string | null | undefined;
1775
+ subscriptionAgreementId?: string | null | undefined;
1776
+ showTotalRaised?: boolean | undefined;
1777
+ hasEscrow?: boolean | undefined;
1778
+ escrowAgreementFileId?: string | null | undefined;
1779
+ bankAccountId?: string | null | undefined;
1780
+ escrowAccountId?: string | null | undefined;
1781
+ assetName?: string | undefined;
1782
+ assetType?: AssetType | undefined;
1783
+ pricePerUnit?: number | null | undefined;
1784
+ totalUnits?: number | null | undefined;
1785
+ yield?: number | null | undefined;
1786
+ duration?: number | null | undefined;
1787
+ durationType?: DurationType | null | undefined;
1788
+ tiers?: number[] | null | undefined;
1789
+ enableBonus?: boolean | undefined;
1790
+ principalAmount?: number | null | undefined;
1791
+ maxTotalRaise?: number | null | undefined;
1792
+ interestRate?: number | null | undefined;
1793
+ interestType?: InterestType | null | undefined;
1794
+ bonusTiers?: {
1795
+ value: number;
1796
+ type: import("./bonus-tier.types").BonusType;
1797
+ startAmount: number;
1798
+ endAmount: number;
1799
+ }[] | undefined;
1800
+ }>, {
1801
+ type?: OfferingType | undefined;
1802
+ name?: string | undefined;
1803
+ description?: string | null | undefined;
1804
+ enabled?: boolean | undefined;
1805
+ template?: AssetTemplateType | null | undefined;
1806
+ coverArtId?: string | null | undefined;
1807
+ targetAmount?: number | undefined;
1808
+ minInvestment?: number | null | undefined;
1809
+ maxInvestment?: number | null | undefined;
1810
+ contingencyAmount?: number | null | undefined;
1811
+ startAt?: Date | null | undefined;
1812
+ endAt?: Date | null | undefined;
1813
+ issuerId?: string | undefined;
1814
+ cancellationPeriod?: number | null | undefined;
1815
+ memorandumId?: string | null | undefined;
1816
+ subscriptionAgreementId?: string | null | undefined;
1817
+ showTotalRaised?: boolean | undefined;
1818
+ hasEscrow?: boolean | undefined;
1819
+ escrowAgreementFileId?: string | null | undefined;
1820
+ bankAccountId?: string | null | undefined;
1821
+ escrowAccountId?: string | null | undefined;
1822
+ assetName?: string | undefined;
1823
+ assetType?: AssetType | undefined;
1824
+ pricePerUnit?: number | null | undefined;
1825
+ totalUnits?: number | null | undefined;
1826
+ yield?: number | null | undefined;
1827
+ duration?: number | null | undefined;
1828
+ durationType?: DurationType | null | undefined;
1829
+ tiers?: number[] | null | undefined;
1830
+ enableBonus?: boolean | undefined;
1831
+ principalAmount?: number | null | undefined;
1832
+ maxTotalRaise?: number | null | undefined;
1833
+ interestRate?: number | null | undefined;
1834
+ interestType?: InterestType | null | undefined;
1835
+ bonusTiers?: {
1836
+ value: number;
1837
+ type: import("./bonus-tier.types").BonusType;
1838
+ startAmount: number;
1839
+ endAmount: number;
1840
+ }[] | undefined;
1132
1841
  }, {
1133
1842
  type?: OfferingType | undefined;
1134
1843
  name?: string | undefined;
1135
- managedBy?: ManagedByType | undefined;
1136
1844
  description?: string | null | undefined;
1137
1845
  enabled?: boolean | undefined;
1138
1846
  template?: AssetTemplateType | null | undefined;
@@ -1148,6 +1856,10 @@ export declare const PatchIssuerOffering: z.ZodObject<{
1148
1856
  memorandumId?: string | null | undefined;
1149
1857
  subscriptionAgreementId?: string | null | undefined;
1150
1858
  showTotalRaised?: boolean | undefined;
1859
+ hasEscrow?: boolean | undefined;
1860
+ escrowAgreementFileId?: string | null | undefined;
1861
+ bankAccountId?: string | null | undefined;
1862
+ escrowAccountId?: string | null | undefined;
1151
1863
  assetName?: string | undefined;
1152
1864
  assetType?: AssetType | undefined;
1153
1865
  pricePerUnit?: number | null | undefined;
@@ -1157,6 +1869,16 @@ export declare const PatchIssuerOffering: z.ZodObject<{
1157
1869
  durationType?: DurationType | null | undefined;
1158
1870
  tiers?: number[] | null | undefined;
1159
1871
  enableBonus?: boolean | undefined;
1872
+ principalAmount?: number | null | undefined;
1873
+ maxTotalRaise?: number | null | undefined;
1874
+ interestRate?: number | null | undefined;
1875
+ interestType?: InterestType | null | undefined;
1876
+ bonusTiers?: {
1877
+ value: number;
1878
+ type: import("./bonus-tier.types").BonusType;
1879
+ startAmount: number;
1880
+ endAmount: number;
1881
+ }[] | undefined;
1160
1882
  }>;
1161
1883
  export type PatchIssuerOffering = z.infer<typeof PatchIssuerOffering>;
1162
1884
  /**
@@ -1243,3 +1965,4 @@ export declare const IssuerOfferingsFilterZod: z.ZodObject<{
1243
1965
  sortByNameASC?: unknown;
1244
1966
  }>;
1245
1967
  export type IssuerOfferingsFilterZod = z.infer<typeof IssuerOfferingsFilterZod>;
1968
+ export declare const escrowValidationRefinement: (data: any, ctx: any, httpMethod: HttpMethod) => void;