@rundit-sdk/embed 0.1.0 → 0.1.2

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/dist/index.d.ts CHANGED
@@ -25,17 +25,17 @@ export interface CreateEmbedClientOptions {
25
25
  export interface SdkCompanyDto {
26
26
  id: number
27
27
  name: string
28
- type?: string
29
- legalName?: string
30
- status?: string
31
- websiteUrl?: string
28
+ type?: string | null
29
+ legalName?: string | null
30
+ status?: string | null
31
+ websiteUrl?: string | null
32
32
  companyGroupIds?: number[]
33
33
  }
34
34
 
35
35
  export interface SdkCompanyGroupDto {
36
36
  id: number
37
37
  name: string
38
- currency?: string
38
+ currency?: string | null
39
39
  companyIds?: number[]
40
40
  companies?: SdkCompanyDto[]
41
41
  }
@@ -43,7 +43,7 @@ export interface SdkCompanyGroupDto {
43
43
  export interface SdkCompanyReferenceDto {
44
44
  id: number
45
45
  name: string
46
- type?: string
46
+ type?: string | null
47
47
  }
48
48
 
49
49
  export interface SdkCompanyGroupReferenceDto {
@@ -58,8 +58,10 @@ export interface SdkFairValueItemDto {
58
58
  type: "Auction" | "ConvertibleNote" | "ConvertToEquity" | "Dividend" | "EquityInvestment" | "EquityReceived" | "Extend" | "FutureEquityAgreement" | "Insolvency" | "IPO" | "LimitedAuction" | "OptionsReceived" | "OtherExit" | "OtherInvestment" | "OtherRealization" | "Payback" | "Proprietary" | "TradeSale" | "ValuationChange" | "WriteOff"
59
59
  }
60
60
 
61
+ export type InvestorType = "organization" | "individual"
62
+
61
63
  export interface SdkSignificantInvestorDto {
62
- investorType: { }
64
+ investorType: InvestorType
63
65
  name: string
64
66
  lastName?: string
65
67
  email?: string
@@ -70,46 +72,46 @@ export interface SdkFundingRoundInfoDto {
70
72
  roundType?: "poc" | "pre-seed" | "seed" | "late-seed" | "seed-extension" | "pre-series-a-round" | "bridge-round" | "a-round" | "b-round" | "c-round" | "d-round-plus" | "d-round" | "e-round" | "f-round" | "g-round" | "h-round" | "i-round" | "j-round" | "k-round" | "l-round" | "m-round" | "n-round"
71
73
  roleInRound?: "lead" | "co-lead" | "minority-co-investor" | "did-not-participate"
72
74
  significantInvestors?: SdkSignificantInvestorDto[]
73
- roundSize?: number
74
- totalFundingRaised?: number
75
+ roundSize?: number | null
76
+ totalFundingRaised?: number | null
75
77
  }
76
78
 
77
79
  export interface SdkCompanyPositionDto {
78
80
  companyId: number
79
- companyGroupId?: number
81
+ companyGroupId?: number | null
80
82
  company?: SdkCompanyReferenceDto
81
83
  companyGroup?: SdkCompanyGroupReferenceDto
82
- investmentStatus?: string
84
+ investmentStatus?: string | null
83
85
  invested: number
84
- ownership?: number
85
- companyValuation?: number
86
+ ownership?: number | null
87
+ companyValuation?: number | null
86
88
  sharesOwnedTotal: number
87
- pricePerShare?: number
89
+ pricePerShare?: number | null
88
90
  sharesIssuedTotalDiluted: number
89
91
  sharesIssuedTotalCurrent: number
90
- fairValueWithoutEquity?: number
91
- fairValue?: number
92
- customSummaryFairValue?: number
93
- askFairValue?: boolean
94
- xirr?: number
95
- roi?: number
96
- realized?: number
97
- investments?: number
92
+ fairValueWithoutEquity?: number | null
93
+ fairValue?: number | null
94
+ customSummaryFairValue?: number | null
95
+ askFairValue?: boolean | null
96
+ xirr?: number | null
97
+ roi?: number | null
98
+ realized?: number | null
99
+ investments?: number | null
98
100
  defaultFairValueItems?: SdkFairValueItemDto[]
99
- totalProfits?: number
100
- exitProfits?: number
101
- equityFairValue?: number
102
- multiple?: number
101
+ totalProfits?: number | null
102
+ exitProfits?: number | null
103
+ equityFairValue?: number | null
104
+ multiple?: number | null
103
105
  roundInfo?: SdkFundingRoundInfoDto
104
106
  valuationMethod?: "Historical" | "NewFinancingRound" | "PubliclyListedSecurity" | "Realization" | "RecentTransactionMultiples" | "RecentMarketMultiples" | "RecentMarketAndTransactionMultiples" | "DiscountToPrimaryRound" | "ThirdPartyOpinion" | "Dcf" | "Other"
105
- totalFundingRaised?: number
106
- averageInvestmentAmount?: number
107
- investedInitial?: number
108
- investedFollowOn?: number
109
- dateOfInitialInvestment?: string
107
+ totalFundingRaised?: number | null
108
+ averageInvestmentAmount?: number | null
109
+ investedInitial?: number | null
110
+ investedFollowOn?: number | null
111
+ dateOfInitialInvestment?: string | null
110
112
  initialInvestmentStage?: "poc" | "pre-seed" | "seed" | "late-seed" | "seed-extension" | "pre-series-a-round" | "bridge-round" | "a-round" | "b-round" | "c-round" | "d-round-plus" | "d-round" | "e-round" | "f-round" | "g-round" | "h-round" | "i-round" | "j-round" | "k-round" | "l-round" | "m-round" | "n-round"
111
- latestInvestment?: number
112
- dateOfLatestInvestment?: string
113
+ latestInvestment?: number | null
114
+ dateOfLatestInvestment?: string | null
113
115
  currentStage?: "poc" | "pre-seed" | "seed" | "late-seed" | "seed-extension" | "pre-series-a-round" | "bridge-round" | "a-round" | "b-round" | "c-round" | "d-round-plus" | "d-round" | "e-round" | "f-round" | "g-round" | "h-round" | "i-round" | "j-round" | "k-round" | "l-round" | "m-round" | "n-round"
114
116
  currency: string
115
117
  date: string
@@ -119,41 +121,41 @@ export interface SdkPortfolioPositionDto {
119
121
  companyIds?: number[]
120
122
  currency: string
121
123
  date: string
122
- fairValue?: number
123
- invested?: number
124
- multiple?: number
125
- ownership?: number
126
- realized?: number
127
- xirr?: number
128
- fvPlusRealized?: number
129
- totalFundingRaised?: number
130
- valuation?: number
131
- investments?: number
132
- realizations?: number
133
- roi?: number
124
+ fairValue?: number | null
125
+ invested?: number | null
126
+ multiple?: number | null
127
+ ownership?: number | null
128
+ realized?: number | null
129
+ xirr?: number | null
130
+ fvPlusRealized?: number | null
131
+ totalFundingRaised?: number | null
132
+ valuation?: number | null
133
+ investments?: number | null
134
+ realizations?: number | null
135
+ roi?: number | null
134
136
  numberOfActiveCompanies: number
135
137
  numberOfFullyExitedCompanies: number
136
- investedEquity?: number
137
- investedSAFE?: number
138
- investedConvertibleNote?: number
139
- investedInitial?: number
140
- investedFollowOn?: number
138
+ investedEquity?: number | null
139
+ investedSAFE?: number | null
140
+ investedConvertibleNote?: number | null
141
+ investedInitial?: number | null
142
+ investedFollowOn?: number | null
141
143
  numberOfCompanies: number
142
- averageInvestmentAmount?: number
144
+ averageInvestmentAmount?: number | null
143
145
  }
144
146
 
145
147
  export interface SdkTransactionDto {
146
148
  id: number
147
149
  companyId: number
148
- companyGroupId?: number
150
+ companyGroupId?: number | null
149
151
  company?: SdkCompanyReferenceDto
150
152
  companyGroup?: SdkCompanyGroupReferenceDto
151
153
  type: string
152
- name?: string
154
+ name?: string | null
153
155
  date: string
154
- amount?: number
155
- fairValue?: number
156
- currency?: string
156
+ amount?: number | null
157
+ fairValue?: number | null
158
+ currency?: string | null
157
159
  children?: SdkTransactionDto[]
158
160
  }
159
161
 
package/dist/index.js CHANGED
@@ -196,6 +196,15 @@ function normalizeBaseUrl(baseUrl) {
196
196
  return baseUrl.replace(/\/+$/, '')
197
197
  }
198
198
 
199
+ function shouldSendNgrokBypassHeader(baseUrl) {
200
+ try {
201
+ const { hostname } = new URL(baseUrl)
202
+ return hostname.includes('ngrok')
203
+ } catch {
204
+ return false
205
+ }
206
+ }
207
+
199
208
  function interpolatePath(pathTemplate, pathParams = {}) {
200
209
  return pathTemplate.replace(/:([A-Za-z0-9_]+)/g, (_, key) => {
201
210
  const value = pathParams[key]
@@ -249,8 +258,10 @@ async function parseResponse(response) {
249
258
  function createRequester(options) {
250
259
  const fetchImplementation = resolveFetch(options.fetch)
251
260
  const baseUrl = normalizeBaseUrl(options.baseUrl)
261
+ const shouldBypassNgrokBrowserWarning = shouldSendNgrokBypassHeader(baseUrl)
252
262
  const defaultHeaders = {
253
263
  Accept: 'application/json',
264
+ ...(shouldBypassNgrokBrowserWarning ? { 'ngrok-skip-browser-warning': '69420' } : {}),
254
265
  ...options.headers,
255
266
  "Authorization": `Bearer ${options.token}`,
256
267
  }
package/openapi.json CHANGED
@@ -501,19 +501,23 @@
501
501
  },
502
502
  "type": {
503
503
  "type": "string",
504
- "description": "Company type"
504
+ "description": "Company type",
505
+ "nullable": true
505
506
  },
506
507
  "legalName": {
507
508
  "type": "string",
508
- "description": "Legal company name"
509
+ "description": "Legal company name",
510
+ "nullable": true
509
511
  },
510
512
  "status": {
511
513
  "type": "string",
512
- "description": "Company lifecycle status"
514
+ "description": "Company lifecycle status",
515
+ "nullable": true
513
516
  },
514
517
  "websiteUrl": {
515
518
  "type": "string",
516
- "description": "Company website URL"
519
+ "description": "Company website URL",
520
+ "nullable": true
517
521
  },
518
522
  "companyGroupIds": {
519
523
  "description": "Accessible company group identifiers",
@@ -541,7 +545,8 @@
541
545
  },
542
546
  "currency": {
543
547
  "type": "string",
544
- "description": "Group currency code"
548
+ "description": "Group currency code",
549
+ "nullable": true
545
550
  },
546
551
  "companyIds": {
547
552
  "description": "Company identifiers associated with the group",
@@ -576,7 +581,8 @@
576
581
  },
577
582
  "type": {
578
583
  "type": "string",
579
- "description": "Company type"
584
+ "description": "Company type",
585
+ "nullable": true
580
586
  }
581
587
  },
582
588
  "required": [
@@ -650,12 +656,24 @@
650
656
  "type"
651
657
  ]
652
658
  },
659
+ "InvestorType": {
660
+ "type": "string",
661
+ "enum": [
662
+ "organization",
663
+ "individual"
664
+ ],
665
+ "description": "Investor type"
666
+ },
653
667
  "SdkSignificantInvestorDto": {
654
668
  "type": "object",
655
669
  "properties": {
656
670
  "investorType": {
657
- "type": "object",
658
- "description": "Investor type"
671
+ "description": "Investor type",
672
+ "allOf": [
673
+ {
674
+ "$ref": "#/components/schemas/InvestorType"
675
+ }
676
+ ]
659
677
  },
660
678
  "name": {
661
679
  "type": "string",
@@ -708,7 +726,8 @@
708
726
  "l-round",
709
727
  "m-round",
710
728
  "n-round"
711
- ]
729
+ ],
730
+ "nullable": true
712
731
  },
713
732
  "roleInRound": {
714
733
  "type": "string",
@@ -718,7 +737,8 @@
718
737
  "co-lead",
719
738
  "minority-co-investor",
720
739
  "did-not-participate"
721
- ]
740
+ ],
741
+ "nullable": true
722
742
  },
723
743
  "significantInvestors": {
724
744
  "description": "Significant investors in the round",
@@ -729,11 +749,13 @@
729
749
  },
730
750
  "roundSize": {
731
751
  "type": "number",
732
- "description": "Round size"
752
+ "description": "Round size",
753
+ "nullable": true
733
754
  },
734
755
  "totalFundingRaised": {
735
756
  "type": "number",
736
- "description": "Total funding raised at the round time"
757
+ "description": "Total funding raised at the round time",
758
+ "nullable": true
737
759
  }
738
760
  }
739
761
  },
@@ -746,7 +768,8 @@
746
768
  },
747
769
  "companyGroupId": {
748
770
  "type": "number",
749
- "description": "Company group identifier"
771
+ "description": "Company group identifier",
772
+ "nullable": true
750
773
  },
751
774
  "company": {
752
775
  "description": "Company reference",
@@ -766,7 +789,8 @@
766
789
  },
767
790
  "investmentStatus": {
768
791
  "type": "string",
769
- "description": "Investment status"
792
+ "description": "Investment status",
793
+ "nullable": true
770
794
  },
771
795
  "invested": {
772
796
  "type": "number",
@@ -774,11 +798,13 @@
774
798
  },
775
799
  "ownership": {
776
800
  "type": "number",
777
- "description": "Ownership percentage"
801
+ "description": "Ownership percentage",
802
+ "nullable": true
778
803
  },
779
804
  "companyValuation": {
780
805
  "type": "number",
781
- "description": "Company valuation"
806
+ "description": "Company valuation",
807
+ "nullable": true
782
808
  },
783
809
  "sharesOwnedTotal": {
784
810
  "type": "number",
@@ -786,7 +812,8 @@
786
812
  },
787
813
  "pricePerShare": {
788
814
  "type": "number",
789
- "description": "Price per share"
815
+ "description": "Price per share",
816
+ "nullable": true
790
817
  },
791
818
  "sharesIssuedTotalDiluted": {
792
819
  "type": "number",
@@ -798,35 +825,43 @@
798
825
  },
799
826
  "fairValueWithoutEquity": {
800
827
  "type": "number",
801
- "description": "Fair value excluding equity"
828
+ "description": "Fair value excluding equity",
829
+ "nullable": true
802
830
  },
803
831
  "fairValue": {
804
832
  "type": "number",
805
- "description": "Position fair value"
833
+ "description": "Position fair value",
834
+ "nullable": true
806
835
  },
807
836
  "customSummaryFairValue": {
808
837
  "type": "number",
809
- "description": "Ownership percentage"
838
+ "description": "Ownership percentage",
839
+ "nullable": true
810
840
  },
811
841
  "askFairValue": {
812
842
  "type": "boolean",
813
- "description": "Whether a fair value input is required"
843
+ "description": "Whether a fair value input is required",
844
+ "nullable": true
814
845
  },
815
846
  "xirr": {
816
847
  "type": "number",
817
- "description": "Extended internal rate of return"
848
+ "description": "Extended internal rate of return",
849
+ "nullable": true
818
850
  },
819
851
  "roi": {
820
852
  "type": "number",
821
- "description": "Return on investment"
853
+ "description": "Return on investment",
854
+ "nullable": true
822
855
  },
823
856
  "realized": {
824
857
  "type": "number",
825
- "description": "Realized amount"
858
+ "description": "Realized amount",
859
+ "nullable": true
826
860
  },
827
861
  "investments": {
828
862
  "type": "number",
829
- "description": "Number of investments contributing to the position"
863
+ "description": "Number of investments contributing to the position",
864
+ "nullable": true
830
865
  },
831
866
  "defaultFairValueItems": {
832
867
  "description": "Default fair value items",
@@ -837,22 +872,27 @@
837
872
  },
838
873
  "totalProfits": {
839
874
  "type": "number",
840
- "description": "Total profits"
875
+ "description": "Total profits",
876
+ "nullable": true
841
877
  },
842
878
  "exitProfits": {
843
879
  "type": "number",
844
- "description": "Exit profits"
880
+ "description": "Exit profits",
881
+ "nullable": true
845
882
  },
846
883
  "equityFairValue": {
847
884
  "type": "number",
848
- "description": "Equity fair value"
885
+ "description": "Equity fair value",
886
+ "nullable": true
849
887
  },
850
888
  "multiple": {
851
889
  "type": "number",
852
- "description": "Investment multiple"
890
+ "description": "Investment multiple",
891
+ "nullable": true
853
892
  },
854
893
  "roundInfo": {
855
894
  "description": "Funding round info",
895
+ "nullable": true,
856
896
  "allOf": [
857
897
  {
858
898
  "$ref": "#/components/schemas/SdkFundingRoundInfoDto"
@@ -874,27 +914,33 @@
874
914
  "ThirdPartyOpinion",
875
915
  "Dcf",
876
916
  "Other"
877
- ]
917
+ ],
918
+ "nullable": true
878
919
  },
879
920
  "totalFundingRaised": {
880
921
  "type": "number",
881
- "description": "Total funding raised"
922
+ "description": "Total funding raised",
923
+ "nullable": true
882
924
  },
883
925
  "averageInvestmentAmount": {
884
926
  "type": "number",
885
- "description": "Average investment amount"
927
+ "description": "Average investment amount",
928
+ "nullable": true
886
929
  },
887
930
  "investedInitial": {
888
931
  "type": "number",
889
- "description": "Initially invested amount"
932
+ "description": "Initially invested amount",
933
+ "nullable": true
890
934
  },
891
935
  "investedFollowOn": {
892
936
  "type": "number",
893
- "description": "Follow-on invested amount"
937
+ "description": "Follow-on invested amount",
938
+ "nullable": true
894
939
  },
895
940
  "dateOfInitialInvestment": {
896
941
  "type": "string",
897
- "description": "Initial investment date"
942
+ "description": "Initial investment date",
943
+ "nullable": true
898
944
  },
899
945
  "initialInvestmentStage": {
900
946
  "type": "string",
@@ -922,15 +968,18 @@
922
968
  "l-round",
923
969
  "m-round",
924
970
  "n-round"
925
- ]
971
+ ],
972
+ "nullable": true
926
973
  },
