@fairmint/open-captable-protocol-daml-js 0.0.41 → 0.1.0
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/generated/ocp-factory-contract-id.json +4 -4
- package/lib/Fairmint/OpenCapTable/Issuer/module.d.ts +222 -2
- package/lib/Fairmint/OpenCapTable/Issuer/module.js +341 -8
- package/lib/Fairmint/OpenCapTable/IssuerAuthorization/module.d.ts +1 -1
- package/lib/Fairmint/OpenCapTable/IssuerAuthorization/module.js +2 -2
- package/lib/Fairmint/OpenCapTable/OcpFactory/module.d.ts +1 -1
- package/lib/Fairmint/OpenCapTable/OcpFactory/module.js +2 -2
- package/lib/Fairmint/OpenCapTable/Stakeholder/module.d.ts +49 -0
- package/lib/Fairmint/OpenCapTable/Stakeholder/module.js +71 -0
- package/lib/Fairmint/OpenCapTable/StockClass/module.d.ts +340 -4
- package/lib/Fairmint/OpenCapTable/StockClass/module.js +487 -7
- package/lib/Fairmint/OpenCapTable/StockLegendTemplate/index.d.ts +1 -0
- package/lib/Fairmint/OpenCapTable/StockLegendTemplate/index.js +8 -0
- package/lib/Fairmint/OpenCapTable/StockLegendTemplate/module.d.ts +48 -0
- package/lib/Fairmint/OpenCapTable/StockLegendTemplate/module.js +70 -0
- package/lib/Fairmint/OpenCapTable/StockPlan/index.d.ts +1 -0
- package/lib/Fairmint/OpenCapTable/StockPlan/index.js +8 -0
- package/lib/Fairmint/OpenCapTable/StockPlan/module.d.ts +332 -0
- package/lib/Fairmint/OpenCapTable/StockPlan/module.js +482 -0
- package/lib/Fairmint/OpenCapTable/Types/module.d.ts +510 -3
- package/lib/Fairmint/OpenCapTable/Types/module.js +523 -9
- package/lib/Fairmint/OpenCapTable/Valuation/index.d.ts +1 -0
- package/lib/Fairmint/OpenCapTable/Valuation/index.js +8 -0
- package/lib/Fairmint/OpenCapTable/Valuation/module.d.ts +50 -0
- package/lib/Fairmint/OpenCapTable/Valuation/module.js +72 -0
- package/lib/Fairmint/OpenCapTable/VestingTerms/index.d.ts +1 -0
- package/lib/Fairmint/OpenCapTable/VestingTerms/index.js +8 -0
- package/lib/Fairmint/OpenCapTable/VestingTerms/module.d.ts +48 -0
- package/lib/Fairmint/OpenCapTable/VestingTerms/module.js +70 -0
- package/lib/Fairmint/OpenCapTable/index.d.ts +10 -2
- package/lib/Fairmint/OpenCapTable/index.js +10 -2
- package/package.json +3 -3
- package/lib/Fairmint/OpenCapTable/StockPosition/module.d.ts +0 -85
- package/lib/Fairmint/OpenCapTable/StockPosition/module.js +0 -124
- /package/lib/Fairmint/OpenCapTable/{StockPosition → Stakeholder}/index.d.ts +0 -0
- /package/lib/Fairmint/OpenCapTable/{StockPosition → Stakeholder}/index.js +0 -0
|
@@ -9,7 +9,7 @@ import * as damlLedger from '@daml/ledger';
|
|
|
9
9
|
|
|
10
10
|
export declare type TransferOperation = {
|
|
11
11
|
recipient: damlTypes.Party;
|
|
12
|
-
quantity: damlTypes.
|
|
12
|
+
quantity: damlTypes.Numeric;
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
export declare const TransferOperation:
|
|
@@ -18,6 +18,24 @@ export declare const TransferOperation:
|
|
|
18
18
|
;
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
export declare type OcfStakeholderData = {
|
|
22
|
+
name: string;
|
|
23
|
+
stakeholder_type: OcfStakeholderType;
|
|
24
|
+
issuer_assigned_id: damlTypes.Optional<string>;
|
|
25
|
+
current_relationship: damlTypes.Optional<string>;
|
|
26
|
+
primary_contact: damlTypes.Optional<OcfContactInfo>;
|
|
27
|
+
contact_info: damlTypes.Optional<OcfContactInfoWithoutName>;
|
|
28
|
+
addresses: OcfAddress[];
|
|
29
|
+
tax_ids: OcfTaxID[];
|
|
30
|
+
comments: damlTypes.Optional<string[]>;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export declare const OcfStakeholderData:
|
|
34
|
+
damlTypes.Serializable<OcfStakeholderData> & {
|
|
35
|
+
}
|
|
36
|
+
;
|
|
37
|
+
|
|
38
|
+
|
|
21
39
|
export declare type OcfStockClassData = {
|
|
22
40
|
name: string;
|
|
23
41
|
class_type: OcfStockClassType;
|
|
@@ -32,6 +50,7 @@ export declare type OcfStockClassData = {
|
|
|
32
50
|
liquidation_preference_multiple: damlTypes.Optional<damlTypes.Numeric>;
|
|
33
51
|
participation_cap_multiple: damlTypes.Optional<damlTypes.Numeric>;
|
|
34
52
|
conversion_rights: OcfStockClassConversionRight[];
|
|
53
|
+
comments: damlTypes.Optional<string[]>;
|
|
35
54
|
};
|
|
36
55
|
|
|
37
56
|
export declare const OcfStockClassData:
|
|
@@ -51,6 +70,7 @@ export declare type OcfIssuerData = {
|
|
|
51
70
|
phone: damlTypes.Optional<string>;
|
|
52
71
|
address: damlTypes.Optional<OcfAddress>;
|
|
53
72
|
initial_shares_authorized: damlTypes.Optional<damlTypes.Numeric>;
|
|
73
|
+
comments: damlTypes.Optional<string[]>;
|
|
54
74
|
};
|
|
55
75
|
|
|
56
76
|
export declare const OcfIssuerData:
|
|
@@ -59,13 +79,304 @@ export declare const OcfIssuerData:
|
|
|
59
79
|
;
|
|
60
80
|
|
|
61
81
|
|
|
82
|
+
export declare type OcfStakeholderType =
|
|
83
|
+
| 'OcfStakeholderTypeIndividual'
|
|
84
|
+
| 'OcfStakeholderTypeInstitution'
|
|
85
|
+
;
|
|
86
|
+
|
|
87
|
+
export declare const OcfStakeholderType:
|
|
88
|
+
damlTypes.Serializable<OcfStakeholderType> & {
|
|
89
|
+
}
|
|
90
|
+
& { readonly keys: OcfStakeholderType[] } & { readonly [e in OcfStakeholderType]: e }
|
|
91
|
+
;
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
export declare type OcfContactInfoWithoutName = {
|
|
95
|
+
email: damlTypes.Optional<OcfEmail>;
|
|
96
|
+
phone: damlTypes.Optional<string>;
|
|
97
|
+
address: damlTypes.Optional<OcfAddress>;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
export declare const OcfContactInfoWithoutName:
|
|
101
|
+
damlTypes.Serializable<OcfContactInfoWithoutName> & {
|
|
102
|
+
}
|
|
103
|
+
;
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
export declare type OcfContactInfo = {
|
|
107
|
+
name: string;
|
|
108
|
+
email: damlTypes.Optional<OcfEmail>;
|
|
109
|
+
phone: damlTypes.Optional<string>;
|
|
110
|
+
address: damlTypes.Optional<OcfAddress>;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
export declare const OcfContactInfo:
|
|
114
|
+
damlTypes.Serializable<OcfContactInfo> & {
|
|
115
|
+
}
|
|
116
|
+
;
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
export declare type OcfStockPlanData = {
|
|
120
|
+
plan_name: string;
|
|
121
|
+
board_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
122
|
+
stockholder_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
123
|
+
initial_shares_reserved: damlTypes.Numeric;
|
|
124
|
+
default_cancellation_behavior: damlTypes.Optional<OcfStockPlanCancellationBehaviorType>;
|
|
125
|
+
comments: damlTypes.Optional<string[]>;
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
export declare const OcfStockPlanData:
|
|
129
|
+
damlTypes.Serializable<OcfStockPlanData> & {
|
|
130
|
+
}
|
|
131
|
+
;
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
export declare type OcfStockPlanCancellationBehaviorType =
|
|
135
|
+
| 'OcfPlanCancelRetire'
|
|
136
|
+
| 'OcfPlanCancelReturnToPool'
|
|
137
|
+
| 'OcfPlanCancelHoldAsCapitalStock'
|
|
138
|
+
| 'OcfPlanCancelDefinedPerPlanSecurity'
|
|
139
|
+
;
|
|
140
|
+
|
|
141
|
+
export declare const OcfStockPlanCancellationBehaviorType:
|
|
142
|
+
damlTypes.Serializable<OcfStockPlanCancellationBehaviorType> & {
|
|
143
|
+
}
|
|
144
|
+
& { readonly keys: OcfStockPlanCancellationBehaviorType[] } & { readonly [e in OcfStockPlanCancellationBehaviorType]: e }
|
|
145
|
+
;
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
export declare type OcfStockLegendTemplateData = {
|
|
149
|
+
name: string;
|
|
150
|
+
text: string;
|
|
151
|
+
comments: damlTypes.Optional<string[]>;
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
export declare const OcfStockLegendTemplateData:
|
|
155
|
+
damlTypes.Serializable<OcfStockLegendTemplateData> & {
|
|
156
|
+
}
|
|
157
|
+
;
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
export declare type OcfVestingTermsData = {
|
|
161
|
+
name: string;
|
|
162
|
+
description: string;
|
|
163
|
+
allocation_type: OcfAllocationType;
|
|
164
|
+
vesting_conditions: OcfVestingCondition[];
|
|
165
|
+
comments: damlTypes.Optional<string[]>;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
export declare const OcfVestingTermsData:
|
|
169
|
+
damlTypes.Serializable<OcfVestingTermsData> & {
|
|
170
|
+
}
|
|
171
|
+
;
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
export declare type OcfVestingCondition = {
|
|
175
|
+
id_: string;
|
|
176
|
+
description: damlTypes.Optional<string>;
|
|
177
|
+
portion: damlTypes.Optional<OcfVestingConditionPortion>;
|
|
178
|
+
quantity: damlTypes.Optional<damlTypes.Numeric>;
|
|
179
|
+
trigger: OcfVestingTrigger;
|
|
180
|
+
next_condition_ids: string[];
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
export declare const OcfVestingCondition:
|
|
184
|
+
damlTypes.Serializable<OcfVestingCondition> & {
|
|
185
|
+
}
|
|
186
|
+
;
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
export declare type OcfVestingConditionPortion = {
|
|
190
|
+
numerator: damlTypes.Numeric;
|
|
191
|
+
denominator: damlTypes.Numeric;
|
|
192
|
+
remainder: boolean;
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
export declare const OcfVestingConditionPortion:
|
|
196
|
+
damlTypes.Serializable<OcfVestingConditionPortion> & {
|
|
197
|
+
}
|
|
198
|
+
;
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
export declare type OcfVestingTrigger =
|
|
202
|
+
| { tag: 'OcfVestingStartTrigger'; value: {} }
|
|
203
|
+
| { tag: 'OcfVestingScheduleAbsoluteTrigger'; value: damlTypes.Time }
|
|
204
|
+
| { tag: 'OcfVestingScheduleRelativeTrigger'; value: OcfVestingTrigger.OcfVestingScheduleRelativeTrigger }
|
|
205
|
+
| { tag: 'OcfVestingEventTrigger'; value: {} }
|
|
206
|
+
;
|
|
207
|
+
|
|
208
|
+
export declare const OcfVestingTrigger:
|
|
209
|
+
damlTypes.Serializable<OcfVestingTrigger> & {
|
|
210
|
+
OcfVestingScheduleRelativeTrigger: damlTypes.Serializable<OcfVestingTrigger.OcfVestingScheduleRelativeTrigger>;
|
|
211
|
+
}
|
|
212
|
+
;
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
export namespace OcfVestingTrigger {
|
|
216
|
+
type OcfVestingScheduleRelativeTrigger = {
|
|
217
|
+
period: OcfVestingPeriod;
|
|
218
|
+
relative_to_condition_id: string;
|
|
219
|
+
};
|
|
220
|
+
} //namespace OcfVestingTrigger
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
export declare type OcfVestingPeriod =
|
|
224
|
+
| { tag: 'OcfVestingPeriodDays'; value: damlTypes.Int }
|
|
225
|
+
| { tag: 'OcfVestingPeriodMonths'; value: damlTypes.Int }
|
|
226
|
+
;
|
|
227
|
+
|
|
228
|
+
export declare const OcfVestingPeriod:
|
|
229
|
+
damlTypes.Serializable<OcfVestingPeriod> & {
|
|
230
|
+
}
|
|
231
|
+
;
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
export declare type OcfAllocationType =
|
|
235
|
+
| 'OcfAllocationCumulativeRounding'
|
|
236
|
+
| 'OcfAllocationCumulativeRoundDown'
|
|
237
|
+
| 'OcfAllocationFrontLoaded'
|
|
238
|
+
| 'OcfAllocationBackLoaded'
|
|
239
|
+
| 'OcfAllocationFrontLoadedToSingleTranche'
|
|
240
|
+
| 'OcfAllocationBackLoadedToSingleTranche'
|
|
241
|
+
| 'OcfAllocationFractional'
|
|
242
|
+
;
|
|
243
|
+
|
|
244
|
+
export declare const OcfAllocationType:
|
|
245
|
+
damlTypes.Serializable<OcfAllocationType> & {
|
|
246
|
+
}
|
|
247
|
+
& { readonly keys: OcfAllocationType[] } & { readonly [e in OcfAllocationType]: e }
|
|
248
|
+
;
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
export declare type OcfEquityCompensationIssuanceData = {
|
|
252
|
+
compensation_type: OcfCompensationType;
|
|
253
|
+
quantity: damlTypes.Numeric;
|
|
254
|
+
exercise_price: damlTypes.Optional<OcfMonetary>;
|
|
255
|
+
base_price: damlTypes.Optional<OcfMonetary>;
|
|
256
|
+
early_exercisable: damlTypes.Optional<boolean>;
|
|
257
|
+
vestings: damlTypes.Optional<OcfVesting[]>;
|
|
258
|
+
expiration_date: damlTypes.Optional<damlTypes.Time>;
|
|
259
|
+
termination_exercise_windows: OcfTerminationWindow[];
|
|
260
|
+
comments: damlTypes.Optional<string[]>;
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
export declare const OcfEquityCompensationIssuanceData:
|
|
264
|
+
damlTypes.Serializable<OcfEquityCompensationIssuanceData> & {
|
|
265
|
+
}
|
|
266
|
+
;
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
export declare type OcfVesting = {
|
|
270
|
+
date: damlTypes.Time;
|
|
271
|
+
amount: damlTypes.Numeric;
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
export declare const OcfVesting:
|
|
275
|
+
damlTypes.Serializable<OcfVesting> & {
|
|
276
|
+
}
|
|
277
|
+
;
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
export declare type OcfTerminationWindow = {
|
|
281
|
+
reason: OcfTerminationWindowType;
|
|
282
|
+
period: damlTypes.Int;
|
|
283
|
+
period_type: OcfPeriodType;
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
export declare const OcfTerminationWindow:
|
|
287
|
+
damlTypes.Serializable<OcfTerminationWindow> & {
|
|
288
|
+
}
|
|
289
|
+
;
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
export declare type OcfTerminationWindowType =
|
|
293
|
+
| 'OcfTermVoluntaryOther'
|
|
294
|
+
| 'OcfTermVoluntaryGoodCause'
|
|
295
|
+
| 'OcfTermVoluntaryRetirement'
|
|
296
|
+
| 'OcfTermInvoluntaryOther'
|
|
297
|
+
| 'OcfTermInvoluntaryDeath'
|
|
298
|
+
| 'OcfTermInvoluntaryDisability'
|
|
299
|
+
| 'OcfTermInvoluntaryWithCause'
|
|
300
|
+
;
|
|
301
|
+
|
|
302
|
+
export declare const OcfTerminationWindowType:
|
|
303
|
+
damlTypes.Serializable<OcfTerminationWindowType> & {
|
|
304
|
+
}
|
|
305
|
+
& { readonly keys: OcfTerminationWindowType[] } & { readonly [e in OcfTerminationWindowType]: e }
|
|
306
|
+
;
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
export declare type OcfPeriodType =
|
|
310
|
+
| 'OcfPeriodDays'
|
|
311
|
+
| 'OcfPeriodMonths'
|
|
312
|
+
| 'OcfPeriodYears'
|
|
313
|
+
;
|
|
314
|
+
|
|
315
|
+
export declare const OcfPeriodType:
|
|
316
|
+
damlTypes.Serializable<OcfPeriodType> & {
|
|
317
|
+
}
|
|
318
|
+
& { readonly keys: OcfPeriodType[] } & { readonly [e in OcfPeriodType]: e }
|
|
319
|
+
;
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
export declare type OcfCompensationType =
|
|
323
|
+
| 'OcfCompensationTypeOptionNSO'
|
|
324
|
+
| 'OcfCompensationTypeOptionISO'
|
|
325
|
+
| 'OcfCompensationTypeOption'
|
|
326
|
+
| 'OcfCompensationTypeRSU'
|
|
327
|
+
| 'OcfCompensationTypeCSAR'
|
|
328
|
+
| 'OcfCompensationTypeSSAR'
|
|
329
|
+
;
|
|
330
|
+
|
|
331
|
+
export declare const OcfCompensationType:
|
|
332
|
+
damlTypes.Serializable<OcfCompensationType> & {
|
|
333
|
+
}
|
|
334
|
+
& { readonly keys: OcfCompensationType[] } & { readonly [e in OcfCompensationType]: e }
|
|
335
|
+
;
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
export declare type OcfValuationData = {
|
|
339
|
+
provider: damlTypes.Optional<string>;
|
|
340
|
+
board_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
341
|
+
stockholder_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
342
|
+
comments: damlTypes.Optional<string[]>;
|
|
343
|
+
price_per_share: OcfMonetary;
|
|
344
|
+
effective_date: damlTypes.Time;
|
|
345
|
+
valuation_type: OcfValuationType;
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
export declare const OcfValuationData:
|
|
349
|
+
damlTypes.Serializable<OcfValuationData> & {
|
|
350
|
+
}
|
|
351
|
+
;
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
export declare type OcfValuationType =
|
|
355
|
+
| 'OcfValuationType409A'
|
|
356
|
+
;
|
|
357
|
+
|
|
358
|
+
export declare const OcfValuationType:
|
|
359
|
+
damlTypes.Serializable<OcfValuationType> & {
|
|
360
|
+
}
|
|
361
|
+
& { readonly keys: OcfValuationType[] } & { readonly [e in OcfValuationType]: e }
|
|
362
|
+
;
|
|
363
|
+
|
|
364
|
+
|
|
62
365
|
export declare type OcfStockClassConversionRight = {
|
|
63
366
|
type_: string;
|
|
64
367
|
conversion_mechanism: OcfConversionMechanism;
|
|
65
368
|
conversion_trigger: OcfConversionTrigger;
|
|
66
369
|
converts_to_stock_class_id: string;
|
|
67
|
-
|
|
370
|
+
ratio: damlTypes.Optional<OcfRatio>;
|
|
371
|
+
percent_of_capitalization: damlTypes.Optional<damlTypes.Numeric>;
|
|
68
372
|
conversion_price: damlTypes.Optional<OcfMonetary>;
|
|
373
|
+
reference_share_price: damlTypes.Optional<OcfMonetary>;
|
|
374
|
+
reference_valuation_price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
375
|
+
discount_rate: damlTypes.Optional<damlTypes.Numeric>;
|
|
376
|
+
valuation_cap: damlTypes.Optional<OcfMonetary>;
|
|
377
|
+
floor_price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
378
|
+
ceiling_price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
379
|
+
custom_description: damlTypes.Optional<string>;
|
|
69
380
|
expires_at: damlTypes.Optional<damlTypes.Time>;
|
|
70
381
|
};
|
|
71
382
|
|
|
@@ -75,6 +386,17 @@ export declare const OcfStockClassConversionRight:
|
|
|
75
386
|
;
|
|
76
387
|
|
|
77
388
|
|
|
389
|
+
export declare type OcfRatio = {
|
|
390
|
+
numerator: damlTypes.Numeric;
|
|
391
|
+
denominator: damlTypes.Numeric;
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
export declare const OcfRatio:
|
|
395
|
+
damlTypes.Serializable<OcfRatio> & {
|
|
396
|
+
}
|
|
397
|
+
;
|
|
398
|
+
|
|
399
|
+
|
|
78
400
|
export declare type OcfConversionTrigger =
|
|
79
401
|
| 'OcfConversionTriggerAutomatic'
|
|
80
402
|
| 'OcfConversionTriggerOptional'
|
|
@@ -89,8 +411,13 @@ export declare const OcfConversionTrigger:
|
|
|
89
411
|
|
|
90
412
|
export declare type OcfConversionMechanism =
|
|
91
413
|
| 'OcfConversionMechanismRatioConversion'
|
|
92
|
-
| '
|
|
414
|
+
| 'OcfConversionMechanismPercentCapitalizationConversion'
|
|
93
415
|
| 'OcfConversionMechanismFixedAmountConversion'
|
|
416
|
+
| 'OcfConversionMechanismValuationBasedConversion'
|
|
417
|
+
| 'OcfConversionMechanismSharePriceBasedConversion'
|
|
418
|
+
| 'OcfConversionMechanismSAFEConversion'
|
|
419
|
+
| 'OcfConversionMechanismNoteConversion'
|
|
420
|
+
| 'OcfConversionMechanismCustomConversion'
|
|
94
421
|
;
|
|
95
422
|
|
|
96
423
|
export declare const OcfConversionMechanism:
|
|
@@ -207,3 +534,183 @@ export declare const OcfEmailType:
|
|
|
207
534
|
& { readonly keys: OcfEmailType[] } & { readonly [e in OcfEmailType]: e }
|
|
208
535
|
;
|
|
209
536
|
|
|
537
|
+
|
|
538
|
+
export declare type OcfWarrantIssuanceData = {
|
|
539
|
+
quantity: damlTypes.Numeric;
|
|
540
|
+
exercise_price: OcfMonetary;
|
|
541
|
+
purchase_price: OcfMonetary;
|
|
542
|
+
exercise_triggers: OcfConversionTrigger[];
|
|
543
|
+
warrant_expiration_date: damlTypes.Optional<damlTypes.Time>;
|
|
544
|
+
vesting_terms_id: damlTypes.Optional<string>;
|
|
545
|
+
comments: damlTypes.Optional<string[]>;
|
|
546
|
+
};
|
|
547
|
+
|
|
548
|
+
export declare const OcfWarrantIssuanceData:
|
|
549
|
+
damlTypes.Serializable<OcfWarrantIssuanceData> & {
|
|
550
|
+
}
|
|
551
|
+
;
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
export declare type OcfConvertibleIssuanceData = {
|
|
555
|
+
investment_amount: OcfMonetary;
|
|
556
|
+
convertible_type: OcfConvertibleType;
|
|
557
|
+
conversion_triggers: OcfConversionTrigger[];
|
|
558
|
+
seniority: damlTypes.Int;
|
|
559
|
+
pro_rata: damlTypes.Optional<damlTypes.Numeric>;
|
|
560
|
+
comments: damlTypes.Optional<string[]>;
|
|
561
|
+
};
|
|
562
|
+
|
|
563
|
+
export declare const OcfConvertibleIssuanceData:
|
|
564
|
+
damlTypes.Serializable<OcfConvertibleIssuanceData> & {
|
|
565
|
+
}
|
|
566
|
+
;
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
export declare type OcfConvertibleType =
|
|
570
|
+
| 'OcfConvertibleNote'
|
|
571
|
+
| 'OcfConvertibleSafe'
|
|
572
|
+
| 'OcfConvertibleSecurity'
|
|
573
|
+
;
|
|
574
|
+
|
|
575
|
+
export declare const OcfConvertibleType:
|
|
576
|
+
damlTypes.Serializable<OcfConvertibleType> & {
|
|
577
|
+
}
|
|
578
|
+
& { readonly keys: OcfConvertibleType[] } & { readonly [e in OcfConvertibleType]: e }
|
|
579
|
+
;
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
export declare type OcfParentSecurityType =
|
|
583
|
+
| 'OcfParentStockPlan'
|
|
584
|
+
| 'OcfParentStock'
|
|
585
|
+
| 'OcfParentWarrant'
|
|
586
|
+
| 'OcfParentConvertible'
|
|
587
|
+
;
|
|
588
|
+
|
|
589
|
+
export declare const OcfParentSecurityType:
|
|
590
|
+
damlTypes.Serializable<OcfParentSecurityType> & {
|
|
591
|
+
}
|
|
592
|
+
& { readonly keys: OcfParentSecurityType[] } & { readonly [e in OcfParentSecurityType]: e }
|
|
593
|
+
;
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
export declare type OcfOptionType =
|
|
597
|
+
| 'OcfOptionNSO'
|
|
598
|
+
| 'OcfOptionISO'
|
|
599
|
+
| 'OcfOptionIntl'
|
|
600
|
+
;
|
|
601
|
+
|
|
602
|
+
export declare const OcfOptionType:
|
|
603
|
+
damlTypes.Serializable<OcfOptionType> & {
|
|
604
|
+
}
|
|
605
|
+
& { readonly keys: OcfOptionType[] } & { readonly [e in OcfOptionType]: e }
|
|
606
|
+
;
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
export declare type OcfAccrualPeriodType =
|
|
610
|
+
| 'OcfAccrualDaily'
|
|
611
|
+
| 'OcfAccrualMonthly'
|
|
612
|
+
| 'OcfAccrualQuarterly'
|
|
613
|
+
| 'OcfAccrualSemiAnnual'
|
|
614
|
+
| 'OcfAccrualAnnual'
|
|
615
|
+
;
|
|
616
|
+
|
|
617
|
+
export declare const OcfAccrualPeriodType:
|
|
618
|
+
damlTypes.Serializable<OcfAccrualPeriodType> & {
|
|
619
|
+
}
|
|
620
|
+
& { readonly keys: OcfAccrualPeriodType[] } & { readonly [e in OcfAccrualPeriodType]: e }
|
|
621
|
+
;
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
export declare type OcfInterestRate = {
|
|
625
|
+
rate: damlTypes.Numeric;
|
|
626
|
+
payout_type: OcfInterestPayoutType;
|
|
627
|
+
compounding_type: OcfCompoundingType;
|
|
628
|
+
day_count_type: OcfDayCountType;
|
|
629
|
+
};
|
|
630
|
+
|
|
631
|
+
export declare const OcfInterestRate:
|
|
632
|
+
damlTypes.Serializable<OcfInterestRate> & {
|
|
633
|
+
}
|
|
634
|
+
;
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
export declare type OcfFileType =
|
|
638
|
+
| 'OcfManifestFile'
|
|
639
|
+
| 'OcfStakeholdersFile'
|
|
640
|
+
| 'OcfStockClassesFile'
|
|
641
|
+
| 'OcfStockLegendTemplatesFile'
|
|
642
|
+
| 'OcfStockPlansFile'
|
|
643
|
+
| 'OcfTransactionsFile'
|
|
644
|
+
| 'OcfValuationsFile'
|
|
645
|
+
| 'OcfVestingTermsFile'
|
|
646
|
+
;
|
|
647
|
+
|
|
648
|
+
export declare const OcfFileType:
|
|
649
|
+
damlTypes.Serializable<OcfFileType> & {
|
|
650
|
+
}
|
|
651
|
+
& { readonly keys: OcfFileType[] } & { readonly [e in OcfFileType]: e }
|
|
652
|
+
;
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
export declare type OcfRoundingType =
|
|
656
|
+
| 'OcfRoundingCeiling'
|
|
657
|
+
| 'OcfRoundingFloor'
|
|
658
|
+
| 'OcfRoundingNormal'
|
|
659
|
+
;
|
|
660
|
+
|
|
661
|
+
export declare const OcfRoundingType:
|
|
662
|
+
damlTypes.Serializable<OcfRoundingType> & {
|
|
663
|
+
}
|
|
664
|
+
& { readonly keys: OcfRoundingType[] } & { readonly [e in OcfRoundingType]: e }
|
|
665
|
+
;
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
export declare type OcfDayCountType =
|
|
669
|
+
| 'OcfDayCountActual365'
|
|
670
|
+
| 'OcfDayCount30_360'
|
|
671
|
+
;
|
|
672
|
+
|
|
673
|
+
export declare const OcfDayCountType:
|
|
674
|
+
damlTypes.Serializable<OcfDayCountType> & {
|
|
675
|
+
}
|
|
676
|
+
& { readonly keys: OcfDayCountType[] } & { readonly [e in OcfDayCountType]: e }
|
|
677
|
+
;
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
export declare type OcfCompoundingType =
|
|
681
|
+
| 'OcfCompounding'
|
|
682
|
+
| 'OcfSimple'
|
|
683
|
+
;
|
|
684
|
+
|
|
685
|
+
export declare const OcfCompoundingType:
|
|
686
|
+
damlTypes.Serializable<OcfCompoundingType> & {
|
|
687
|
+
}
|
|
688
|
+
& { readonly keys: OcfCompoundingType[] } & { readonly [e in OcfCompoundingType]: e }
|
|
689
|
+
;
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
export declare type OcfInterestPayoutType =
|
|
693
|
+
| 'OcfInterestPayoutDeferred'
|
|
694
|
+
| 'OcfInterestPayoutCash'
|
|
695
|
+
;
|
|
696
|
+
|
|
697
|
+
export declare const OcfInterestPayoutType:
|
|
698
|
+
damlTypes.Serializable<OcfInterestPayoutType> & {
|
|
699
|
+
}
|
|
700
|
+
& { readonly keys: OcfInterestPayoutType[] } & { readonly [e in OcfInterestPayoutType]: e }
|
|
701
|
+
;
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
export declare type OcfPhoneType =
|
|
705
|
+
| 'OcfPhoneHome'
|
|
706
|
+
| 'OcfPhoneMobile'
|
|
707
|
+
| 'OcfPhoneBusiness'
|
|
708
|
+
| 'OcfPhoneOther'
|
|
709
|
+
;
|
|
710
|
+
|
|
711
|
+
export declare const OcfPhoneType:
|
|
712
|
+
damlTypes.Serializable<OcfPhoneType> & {
|
|
713
|
+
}
|
|
714
|
+
& { readonly keys: OcfPhoneType[] } & { readonly [e in OcfPhoneType]: e }
|
|
715
|
+
;
|
|
716
|
+
|