@dalmore/api-contracts 0.0.0-dev.27db984 → 0.0.0-dev.2cea8e5

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 (33) hide show
  1. package/common/types/account-setting.types.d.ts +17 -66
  2. package/common/types/account-setting.types.js +2 -31
  3. package/common/types/account-setting.types.js.map +1 -1
  4. package/common/types/account.types.d.ts +32 -23
  5. package/common/types/account.types.js +1 -0
  6. package/common/types/account.types.js.map +1 -1
  7. package/common/types/activity.types.d.ts +8 -1
  8. package/common/types/activity.types.js +7 -0
  9. package/common/types/activity.types.js.map +1 -1
  10. package/common/types/cap-table.types.d.ts +14 -14
  11. package/common/types/common.types.d.ts +299 -1
  12. package/common/types/common.types.js +41 -1
  13. package/common/types/common.types.js.map +1 -1
  14. package/common/types/disbursements.types.d.ts +817 -0
  15. package/common/types/disbursements.types.js +63 -0
  16. package/common/types/disbursements.types.js.map +1 -1
  17. package/common/types/index.d.ts +1 -0
  18. package/common/types/index.js +1 -0
  19. package/common/types/index.js.map +1 -1
  20. package/common/types/issuer-offering.types.d.ts +145 -1
  21. package/common/types/issuer-offering.types.js +138 -2
  22. package/common/types/issuer-offering.types.js.map +1 -1
  23. package/common/types/offering.types.d.ts +215 -1
  24. package/common/types/offering.types.js +173 -3
  25. package/common/types/offering.types.js.map +1 -1
  26. package/common/types/trade.types.js +1 -0
  27. package/common/types/trade.types.js.map +1 -1
  28. package/common/types/user.types.d.ts +78 -59
  29. package/common/types/user.types.js +4 -1
  30. package/common/types/user.types.js.map +1 -1
  31. package/contracts/clients/index.d.ts +70 -0
  32. package/contracts/clients/offerings/index.d.ts +70 -0
  33. package/package.json +1 -1
@@ -9831,6 +9831,13 @@ export declare const clientsContract: {
9831
9831
  startAmount: number;
9832
9832
  endAmount: number;
9833
9833
  }>, "many">>;