927
974
  "latestInvestment": {
928
975
  "type": "number",
929
- "description": "Latest investment amount"
976
+ "description": "Latest investment amount",
977
+ "nullable": true
930
978
  },
931
979
  "dateOfLatestInvestment": {
932
980
  "type": "string",
933
- "description": "Latest investment date"
981
+ "description": "Latest investment date",
982
+ "nullable": true
934
983
  },
935
984
  "currentStage": {
936
985
  "type": "string",
@@ -958,7 +1007,8 @@
958
1007
  "l-round",
959
1008
  "m-round",
960
1009
  "n-round"
961
- ]
1010
+ ],
1011
+ "nullable": true
962
1012
  },
963
1013
  "currency": {
964
1014
  "type": "string",
@@ -999,51 +1049,63 @@
999
1049
  },
1000
1050
  "fairValue": {
1001
1051
  "type": "number",
1002
- "description": "Aggregate fair value"
1052
+ "description": "Aggregate fair value",
1053
+ "nullable": true
1003
1054
  },
1004
1055
  "invested": {
1005
1056
  "type": "number",
1006
- "description": "Aggregate invested amount"
1057
+ "description": "Aggregate invested amount",
1058
+ "nullable": true
1007
1059
  },
1008
1060
  "multiple": {
1009
1061
  "type": "number",
1010
- "description": "Aggregate investment multiple"
1062
+ "description": "Aggregate investment multiple",
1063
+ "nullable": true
1011
1064
  },
