@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.
- package/common/types/bonus-tier.types.js +1 -2
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/disbursements.types.d.ts +83 -626
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +453 -1
- package/common/types/issuer-offering.types.js +67 -1
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +99 -0
- package/common/types/offering.types.js +72 -2
- package/common/types/offering.types.js.map +1 -1
- package/contracts/clients/index.d.ts +35 -0
- package/contracts/clients/offerings/index.d.ts +35 -0
- package/package.json +1 -1
|
@@ -9857,6 +9857,10 @@ export declare const clientsContract: {
|
|
|
9857
9857
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
9858
9858
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9859
9859
|
enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9860
|
+
hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9861
|
+
escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
9862
|
+
bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
9863
|
+
escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
9860
9864
|
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9861
9865
|
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9862
9866
|
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -9916,6 +9920,10 @@ export declare const clientsContract: {
|
|
|
9916
9920
|
memorandumId?: string | null | undefined;
|
|
9917
9921
|
subscriptionAgreementId?: string | null | undefined;
|
|
9918
9922
|
showTotalRaised?: boolean | undefined;
|
|
9923
|
+
hasEscrow?: boolean | undefined;
|
|
9924
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
9925
|
+
bankAccountId?: string | null | undefined;
|
|
9926
|
+
escrowAccountId?: string | null | undefined;
|
|
9919
9927
|
assetName?: string | undefined;
|
|
9920
9928
|
assetType?: import("../..").AssetType | undefined;
|
|
9921
9929
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9954,6 +9962,10 @@ export declare const clientsContract: {
|
|
|
9954
9962
|
memorandumId?: string | null | undefined;
|
|
9955
9963
|
subscriptionAgreementId?: string | null | undefined;
|
|
9956
9964
|
showTotalRaised?: boolean | undefined;
|
|
9965
|
+
hasEscrow?: boolean | undefined;
|
|
9966
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
9967
|
+
bankAccountId?: string | null | undefined;
|
|
9968
|
+
escrowAccountId?: string | null | undefined;
|
|
9957
9969
|
assetName?: string | undefined;
|
|
9958
9970
|
assetType?: import("../..").AssetType | undefined;
|
|
9959
9971
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9992,6 +10004,10 @@ export declare const clientsContract: {
|
|
|
9992
10004
|
memorandumId?: string | null | undefined;
|
|
9993
10005
|
subscriptionAgreementId?: string | null | undefined;
|
|
9994
10006
|
showTotalRaised?: boolean | undefined;
|
|
10007
|
+
hasEscrow?: boolean | undefined;
|
|
10008
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10009
|
+
bankAccountId?: string | null | undefined;
|
|
10010
|
+
escrowAccountId?: string | null | undefined;
|
|
9995
10011
|
assetName?: string | undefined;
|
|
9996
10012
|
assetType?: import("../..").AssetType | undefined;
|
|
9997
10013
|
pricePerUnit?: number | null | undefined;
|
|
@@ -10030,6 +10046,10 @@ export declare const clientsContract: {
|
|
|
10030
10046
|
memorandumId?: string | null | undefined;
|
|
10031
10047
|
subscriptionAgreementId?: string | null | undefined;
|
|
10032
10048
|
showTotalRaised?: boolean | undefined;
|
|
10049
|
+
hasEscrow?: boolean | undefined;
|
|
10050
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10051
|
+
bankAccountId?: string | null | undefined;
|
|
10052
|
+
escrowAccountId?: string | null | undefined;
|
|
10033
10053
|
assetName?: string | undefined;
|
|
10034
10054
|
assetType?: import("../..").AssetType | undefined;
|
|
10035
10055
|
pricePerUnit?: number | null | undefined;
|
|
@@ -10158,6 +10178,9 @@ export declare const clientsContract: {
|
|
|
10158
10178
|
template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
|
|
10159
10179
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
10160
10180
|
enableBonus: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10181
|
+
hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10182
|
+
bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
10183
|
+
escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
10161
10184
|
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10162
10185
|
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10163
10186
|
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -10218,6 +10241,9 @@ export declare const clientsContract: {
|
|
|
10218
10241
|
startAt?: Date | null | undefined;
|
|
10219
10242
|
endAt?: Date | null | undefined;
|
|
10220
10243
|
cancellationPeriod?: number | null | undefined;
|
|
10244
|
+
hasEscrow?: boolean | undefined;
|
|
10245
|
+
bankAccountId?: string | null | undefined;
|
|
10246
|
+
escrowAccountId?: string | null | undefined;
|
|
10221
10247
|
yield?: number | null | undefined;
|
|
10222
10248
|
duration?: number | null | undefined;
|
|
10223
10249
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -10253,6 +10279,9 @@ export declare const clientsContract: {
|
|
|
10253
10279
|
startAt?: string | null | undefined;
|
|
10254
10280
|
endAt?: string | null | undefined;
|
|
10255
10281
|
cancellationPeriod?: number | null | undefined;
|
|
10282
|
+
hasEscrow?: boolean | undefined;
|
|
10283
|
+
bankAccountId?: string | null | undefined;
|
|
10284
|
+
escrowAccountId?: string | null | undefined;
|
|
10256
10285
|
yield?: number | null | undefined;
|
|
10257
10286
|
duration?: number | null | undefined;
|
|
10258
10287
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -10288,6 +10317,9 @@ export declare const clientsContract: {
|
|
|
10288
10317
|
startAt?: Date | null | undefined;
|
|
10289
10318
|
endAt?: Date | null | undefined;
|
|
10290
10319
|
cancellationPeriod?: number | null | undefined;
|
|
10320
|
+
hasEscrow?: boolean | undefined;
|
|
10321
|
+
bankAccountId?: string | null | undefined;
|
|
10322
|
+
escrowAccountId?: string | null | undefined;
|
|
10291
10323
|
yield?: number | null | undefined;
|
|
10292
10324
|
duration?: number | null | undefined;
|
|
10293
10325
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -10323,6 +10355,9 @@ export declare const clientsContract: {
|
|
|
10323
10355
|
startAt?: string | null | undefined;
|
|
10324
10356
|
endAt?: string | null | undefined;
|
|
10325
10357
|
cancellationPeriod?: number | null | undefined;
|
|
10358
|
+
hasEscrow?: boolean | undefined;
|
|
10359
|
+
bankAccountId?: string | null | undefined;
|
|
10360
|
+
escrowAccountId?: string | null | undefined;
|
|
10326
10361
|
yield?: number | null | undefined;
|
|
10327
10362
|
duration?: number | null | undefined;
|
|
10328
10363
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -440,6 +440,10 @@ export declare const offeringsContract: {
|
|
|
440
440
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
441
441
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
442
442
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
443
|
+
hasEscrow: z.ZodOptional<z.ZodBoolean>;
|
|
444
|
+
escrowAgreementFileId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
445
|
+
bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
446
|
+
escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
443
447
|
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
444
448
|
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
445
449
|
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -499,6 +503,10 @@ export declare const offeringsContract: {
|
|
|
499
503
|
memorandumId?: string | null | undefined;
|
|
500
504
|
subscriptionAgreementId?: string | null | undefined;
|
|
501
505
|
showTotalRaised?: boolean | undefined;
|
|
506
|
+
hasEscrow?: boolean | undefined;
|
|
507
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
508
|
+
bankAccountId?: string | null | undefined;
|
|
509
|
+
escrowAccountId?: string | null | undefined;
|
|
502
510
|
assetName?: string | undefined;
|
|
503
511
|
assetType?: import("../../..").AssetType | undefined;
|
|
504
512
|
pricePerUnit?: number | null | undefined;
|
|
@@ -537,6 +545,10 @@ export declare const offeringsContract: {
|
|
|
537
545
|
memorandumId?: string | null | undefined;
|
|
538
546
|
subscriptionAgreementId?: string | null | undefined;
|
|
539
547
|
showTotalRaised?: boolean | undefined;
|
|
548
|
+
hasEscrow?: boolean | undefined;
|
|
549
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
550
|
+
bankAccountId?: string | null | undefined;
|
|
551
|
+
escrowAccountId?: string | null | undefined;
|
|
540
552
|
assetName?: string | undefined;
|
|
541
553
|
assetType?: import("../../..").AssetType | undefined;
|
|
542
554
|
pricePerUnit?: number | null | undefined;
|
|
@@ -575,6 +587,10 @@ export declare const offeringsContract: {
|
|
|
575
587
|
memorandumId?: string | null | undefined;
|
|
576
588
|
subscriptionAgreementId?: string | null | undefined;
|
|
577
589
|
showTotalRaised?: boolean | undefined;
|
|
590
|
+
hasEscrow?: boolean | undefined;
|
|
591
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
592
|
+
bankAccountId?: string | null | undefined;
|
|
593
|
+
escrowAccountId?: string | null | undefined;
|
|
578
594
|
assetName?: string | undefined;
|
|
579
595
|
assetType?: import("../../..").AssetType | undefined;
|
|
580
596
|
pricePerUnit?: number | null | undefined;
|
|
@@ -613,6 +629,10 @@ export declare const offeringsContract: {
|
|
|
613
629
|
memorandumId?: string | null | undefined;
|
|
614
630
|
subscriptionAgreementId?: string | null | undefined;
|
|
615
631
|
showTotalRaised?: boolean | undefined;
|
|
632
|
+
hasEscrow?: boolean | undefined;
|
|
633
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
634
|
+
bankAccountId?: string | null | undefined;
|
|
635
|
+
escrowAccountId?: string | null | undefined;
|
|
616
636
|
assetName?: string | undefined;
|
|
617
637
|
assetType?: import("../../..").AssetType | undefined;
|
|
618
638
|
pricePerUnit?: number | null | undefined;
|
|
@@ -741,6 +761,9 @@ export declare const offeringsContract: {
|
|
|
741
761
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
742
762
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
743
763
|
enableBonus: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
764
|
+
hasEscrow: z.ZodOptional<z.ZodBoolean>;
|
|
765
|
+
bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
766
|
+
escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
744
767
|
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
745
768
|
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
746
769
|
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -801,6 +824,9 @@ export declare const offeringsContract: {
|
|
|
801
824
|
startAt?: Date | null | undefined;
|
|
802
825
|
endAt?: Date | null | undefined;
|
|
803
826
|
cancellationPeriod?: number | null | undefined;
|
|
827
|
+
hasEscrow?: boolean | undefined;
|
|
828
|
+
bankAccountId?: string | null | undefined;
|
|
829
|
+
escrowAccountId?: string | null | undefined;
|
|
804
830
|
yield?: number | null | undefined;
|
|
805
831
|
duration?: number | null | undefined;
|
|
806
832
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -836,6 +862,9 @@ export declare const offeringsContract: {
|
|
|
836
862
|
startAt?: string | null | undefined;
|
|
837
863
|
endAt?: string | null | undefined;
|
|
838
864
|
cancellationPeriod?: number | null | undefined;
|
|
865
|
+
hasEscrow?: boolean | undefined;
|
|
866
|
+
bankAccountId?: string | null | undefined;
|
|
867
|
+
escrowAccountId?: string | null | undefined;
|
|
839
868
|
yield?: number | null | undefined;
|
|
840
869
|
duration?: number | null | undefined;
|
|
841
870
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -871,6 +900,9 @@ export declare const offeringsContract: {
|
|
|
871
900
|
startAt?: Date | null | undefined;
|
|
872
901
|
endAt?: Date | null | undefined;
|
|
873
902
|
cancellationPeriod?: number | null | undefined;
|
|
903
|
+
hasEscrow?: boolean | undefined;
|
|
904
|
+
bankAccountId?: string | null | undefined;
|
|
905
|
+
escrowAccountId?: string | null | undefined;
|
|
874
906
|
yield?: number | null | undefined;
|
|
875
907
|
duration?: number | null | undefined;
|
|
876
908
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -906,6 +938,9 @@ export declare const offeringsContract: {
|
|
|
906
938
|
startAt?: string | null | undefined;
|
|
907
939
|
endAt?: string | null | undefined;
|
|
908
940
|
cancellationPeriod?: number | null | undefined;
|
|
941
|
+
hasEscrow?: boolean | undefined;
|
|
942
|
+
bankAccountId?: string | null | undefined;
|
|
943
|
+
escrowAccountId?: string | null | undefined;
|
|
909
944
|
yield?: number | null | undefined;
|
|
910
945
|
duration?: number | null | undefined;
|
|
911
946
|
durationType?: import("../../..").DurationType | null | undefined;
|