9834
+ warrantsEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
9835
+ totalShares: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9836
+ warrantTermYears: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9837
+ exercisePrice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9838
+ warrantPercentage: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9839
+ calculationMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").WarrantSharesCalculationMethod>>>;
9840
+ incrementThreshold: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9834
9841
  }, "strip", import("zod").ZodTypeAny, {
9835
9842
  type?: import("../..").OfferingType | undefined;
9836
9843
  name?: string | undefined;
@@ -9853,6 +9860,13 @@ export declare const clientsContract: {
9853
9860
  escrowAgreementFileId?: string | null | undefined;
9854
9861
  bankAccountId?: string | null | undefined;
9855
9862
  escrowAccountId?: string | null | undefined;
9863
+ warrantsEnabled?: boolean | undefined;
9864
+ totalShares?: number | null | undefined;
9865
+ warrantTermYears?: number | null | undefined;
9866
+ exercisePrice?: number | null | undefined;
9867
+ warrantPercentage?: number | null | undefined;
9868
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
9869
+ incrementThreshold?: number | null | undefined;
9856
9870
  assetName?: string | undefined;
9857
9871
  assetType?: import("../..").AssetType | undefined;
9858
9872
  pricePerUnit?: number | null | undefined;
@@ -9891,6 +9905,13 @@ export declare const clientsContract: {
9891
9905
  escrowAgreementFileId?: string | null | undefined;
9892
9906
  bankAccountId?: string | null | undefined;
9893
9907
  escrowAccountId?: string | null | undefined;
9908
+ warrantsEnabled?: boolean | undefined;
9909
+ totalShares?: number | null | undefined;
9910
+ warrantTermYears?: number | null | undefined;
9911
+ exercisePrice?: number | null | undefined;
9912
+ warrantPercentage?: number | null | undefined;
9913
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
9914
+ incrementThreshold?: number | null | undefined;
9894
9915
  assetName?: string | undefined;
9895
9916
  assetType?: import("../..").AssetType | undefined;
9896
9917
  pricePerUnit?: number | null | undefined;
@@ -9929,6 +9950,13 @@ export declare const clientsContract: {
9929
9950
  escrowAgreementFileId?: string | null | undefined;
9930
9951
  bankAccountId?: string | null | undefined;
9931
9952
  escrowAccountId?: string | null | undefined;
9953
+ warrantsEnabled?: boolean | undefined;
9954
+ totalShares?: number | null | undefined;
9955
+ warrantTermYears?: number | null | undefined;
9956
+ exercisePrice?: number | null | undefined;
9957
+ warrantPercentage?: number | null | undefined;
9958
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
9959
+ incrementThreshold?: number | null | undefined;
9932
9960
  assetName?: string | undefined;
9933
9961
  assetType?: import("../..").AssetType | undefined;
9934
9962
  pricePerUnit?: number | null | undefined;
@@ -9967,6 +9995,13 @@ export declare const clientsContract: {
9967
9995
  escrowAgreementFileId?: string | null | undefined;
9968
9996
  bankAccountId?: string | null | undefined;
9969
9997
  escrowAccountId?: string | null | undefined;
9998
+ warrantsEnabled?: boolean | undefined;
9999
+ totalShares?: number | null | undefined;
10000
+ warrantTermYears?: number | null | undefined;
10001
+ exercisePrice?: number | null | undefined;
10002
+ warrantPercentage?: number | null | undefined;
10003
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10004
+ incrementThreshold?: number | null | undefined;
9970
10005
  assetName?: string | undefined;
9971
10006
  assetType?: import("../..").AssetType | undefined;
9972
10007
  pricePerUnit?: number | null | undefined;
@@ -10132,12 +10167,20 @@ export declare const clientsContract: {
10132
10167
  startAmount: number;
10133
10168
  endAmount: number;
10134
10169
  }>, "many">>;
10170
+ warrantsEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
10171
+ totalShares: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10172
+ warrantTermYears: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10173
+ exercisePrice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
10174
+ warrantPercentage: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
10175
+ calculationMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").WarrantSharesCalculationMethod>>>;
10176
+ incrementThreshold: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
10135
10177
  }, "strip", import("zod").ZodTypeAny, {
10136
10178
  type: import("../..").OfferingType;
10137
10179
  name: string;
10138
10180
  template: import("../../common/types/asset.types").AssetTemplateType;
10139
10181
  targetAmount: number;
10140
10182
  issuerId: string;
10183
+ warrantsEnabled: boolean;
10141
10184
  assetName: string;
10142
10185
  assetType: import("../..").AssetType;
10143
10186
  pricePerUnit: number | null;
@@ -10155,6 +10198,12 @@ export declare const clientsContract: {
10155
10198
  hasEscrow?: boolean | undefined;
10156
10199
  bankAccountId?: string | null | undefined;
10157
10200
  escrowAccountId?: string | null | undefined;
10201
+ totalShares?: number | null | undefined;
10202
+ warrantTermYears?: number | null | undefined;
10203
+ exercisePrice?: number | null | undefined;
10204
+ warrantPercentage?: number | null | undefined;
10205
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10206
+ incrementThreshold?: number | null | undefined;
10158
10207
  yield?: number | null | undefined;
10159
10208
  duration?: number | null | undefined;
10160
10209
  durationType?: import("../..").DurationType | null | undefined;
@@ -10190,6 +10239,13 @@ export declare const clientsContract: {
10190
10239
  hasEscrow?: boolean | undefined;
10191
10240
  bankAccountId?: string | null | undefined;
10192
10241
  escrowAccountId?: string | null | undefined;
10242
+ warrantsEnabled?: boolean | undefined;
10243
+ totalShares?: number | null | undefined;
10244
+ warrantTermYears?: number | null | undefined;
10245
+ exercisePrice?: number | null | undefined;
10246
+ warrantPercentage?: number | null | undefined;
10247
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10248
+ incrementThreshold?: number | null | undefined;
10193
10249
  yield?: number | null | undefined;
10194
10250
  duration?: number | null | undefined;
10195
10251
  durationType?: import("../..").DurationType | null | undefined;
@@ -10208,6 +10264,7 @@ export declare const clientsContract: {
10208
10264
  template: import("../../common/types/asset.types").AssetTemplateType;
10209
10265
  targetAmount: number;
10210
10266
  issuerId: string;
10267
+ warrantsEnabled: boolean;
10211
10268
  assetName: string;
10212
10269
  assetType: import("../..").AssetType;
10213
10270
  pricePerUnit: number | null;
@@ -10225,6 +10282,12 @@ export declare const clientsContract: {
10225
10282
  hasEscrow?: boolean | undefined;
10226
10283
  bankAccountId?: string | null | undefined;
10227
10284
  escrowAccountId?: string | null | undefined;
10285
+ totalShares?: number | null | undefined;
10286
+ warrantTermYears?: number | null | undefined;
10287
+ exercisePrice?: number | null | undefined;
10288
+ warrantPercentage?: number | null | undefined;
10289
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10290
+ incrementThreshold?: number | null | undefined;
10228
10291
  yield?: number | null | undefined;
10229
10292
  duration?: number | null | undefined;
10230
10293
  durationType?: import("../..").DurationType | null | undefined;
@@ -10260,6 +10323,13 @@ export declare const clientsContract: {
10260
10323
  hasEscrow?: boolean | undefined;
10261
10324
  bankAccountId?: string | null | undefined;
10262
10325
  escrowAccountId?: string | null | undefined;
10326
+ warrantsEnabled?: boolean | undefined;
10327
+ totalShares?: number | null | undefined;
10328
+ warrantTermYears?: number | null | undefined;
10329
+ exercisePrice?: number | null | undefined;
10330
+ warrantPercentage?: number | null | undefined;
10331
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10332
+ incrementThreshold?: number | null | undefined;
10263
10333
  yield?: number | null | undefined;
10264
10334
  duration?: number | null | undefined;
10265
10335
  durationType?: import("../..").DurationType | null | undefined;
@@ -480,6 +480,13 @@ export declare const offeringsContract: {
480
480
  startAmount: number;
481
481
  endAmount: number;
482
482
  }>, "many">>;
483
+ warrantsEnabled: z.ZodOptional<z.ZodBoolean>;
484
+ totalShares: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
485
+ warrantTermYears: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
486
+ exercisePrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
487
+ warrantPercentage: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
488
+ calculationMethod: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").WarrantSharesCalculationMethod>>>;
489
+ incrementThreshold: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
483
490
  }, "strip", z.ZodTypeAny, {
484
491
  type?: import("../../..").OfferingType | undefined;
485
492
  name?: string | undefined;
@@ -502,6 +509,13 @@ export declare const offeringsContract: {
502
509
  escrowAgreementFileId?: string | null | undefined;
503
510
  bankAccountId?: string | null | undefined;
504
511
  escrowAccountId?: string | null | undefined;
512
+ warrantsEnabled?: boolean | undefined;
513
+ totalShares?: number | null | undefined;
514
+ warrantTermYears?: number | null | undefined;
515
+ exercisePrice?: number | null | undefined;
516
+ warrantPercentage?: number | null | undefined;
517
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
518
+ incrementThreshold?: number | null | undefined;
505
519
  assetName?: string | undefined;
506
520
  assetType?: import("../../..").AssetType | undefined;
507
521
  pricePerUnit?: number | null | undefined;
@@ -540,6 +554,13 @@ export declare const offeringsContract: {
540
554
  escrowAgreementFileId?: string | null | undefined;
541
555
  bankAccountId?: string | null | undefined;
542
556
  escrowAccountId?: string | null | undefined;
557
+ warrantsEnabled?: boolean | undefined;
558
+ totalShares?: number | null | undefined;
559
+ warrantTermYears?: number | null | undefined;
560
+ exercisePrice?: number | null | undefined;
561
+ warrantPercentage?: number | null | undefined;
562
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
563
+ incrementThreshold?: number | null | undefined;
543
564
  assetName?: string | undefined;
544
565
  assetType?: import("../../..").AssetType | undefined;
545
566
  pricePerUnit?: number | null | undefined;
@@ -578,6 +599,13 @@ export declare const offeringsContract: {
578
599
  escrowAgreementFileId?: string | null | undefined;
579
600
  bankAccountId?: string | null | undefined;
580
601
  escrowAccountId?: string | null | undefined;
602
+ warrantsEnabled?: boolean | undefined;
603
+ totalShares?: number | null | undefined;
604
+ warrantTermYears?: number | null | undefined;
605
+ exercisePrice?: number | null | undefined;
606
+ warrantPercentage?: number | null | undefined;
607
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
608
+ incrementThreshold?: number | null | undefined;
581
609
  assetName?: string | undefined;
582
610
  assetType?: import("../../..").AssetType | undefined;
583
611
  pricePerUnit?: number | null | undefined;
@@ -616,6 +644,13 @@ export declare const offeringsContract: {
616
644
  escrowAgreementFileId?: string | null | undefined;
617
645
  bankAccountId?: string | null | undefined;
618
646
  escrowAccountId?: string | null | undefined;
647
+ warrantsEnabled?: boolean | undefined;
648
+ totalShares?: number | null | undefined;
649
+ warrantTermYears?: number | null | undefined;
650
+ exercisePrice?: number | null | undefined;
651
+ warrantPercentage?: number | null | undefined;
652
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
653
+ incrementThreshold?: number | null | undefined;
619
654
  assetName?: string | undefined;
620
655
  assetType?: import("../../..").AssetType | undefined;
621
656
  pricePerUnit?: number | null | undefined;
@@ -781,12 +816,20 @@ export declare const offeringsContract: {
781
816
  startAmount: number;
782
817
  endAmount: number;
783
818
  }>, "many">>;
819
+ warrantsEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
820
+ totalShares: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
821
+ warrantTermYears: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
822
+ exercisePrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
823
+ warrantPercentage: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
824
+ calculationMethod: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").WarrantSharesCalculationMethod>>>;
825
+ incrementThreshold: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
784
826
  }, "strip", z.ZodTypeAny, {
785
827
  type: import("../../..").OfferingType;
786
828
  name: string;
787
829
  template: import("../../../common/types/asset.types").AssetTemplateType;
788
830
  targetAmount: number;
789
831
  issuerId: string;
832
+ warrantsEnabled: boolean;
790
833
  assetName: string;
791
834
  assetType: import("../../..").AssetType;
792
835
  pricePerUnit: number | null;
@@ -804,6 +847,12 @@ export declare const offeringsContract: {
804
847
  hasEscrow?: boolean | undefined;
805
848
  bankAccountId?: string | null | undefined;
806
849
  escrowAccountId?: string | null | undefined;
850
+ totalShares?: number | null | undefined;
851
+ warrantTermYears?: number | null | undefined;
852
+ exercisePrice?: number | null | undefined;
853
+ warrantPercentage?: number | null | undefined;
854
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
855
+ incrementThreshold?: number | null | undefined;
807
856
  yield?: number | null | undefined;
808
857
  duration?: number | null | undefined;
809
858
  durationType?: import("../../..").DurationType | null | undefined;
@@ -839,6 +888,13 @@ export declare const offeringsContract: {
839
888
  hasEscrow?: boolean | undefined;
840
889
  bankAccountId?: string | null | undefined;
841
890
  escrowAccountId?: string | null | undefined;
891
+ warrantsEnabled?: boolean | undefined;
892
+ totalShares?: number | null | undefined;
893
+ warrantTermYears?: number | null | undefined;
894
+ exercisePrice?: number | null | undefined;
895
+ warrantPercentage?: number | null | undefined;
896
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
897
+ incrementThreshold?: number | null | undefined;
842
898
  yield?: number | null | undefined;
843
899
  duration?: number | null | undefined;
844
900
  durationType?: import("../../..").DurationType | null | undefined;
@@ -857,6 +913,7 @@ export declare const offeringsContract: {
857
913
  template: import("../../../common/types/asset.types").AssetTemplateType;
858
914
  targetAmount: number;
859
915
  issuerId: string;
916
+ warrantsEnabled: boolean;
860
917
  assetName: string;
861
918
  assetType: import("../../..").AssetType;
862
919
  pricePerUnit: number | null;
@@ -874,6 +931,12 @@ export declare const offeringsContract: {
874
931
  hasEscrow?: boolean | undefined;
875
932
  bankAccountId?: string | null | undefined;
876
933
  escrowAccountId?: string | null | undefined;
934
+ totalShares?: number | null | undefined;
935
+ warrantTermYears?: number | null | undefined;
936
+ exercisePrice?: number | null | undefined;
937
+ warrantPercentage?: number | null | undefined;
938
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
939
+ incrementThreshold?: number | null | undefined;
877
940
  yield?: number | null | undefined;
878
941
  duration?: number | null | undefined;
879
942
  durationType?: import("../../..").DurationType | null | undefined;
@@ -909,6 +972,13 @@ export declare const offeringsContract: {
909
972
  hasEscrow?: boolean | undefined;
910
973
  bankAccountId?: string | null | undefined;
911
974
  escrowAccountId?: string | null | undefined;
975
+ warrantsEnabled?: boolean | undefined;
976
+ totalShares?: number | null | undefined;
977
+ warrantTermYears?: number | null | undefined;
978
+ exercisePrice?: number | null | undefined;
979
+ warrantPercentage?: number | null | undefined;
980
+ calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
981
+ incrementThreshold?: number | null | undefined;
912
982
  yield?: number | null | undefined;
913
983
  duration?: number | null | undefined;
914
984
  durationType?: import("../../..").DurationType | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dalmore/api-contracts",
3
- "version": "0.0.0-dev.27db984",
3
+ "version": "0.0.0-dev.2cea8e5",
4
4
  "description": "Type-safe API contracts for Dalmore Client Portal",
5
5
  "type": "module",
6
6
  "main": "./index.js",