1012
1065
  "ownership": {
1013
1066
  "type": "number",
1014
- "description": "Aggregate ownership percentage"
1067
+ "description": "Aggregate ownership percentage",
1068
+ "nullable": true
1015
1069
  },
1016
1070
  "realized": {
1017
1071
  "type": "number",
1018
- "description": "Aggregate realized amount"
1072
+ "description": "Aggregate realized amount",
1073
+ "nullable": true
1019
1074
  },
1020
1075
  "xirr": {
1021
1076
  "type": "number",
1022
- "description": "Aggregate XIRR"
1077
+ "description": "Aggregate XIRR",
1078
+ "nullable": true
1023
1079
  },
1024
1080
  "fvPlusRealized": {
1025
1081
  "type": "number",
1026
- "description": "Fair value plus realized amount"
1082
+ "description": "Fair value plus realized amount",
1083
+ "nullable": true
1027
1084
  },
1028
1085
  "totalFundingRaised": {
1029
1086
  "type": "number",
1030
- "description": "Total funding raised"
1087
+ "description": "Total funding raised",
1088
+ "nullable": true
1031
1089
  },
1032
1090
  "valuation": {
1033
1091
  "type": "number",
1034
- "description": "Aggregate valuation"
1092
+ "description": "Aggregate valuation",
1093
+ "nullable": true
1035
1094
  },
