@dalmore/api-contracts 0.0.0-dev.685c0b3 → 0.0.0-dev.73ad209
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/account-setting.types.d.ts +64 -0
- package/common/types/account-setting.types.js +8 -0
- package/common/types/account-setting.types.js.map +1 -1
- package/common/types/account.types.d.ts +38 -2
- package/common/types/account.types.js +3 -0
- package/common/types/account.types.js.map +1 -1
- package/common/types/activity.types.d.ts +25 -24
- package/common/types/activity.types.js +2 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/asset.types.d.ts +298 -0
- package/common/types/asset.types.js +191 -42
- package/common/types/asset.types.js.map +1 -1
- package/common/types/auth.types.d.ts +1 -1
- package/common/types/auth.types.js +1 -1
- package/common/types/auth.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +45 -4
- package/common/types/bonus-tier.types.js +15 -7
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/cap-table.types.d.ts +8 -8
- package/common/types/common.types.d.ts +19 -2
- package/common/types/common.types.js +12 -0
- package/common/types/common.types.js.map +1 -1
- package/common/types/comply-advantage-api.types.d.ts +133 -466
- package/common/types/comply-advantage-api.types.js +24 -3
- package/common/types/comply-advantage-api.types.js.map +1 -1
- package/common/types/dashboard.types.d.ts +7 -7
- package/common/types/data-record.types.d.ts +4 -4
- package/common/types/disbursements.types.d.ts +596 -392
- package/common/types/disbursements.types.js +37 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/file.types.d.ts +9 -9
- package/common/types/investor-account.types.d.ts +4 -4
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +723 -2
- package/common/types/issuer-offering.types.js +134 -3
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/job-item.types.d.ts +14 -14
- package/common/types/note.types.d.ts +15 -15
- package/common/types/offering.types.d.ts +241 -1
- package/common/types/offering.types.js +107 -10
- package/common/types/offering.types.js.map +1 -1
- package/common/types/signer.types.d.ts +23 -11
- package/common/types/signer.types.js +16 -1
- package/common/types/signer.types.js.map +1 -1
- package/common/types/site.types.d.ts +20 -0
- package/common/types/task.types.d.ts +22 -22
- package/common/types/trade-line-item.types.d.ts +18 -1
- package/common/types/trade-line-item.types.js +12 -1
- package/common/types/trade-line-item.types.js.map +1 -1
- package/common/types/trade.types.d.ts +62 -45
- package/common/types/trade.types.js +11 -4
- package/common/types/trade.types.js.map +1 -1
- package/common/types/transaction.types.d.ts +80 -1
- package/common/types/transaction.types.js +22 -2
- package/common/types/transaction.types.js.map +1 -1
- package/common/types/user.types.d.ts +5 -0
- package/common/types/user.types.js +1 -0
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +88 -0
- package/contracts/clients/files/index.d.ts +3 -3
- package/contracts/clients/files-public/index.d.ts +3 -3
- package/contracts/clients/index.d.ts +360 -10
- package/contracts/clients/offerings/index.d.ts +257 -1
- package/contracts/clients/trades/index.d.ts +9 -3
- package/package.json +1 -1
|
@@ -412,7 +412,7 @@ export declare const offeringsContract: {
|
|
|
412
412
|
metadata: {
|
|
413
413
|
auth: boolean;
|
|
414
414
|
};
|
|
415
|
-
body: z.ZodObject<{
|
|
415
|
+
body: z.ZodEffects<z.ZodObject<{
|
|
416
416
|
name: z.ZodOptional<z.ZodString>;
|
|
417
417
|
type: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").OfferingType>>;
|
|
418
418
|
targetAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -440,6 +440,50 @@ 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.ZodString>>;
|
|
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>>>>;
|
|
447
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
448
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
449
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
450
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
451
|
+
bonusTiers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
452
|
+
type: z.ZodNativeEnum<typeof import("../../../common/types/bonus-tier.types").BonusType>;
|
|
453
|
+
value: z.ZodEffects<z.ZodNumber, number, number>;
|
|
454
|
+
startAmount: z.ZodEffects<z.ZodNumber, number, number>;
|
|
455
|
+
endAmount: z.ZodEffects<z.ZodNumber, number, number>;
|
|
456
|
+
}, "strip", z.ZodTypeAny, {
|
|
457
|
+
value: number;
|
|
458
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
459
|
+
startAmount: number;
|
|
460
|
+
endAmount: number;
|
|
461
|
+
}, {
|
|
462
|
+
value: number;
|
|
463
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
464
|
+
startAmount: number;
|
|
465
|
+
endAmount: number;
|
|
466
|
+
}>, {
|
|
467
|
+
value: number;
|
|
468
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
469
|
+
startAmount: number;
|
|
470
|
+
endAmount: number;
|
|
471
|
+
}, {
|
|
472
|
+
value: number;
|
|
473
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
474
|
+
startAmount: number;
|
|
475
|
+
endAmount: number;
|
|
476
|
+
}>, {
|
|
477
|
+
value: number;
|
|
478
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
479
|
+
startAmount: number;
|
|
480
|
+
endAmount: number;
|
|
481
|
+
}, {
|
|
482
|
+
value: number;
|
|
483
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
484
|
+
startAmount: number;
|
|
485
|
+
endAmount: number;
|
|
486
|
+
}>, "many">>;
|
|
443
487
|
}, "strip", z.ZodTypeAny, {
|
|
444
488
|
type?: import("../../..").OfferingType | undefined;
|
|
445
489
|
name?: string | undefined;
|
|
@@ -459,6 +503,10 @@ export declare const offeringsContract: {
|
|
|
459
503
|
memorandumId?: string | null | undefined;
|
|
460
504
|
subscriptionAgreementId?: string | null | undefined;
|
|
461
505
|
showTotalRaised?: boolean | undefined;
|
|
506
|
+
hasEscrow?: boolean | undefined;
|
|
507
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
508
|
+
bankAccountId?: string | null | undefined;
|
|
509
|
+
escrowAccountId?: string | null | undefined;
|
|
462
510
|
assetName?: string | undefined;
|
|
463
511
|
assetType?: import("../../..").AssetType | undefined;
|
|
464
512
|
pricePerUnit?: number | null | undefined;
|
|
@@ -468,6 +516,16 @@ export declare const offeringsContract: {
|
|
|
468
516
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
469
517
|
tiers?: number[] | null | undefined;
|
|
470
518
|
enableBonus?: boolean | undefined;
|
|
519
|
+
principalAmount?: number | null | undefined;
|
|
520
|
+
maxTotalRaise?: number | null | undefined;
|
|
521
|
+
interestRate?: number | null | undefined;
|
|
522
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
523
|
+
bonusTiers?: {
|
|
524
|
+
value: number;
|
|
525
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
526
|
+
startAmount: number;
|
|
527
|
+
endAmount: number;
|
|
528
|
+
}[] | undefined;
|
|
471
529
|
}, {
|
|
472
530
|
type?: import("../../..").OfferingType | undefined;
|
|
473
531
|
name?: string | undefined;
|
|
@@ -487,6 +545,52 @@ export declare const offeringsContract: {
|
|
|
487
545
|
memorandumId?: string | null | undefined;
|
|
488
546
|
subscriptionAgreementId?: string | null | undefined;
|
|
489
547
|
showTotalRaised?: boolean | undefined;
|
|
548
|
+
hasEscrow?: boolean | undefined;
|
|
549
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
550
|
+
bankAccountId?: string | null | undefined;
|
|
551
|
+
escrowAccountId?: string | null | undefined;
|
|
552
|
+
assetName?: string | undefined;
|
|
553
|
+
assetType?: import("../../..").AssetType | undefined;
|
|
554
|
+
pricePerUnit?: number | null | undefined;
|
|
555
|
+
totalUnits?: number | null | undefined;
|
|
556
|
+
yield?: number | null | undefined;
|
|
557
|
+
duration?: number | null | undefined;
|
|
558
|
+
durationType?: import("../../..").DurationType | null | undefined;
|
|
559
|
+
tiers?: number[] | null | undefined;
|
|
560
|
+
enableBonus?: boolean | undefined;
|
|
561
|
+
principalAmount?: number | null | undefined;
|
|
562
|
+
maxTotalRaise?: number | null | undefined;
|
|
563
|
+
interestRate?: number | null | undefined;
|
|
564
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
565
|
+
bonusTiers?: {
|
|
566
|
+
value: number;
|
|
567
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
568
|
+
startAmount: number;
|
|
569
|
+
endAmount: number;
|
|
570
|
+
}[] | undefined;
|
|
571
|
+
}>, {
|
|
572
|
+
type?: import("../../..").OfferingType | undefined;
|
|
573
|
+
name?: string | undefined;
|
|
574
|
+
managedBy?: import("../../..").ManagedByType | undefined;
|
|
575
|
+
description?: string | null | undefined;
|
|
576
|
+
enabled?: boolean | undefined;
|
|
577
|
+
template?: import("../../../common/types/asset.types").AssetTemplateType | null | undefined;
|
|
578
|
+
coverArtId?: string | null | undefined;
|
|
579
|
+
targetAmount?: number | undefined;
|
|
580
|
+
minInvestment?: number | null | undefined;
|
|
581
|
+
maxInvestment?: number | null | undefined;
|
|
582
|
+
contingencyAmount?: number | null | undefined;
|
|
583
|
+
startAt?: Date | null | undefined;
|
|
584
|
+
endAt?: Date | null | undefined;
|
|
585
|
+
issuerId?: string | undefined;
|
|
586
|
+
cancellationPeriod?: number | null | undefined;
|
|
587
|
+
memorandumId?: string | null | undefined;
|
|
588
|
+
subscriptionAgreementId?: string | null | undefined;
|
|
589
|
+
showTotalRaised?: boolean | undefined;
|
|
590
|
+
hasEscrow?: boolean | undefined;
|
|
591
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
592
|
+
bankAccountId?: string | null | undefined;
|
|
593
|
+
escrowAccountId?: string | null | undefined;
|
|
490
594
|
assetName?: string | undefined;
|
|
491
595
|
assetType?: import("../../..").AssetType | undefined;
|
|
492
596
|
pricePerUnit?: number | null | undefined;
|
|
@@ -496,6 +600,58 @@ export declare const offeringsContract: {
|
|
|
496
600
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
497
601
|
tiers?: number[] | null | undefined;
|
|
498
602
|
enableBonus?: boolean | undefined;
|
|
603
|
+
principalAmount?: number | null | undefined;
|
|
604
|
+
maxTotalRaise?: number | null | undefined;
|
|
605
|
+
interestRate?: number | null | undefined;
|
|
606
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
607
|
+
bonusTiers?: {
|
|
608
|
+
value: number;
|
|
609
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
610
|
+
startAmount: number;
|
|
611
|
+
endAmount: number;
|
|
612
|
+
}[] | undefined;
|
|
613
|
+
}, {
|
|
614
|
+
type?: import("../../..").OfferingType | undefined;
|
|
615
|
+
name?: string | undefined;
|
|
616
|
+
managedBy?: import("../../..").ManagedByType | undefined;
|
|
617
|
+
description?: string | null | undefined;
|
|
618
|
+
enabled?: boolean | undefined;
|
|
619
|
+
template?: import("../../../common/types/asset.types").AssetTemplateType | null | undefined;
|
|
620
|
+
coverArtId?: string | null | undefined;
|
|
621
|
+
targetAmount?: number | undefined;
|
|
622
|
+
minInvestment?: number | null | undefined;
|
|
623
|
+
maxInvestment?: number | null | undefined;
|
|
624
|
+
contingencyAmount?: number | null | undefined;
|
|
625
|
+
startAt?: string | null | undefined;
|
|
626
|
+
endAt?: string | null | undefined;
|
|
627
|
+
issuerId?: string | undefined;
|
|
628
|
+
cancellationPeriod?: number | null | undefined;
|
|
629
|
+
memorandumId?: string | null | undefined;
|
|
630
|
+
subscriptionAgreementId?: string | null | undefined;
|
|
631
|
+
showTotalRaised?: boolean | undefined;
|
|
632
|
+
hasEscrow?: boolean | undefined;
|
|
633
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
634
|
+
bankAccountId?: string | null | undefined;
|
|
635
|
+
escrowAccountId?: string | null | undefined;
|
|
636
|
+
assetName?: string | undefined;
|
|
637
|
+
assetType?: import("../../..").AssetType | undefined;
|
|
638
|
+
pricePerUnit?: number | null | undefined;
|
|
639
|
+
totalUnits?: number | null | undefined;
|
|
640
|
+
yield?: number | null | undefined;
|
|
641
|
+
duration?: number | null | undefined;
|
|
642
|
+
durationType?: import("../../..").DurationType | null | undefined;
|
|
643
|
+
tiers?: number[] | null | undefined;
|
|
644
|
+
enableBonus?: boolean | undefined;
|
|
645
|
+
principalAmount?: number | null | undefined;
|
|
646
|
+
maxTotalRaise?: number | null | undefined;
|
|
647
|
+
interestRate?: number | null | undefined;
|
|
648
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
649
|
+
bonusTiers?: {
|
|
650
|
+
value: number;
|
|
651
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
652
|
+
startAmount: number;
|
|
653
|
+
endAmount: number;
|
|
654
|
+
}[] | undefined;
|
|
499
655
|
}>;
|
|
500
656
|
pathParams: z.ZodObject<{
|
|
501
657
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -605,6 +761,50 @@ export declare const offeringsContract: {
|
|
|
605
761
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
606
762
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
607
763
|
enableBonus: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
764
|
+
hasEscrow: z.ZodOptional<z.ZodBoolean>;
|
|
765
|
+
escrowAgreementFileId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
766
|
+
bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
767
|
+
escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
768
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
769
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
770
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
771
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
772
|
+
bonusTiers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
773
|
+
type: z.ZodNativeEnum<typeof import("../../../common/types/bonus-tier.types").BonusType>;
|
|
774
|
+
value: z.ZodEffects<z.ZodNumber, number, number>;
|
|
775
|
+
startAmount: z.ZodEffects<z.ZodNumber, number, number>;
|
|
776
|
+
endAmount: z.ZodEffects<z.ZodNumber, number, number>;
|
|
777
|
+
}, "strip", z.ZodTypeAny, {
|
|
778
|
+
value: number;
|
|
779
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
780
|
+
startAmount: number;
|
|
781
|
+
endAmount: number;
|
|
782
|
+
}, {
|
|
783
|
+
value: number;
|
|
784
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
785
|
+
startAmount: number;
|
|
786
|
+
endAmount: number;
|
|
787
|
+
}>, {
|
|
788
|
+
value: number;
|
|
789
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
790
|
+
startAmount: number;
|
|
791
|
+
endAmount: number;
|
|
792
|
+
}, {
|
|
793
|
+
value: number;
|
|
794
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
795
|
+
startAmount: number;
|
|
796
|
+
endAmount: number;
|
|
797
|
+
}>, {
|
|
798
|
+
value: number;
|
|
799
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
800
|
+
startAmount: number;
|
|
801
|
+
endAmount: number;
|
|
802
|
+
}, {
|
|
803
|
+
value: number;
|
|
804
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
805
|
+
startAmount: number;
|
|
806
|
+
endAmount: number;
|
|
807
|
+
}>, "many">>;
|
|
608
808
|
}, "strip", z.ZodTypeAny, {
|
|
609
809
|
type: import("../../..").OfferingType;
|
|
610
810
|
name: string;
|
|
@@ -625,11 +825,25 @@ export declare const offeringsContract: {
|
|
|
625
825
|
startAt?: Date | null | undefined;
|
|
626
826
|
endAt?: Date | null | undefined;
|
|
627
827
|
cancellationPeriod?: number | null | undefined;
|
|
828
|
+
hasEscrow?: boolean | undefined;
|
|
829
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
830
|
+
bankAccountId?: string | null | undefined;
|
|
831
|
+
escrowAccountId?: string | null | undefined;
|
|
628
832
|
yield?: number | null | undefined;
|
|
629
833
|
duration?: number | null | undefined;
|
|
630
834
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
631
835
|
tiers?: number[] | null | undefined;
|
|
632
836
|
enableBonus?: boolean | undefined;
|
|
837
|
+
principalAmount?: number | null | undefined;
|
|
838
|
+
maxTotalRaise?: number | null | undefined;
|
|
839
|
+
interestRate?: number | null | undefined;
|
|
840
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
841
|
+
bonusTiers?: {
|
|
842
|
+
value: number;
|
|
843
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
844
|
+
startAmount: number;
|
|
845
|
+
endAmount: number;
|
|
846
|
+
}[] | undefined;
|
|
633
847
|
}, {
|
|
634
848
|
type: import("../../..").OfferingType;
|
|
635
849
|
name: string;
|
|
@@ -650,11 +864,25 @@ export declare const offeringsContract: {
|
|
|
650
864
|
startAt?: string | null | undefined;
|
|
651
865
|
endAt?: string | null | undefined;
|
|
652
866
|
cancellationPeriod?: number | null | undefined;
|
|
867
|
+
hasEscrow?: boolean | undefined;
|
|
868
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
869
|
+
bankAccountId?: string | null | undefined;
|
|
870
|
+
escrowAccountId?: string | null | undefined;
|
|
653
871
|
yield?: number | null | undefined;
|
|
654
872
|
duration?: number | null | undefined;
|
|
655
873
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
656
874
|
tiers?: number[] | null | undefined;
|
|
657
875
|
enableBonus?: boolean | undefined;
|
|
876
|
+
principalAmount?: number | null | undefined;
|
|
877
|
+
maxTotalRaise?: number | null | undefined;
|
|
878
|
+
interestRate?: number | null | undefined;
|
|
879
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
880
|
+
bonusTiers?: {
|
|
881
|
+
value: number;
|
|
882
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
883
|
+
startAmount: number;
|
|
884
|
+
endAmount: number;
|
|
885
|
+
}[] | undefined;
|
|
658
886
|
}>, {
|
|
659
887
|
type: import("../../..").OfferingType;
|
|
660
888
|
name: string;
|
|
@@ -675,11 +903,25 @@ export declare const offeringsContract: {
|
|
|
675
903
|
startAt?: Date | null | undefined;
|
|
676
904
|
endAt?: Date | null | undefined;
|
|
677
905
|
cancellationPeriod?: number | null | undefined;
|
|
906
|
+
hasEscrow?: boolean | undefined;
|
|
907
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
908
|
+
bankAccountId?: string | null | undefined;
|
|
909
|
+
escrowAccountId?: string | null | undefined;
|
|
678
910
|
yield?: number | null | undefined;
|
|
679
911
|
duration?: number | null | undefined;
|
|
680
912
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
681
913
|
tiers?: number[] | null | undefined;
|
|
682
914
|
enableBonus?: boolean | undefined;
|
|
915
|
+
principalAmount?: number | null | undefined;
|
|
916
|
+
maxTotalRaise?: number | null | undefined;
|
|
917
|
+
interestRate?: number | null | undefined;
|
|
918
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
919
|
+
bonusTiers?: {
|
|
920
|
+
value: number;
|
|
921
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
922
|
+
startAmount: number;
|
|
923
|
+
endAmount: number;
|
|
924
|
+
}[] | undefined;
|
|
683
925
|
}, {
|
|
684
926
|
type: import("../../..").OfferingType;
|
|
685
927
|
name: string;
|
|
@@ -700,11 +942,25 @@ export declare const offeringsContract: {
|
|
|
700
942
|
startAt?: string | null | undefined;
|
|
701
943
|
endAt?: string | null | undefined;
|
|
702
944
|
cancellationPeriod?: number | null | undefined;
|
|
945
|
+
hasEscrow?: boolean | undefined;
|
|
946
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
947
|
+
bankAccountId?: string | null | undefined;
|
|
948
|
+
escrowAccountId?: string | null | undefined;
|
|
703
949
|
yield?: number | null | undefined;
|
|
704
950
|
duration?: number | null | undefined;
|
|
705
951
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
706
952
|
tiers?: number[] | null | undefined;
|
|
707
953
|
enableBonus?: boolean | undefined;
|
|
954
|
+
principalAmount?: number | null | undefined;
|
|
955
|
+
maxTotalRaise?: number | null | undefined;
|
|
956
|
+
interestRate?: number | null | undefined;
|
|
957
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
958
|
+
bonusTiers?: {
|
|
959
|
+
value: number;
|
|
960
|
+
type: import("../../../common/types/bonus-tier.types").BonusType;
|
|
961
|
+
startAmount: number;
|
|
962
|
+
endAmount: number;
|
|
963
|
+
}[] | undefined;
|
|
708
964
|
}>;
|
|
709
965
|
summary: "[ADMIN] Create offering";
|
|
710
966
|
path: "offerings";
|
|
@@ -294,7 +294,9 @@ export declare const tradesContract: {
|
|
|
294
294
|
offeringId: z.ZodNullable<z.ZodString>;
|
|
295
295
|
tid: z.ZodNullable<z.ZodString>;
|
|
296
296
|
investmentType: z.ZodNativeEnum<typeof import("../../..").InvestmentType>;
|
|
297
|
-
|
|
297
|
+
purchasedShares: z.ZodNumber;
|
|
298
|
+
bonusShares: z.ZodNullable<z.ZodNumber>;
|
|
299
|
+
totalNumberOfShares: z.ZodNumber;
|
|
298
300
|
pricePerShare: z.ZodNumber;
|
|
299
301
|
totalAmount: z.ZodNullable<z.ZodNumber>;
|
|
300
302
|
tradeStatus: z.ZodNativeEnum<typeof import("../../..").TradeStatus>;
|
|
@@ -313,7 +315,9 @@ export declare const tradesContract: {
|
|
|
313
315
|
investorAccountId: string | null;
|
|
314
316
|
paymentMethodId: string | null;
|
|
315
317
|
investmentType: import("../../..").InvestmentType;
|
|
316
|
-
|
|
318
|
+
purchasedShares: number;
|
|
319
|
+
bonusShares: number | null;
|
|
320
|
+
totalNumberOfShares: number;
|
|
317
321
|
pricePerShare: number;
|
|
318
322
|
totalAmount: number | null;
|
|
319
323
|
tradeStatusUnmapped: string | null;
|
|
@@ -331,7 +335,9 @@ export declare const tradesContract: {
|
|
|
331
335
|
investorAccountId: string | null;
|
|
332
336
|
paymentMethodId: string | null;
|
|
333
337
|
investmentType: import("../../..").InvestmentType;
|
|
334
|
-
|
|
338
|
+
purchasedShares: number;
|
|
339
|
+
bonusShares: number | null;
|
|
340
|
+
totalNumberOfShares: number;
|
|
335
341
|
pricePerShare: number;
|
|
336
342
|
totalAmount: number | null;
|
|
337
343
|
tradeStatusUnmapped: string | null;
|