1036
1095
  "investments": {
1037
1096
  "type": "number",
1038
- "description": "Aggregate investment count"
1097
+ "description": "Aggregate investment count",
1098
+ "nullable": true
1039
1099
  },
1040
1100
  "realizations": {
1041
1101
  "type": "number",
1042
- "description": "Aggregate realization count"
1102
+ "description": "Aggregate realization count",
1103
+ "nullable": true
1043
1104
  },
1044
1105
  "roi": {
1045
1106
  "type": "number",
1046
- "description": "Aggregate ROI"
1107
+ "description": "Aggregate ROI",
1108
+ "nullable": true
1047
1109
  },
1048
1110
  "numberOfActiveCompanies": {
1049
1111
  "type": "number",
@@ -1055,23 +1117,28 @@
1055
1117
  },
1056
1118
  "investedEquity": {
1057
1119
  "type": "number",
1058
- "description": "Amount invested through equity instruments"
1120
+ "description": "Amount invested through equity instruments",
1121
+ "nullable": true
1059
1122
  },
1060
1123
  "investedSAFE": {
1061
1124
  "type": "number",
1062
- "description": "Amount invested through SAFEs"
1125
+ "description": "Amount invested through SAFEs",
1126
+ "nullable": true
1063
1127
  },
1064
1128
  "investedConvertibleNote": {
1065
1129
  "type": "number",
1066
- "description": "Amount invested through convertible notes"
1130
+ "description": "Amount invested through convertible notes",
1131
+ "nullable": true
1067
1132
  },
1068
1133
  "investedInitial": {
1069
1134
  "type": "number",
1070
- "description": "Initial invested amount"
1135
+ "description": "Initial invested amount",
1136
+ "nullable": true
1071
1137
  },
1072
1138
  "investedFollowOn": {
1073
1139
  "type": "number",
1074
- "description": "Follow-on invested amount"
1140
+ "description": "Follow-on invested amount",
1141
+ "nullable": true
1075
1142
  },
1076
1143
  "numberOfCompanies": {
1077
1144
  "type": "number",
@@ -1079,7 +1146,8 @@
1079
1146
  },
1080
1147
  "averageInvestmentAmount": {
1081
1148
  "type": "number",
1082
- "description": "Average investment amount"
1149
+ "description": "Average investment amount",
1150
+ "nullable": true
1083
1151
  }
1084
1152
  },
1085
1153
  "required": [
@@ -1103,7 +1171,8 @@
1103
1171
  },
1104
1172
  "companyGroupId": {
1105
1173
  "type": "number",
1106
- "description": "Company group identifier"
1174
+ "description": "Company group identifier",
1175
+ "nullable": true
1107
1176
  },
1108
1177
  "company": {
1109
1178
  "description": "Company reference",
@@ -1127,7 +1196,8 @@
1127
1196
  },
1128
1197
  "name": {
1129
1198
  "type": "string",
1130
- "description": "Transaction label or name"
1199
+ "description": "Transaction label or name",
1200
+ "nullable": true
1131
1201
  },
1132
1202
  "date": {
1133
1203
  "type": "string",
@@ -1135,15 +1205,18 @@
1135
1205
  },
1136
1206
  "amount": {
1137
1207
  "type": "number",
1138
- "description": "Transaction amount"
1208
+ "description": "Transaction amount",
1209
+ "nullable": true
1139
1210
  },
1140
1211
  "fairValue": {
1141
1212
  "type": "number",
1142
- "description": "Transaction fair value"
1213
+ "description": "Transaction fair value",
1214
+ "nullable": true
1143
1215
  },
1144
1216
  "currency": {
1145
1217
  "type": "string",
1146
- "description": "Transaction currency code"
1218
+ "description": "Transaction currency code",
1219
+ "nullable": true
1147
1220
  },
1148
1221
  "children": {
1149
1222
  "description": "Nested child transactions",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rundit-sdk/embed",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Public Rundit embed SDK for iframe and embedded module consumers.",
5
5
  "type": "module",
6
6
  "sideEffects": false,