@fairmint/open-captable-protocol-daml-js 0.1.3 → 0.2.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/Document/index.d.ts +1 -0
- package/lib/Fairmint/OpenCapTable/Document/index.js +8 -0
- package/lib/Fairmint/OpenCapTable/Document/module.d.ts +135 -0
- package/lib/Fairmint/OpenCapTable/Document/module.js +159 -0
- package/lib/Fairmint/OpenCapTable/Issuer/module.d.ts +63 -424
- package/lib/Fairmint/OpenCapTable/Issuer/module.js +86 -614
- package/lib/Fairmint/OpenCapTable/IssuerAuthorization/module.d.ts +3 -6
- package/lib/Fairmint/OpenCapTable/IssuerAuthorization/module.js +6 -9
- 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 +74 -84
- package/lib/Fairmint/OpenCapTable/Stakeholder/module.js +65 -107
- package/lib/Fairmint/OpenCapTable/StockClass/module.d.ts +118 -403
- package/lib/Fairmint/OpenCapTable/StockClass/module.js +103 -573
- package/lib/Fairmint/OpenCapTable/StockLegendTemplate/module.d.ts +19 -11
- package/lib/Fairmint/OpenCapTable/StockLegendTemplate/module.js +27 -17
- package/lib/Fairmint/OpenCapTable/StockPlan/module.d.ts +24 -403
- package/lib/Fairmint/OpenCapTable/StockPlan/module.js +29 -587
- package/lib/Fairmint/OpenCapTable/Types/module.d.ts +8 -565
- package/lib/Fairmint/OpenCapTable/Types/module.js +7 -582
- package/lib/Fairmint/OpenCapTable/Valuation/module.d.ts +34 -13
- package/lib/Fairmint/OpenCapTable/Valuation/module.js +40 -19
- package/lib/Fairmint/OpenCapTable/VestingTerms/module.d.ts +98 -11
- package/lib/Fairmint/OpenCapTable/VestingTerms/module.js +117 -17
- package/lib/Fairmint/OpenCapTable/index.d.ts +2 -0
- package/lib/Fairmint/OpenCapTable/index.js +2 -0
- package/lib/Fairmint/OpenCapTableReports/CompanyValuationReport/module.js +1 -1
- package/lib/Fairmint/OpenCapTableReports/ReportsFactory/module.js +1 -1
- package/package.json +2 -2
|
@@ -7,6 +7,8 @@ import * as damlTypes from '@daml/types';
|
|
|
7
7
|
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
|
|
8
8
|
import * as damlLedger from '@daml/ledger';
|
|
9
9
|
|
|
10
|
+
import * as pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda from '../../../Splice/Api/FeaturedAppRightV1';
|
|
11
|
+
|
|
10
12
|
export declare type OcfCapitalizationDefinitionRules = {
|
|
11
13
|
include_outstanding_shares: boolean;
|
|
12
14
|
include_outstanding_options: boolean;
|
|
@@ -70,17 +72,6 @@ export declare const OcfSecurityExemption:
|
|
|
70
72
|
;
|
|
71
73
|
|
|
72
74
|
|
|
73
|
-
export declare type OcfObjectReference = {
|
|
74
|
-
object_type: OcfObjectType;
|
|
75
|
-
object_id: string;
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
export declare const OcfObjectReference:
|
|
79
|
-
damlTypes.Serializable<OcfObjectReference> & {
|
|
80
|
-
}
|
|
81
|
-
;
|
|
82
|
-
|
|
83
|
-
|
|
84
75
|
export declare type OcfStakeholderRelationshipType =
|
|
85
76
|
| 'OcfRelEmployee'
|
|
86
77
|
| 'OcfRelAdvisor'
|
|
@@ -98,72 +89,6 @@ export declare const OcfStakeholderRelationshipType:
|
|
|
98
89
|
;
|
|
99
90
|
|
|
100
91
|
|
|
101
|
-
export declare type OcfObjectType =
|
|
102
|
-
| 'OcfObjIssuer'
|
|
103
|
-
| 'OcfObjStakeholder'
|
|
104
|
-
| 'OcfObjStockClass'
|
|
105
|
-
| 'OcfObjStockLegendTemplate'
|
|
106
|
-
| 'OcfObjStockPlan'
|
|
107
|
-
| 'OcfObjValuation'
|
|
108
|
-
| 'OcfObjVestingTerms'
|
|
109
|
-
| 'OcfObjFinancing'
|
|
110
|
-
| 'OcfObjDocument'
|
|
111
|
-
| 'OcfObjCeStakeholderRelationship'
|
|
112
|
-
| 'OcfObjCeStakeholderStatus'
|
|
113
|
-
| 'OcfObjTxIssuerAuthorizedSharesAdjustment'
|
|
114
|
-
| 'OcfObjTxStockClassConversionRatioAdjustment'
|
|
115
|
-
| 'OcfObjTxStockClassAuthorizedSharesAdjustment'
|
|
116
|
-
| 'OcfObjTxStockClassSplit'
|
|
117
|
-
| 'OcfObjTxStockPlanPoolAdjustment'
|
|
118
|
-
| 'OcfObjTxStockPlanReturnToPool'
|
|
119
|
-
| 'OcfObjTxConvertibleAcceptance'
|
|
120
|
-
| 'OcfObjTxConvertibleCancellation'
|
|
121
|
-
| 'OcfObjTxConvertibleConversion'
|
|
122
|
-
| 'OcfObjTxConvertibleIssuance'
|
|
123
|
-
| 'OcfObjTxConvertibleRetraction'
|
|
124
|
-
| 'OcfObjTxConvertibleTransfer'
|
|
125
|
-
| 'OcfObjTxEquityCompensationAcceptance'
|
|
126
|
-
| 'OcfObjTxEquityCompensationCancellation'
|
|
127
|
-
| 'OcfObjTxEquityCompensationExercise'
|
|
128
|
-
| 'OcfObjTxEquityCompensationIssuance'
|
|
129
|
-
| 'OcfObjTxEquityCompensationRelease'
|
|
130
|
-
| 'OcfObjTxEquityCompensationRetraction'
|
|
131
|
-
| 'OcfObjTxEquityCompensationTransfer'
|
|
132
|
-
| 'OcfObjTxEquityCompensationRepricing'
|
|
133
|
-
| 'OcfObjTxPlanSecurityAcceptance'
|
|
134
|
-
| 'OcfObjTxPlanSecurityCancellation'
|
|
135
|
-
| 'OcfObjTxPlanSecurityExercise'
|
|
136
|
-
| 'OcfObjTxPlanSecurityIssuance'
|
|
137
|
-
| 'OcfObjTxPlanSecurityRelease'
|
|
138
|
-
| 'OcfObjTxPlanSecurityRetraction'
|
|
139
|
-
| 'OcfObjTxPlanSecurityTransfer'
|
|
140
|
-
| 'OcfObjTxStockAcceptance'
|
|
141
|
-
| 'OcfObjTxStockCancellation'
|
|
142
|
-
| 'OcfObjTxStockConversion'
|
|
143
|
-
| 'OcfObjTxStockIssuance'
|
|
144
|
-
| 'OcfObjTxStockReissuance'
|
|
145
|
-
| 'OcfObjTxStockConsolidation'
|
|
146
|
-
| 'OcfObjTxStockRepurchase'
|
|
147
|
-
| 'OcfObjTxStockRetraction'
|
|
148
|
-
| 'OcfObjTxStockTransfer'
|
|
149
|
-
| 'OcfObjTxWarrantAcceptance'
|
|
150
|
-
| 'OcfObjTxWarrantCancellation'
|
|
151
|
-
| 'OcfObjTxWarrantExercise'
|
|
152
|
-
| 'OcfObjTxWarrantIssuance'
|
|
153
|
-
| 'OcfObjTxWarrantRetraction'
|
|
154
|
-
| 'OcfObjTxWarrantTransfer'
|
|
155
|
-
| 'OcfObjTxVestingAcceleration'
|
|
156
|
-
| 'OcfObjTxVestingStart'
|
|
157
|
-
| 'OcfObjTxVestingEvent'
|
|
158
|
-
;
|
|
159
|
-
|
|
160
|
-
export declare const OcfObjectType:
|
|
161
|
-
damlTypes.Serializable<OcfObjectType> & {
|
|
162
|
-
}
|
|
163
|
-
& { readonly keys: OcfObjectType[] } & { readonly [e in OcfObjectType]: e }
|
|
164
|
-
;
|
|
165
|
-
|
|
166
|
-
|
|
167
92
|
export declare type TransferOperation = {
|
|
168
93
|
recipient: damlTypes.Party;
|
|
169
94
|
quantity: damlTypes.Numeric;
|
|
@@ -175,254 +100,15 @@ export declare const TransferOperation:
|
|
|
175
100
|
;
|
|
176
101
|
|
|
177
102
|
|
|
178
|
-
export declare type
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
current_relationships: string[];
|
|
183
|
-
current_status: damlTypes.Optional<OcfStakeholderStatusType>;
|
|
184
|
-
primary_contact: damlTypes.Optional<OcfContactInfo>;
|
|
185
|
-
contact_info: damlTypes.Optional<OcfContactInfoWithoutName>;
|
|
186
|
-
addresses: OcfAddress[];
|
|
187
|
-
tax_ids: OcfTaxID[];
|
|
188
|
-
comments: damlTypes.Optional<string[]>;
|
|
189
|
-
};
|
|
190
|
-
|
|
191
|
-
export declare const OcfStakeholderData:
|
|
192
|
-
damlTypes.Serializable<OcfStakeholderData> & {
|
|
193
|
-
}
|
|
194
|
-
;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
export declare type OcfStockClassData = {
|
|
198
|
-
name: string;
|
|
199
|
-
class_type: OcfStockClassType;
|
|
200
|
-
default_id_prefix: string;
|
|
201
|
-
initial_shares_authorized: damlTypes.Numeric;
|
|
202
|
-
votes_per_share: damlTypes.Numeric;
|
|
203
|
-
seniority: damlTypes.Numeric;
|
|
204
|
-
board_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
205
|
-
stockholder_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
206
|
-
par_value: damlTypes.Optional<OcfMonetary>;
|
|
207
|
-
price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
208
|
-
liquidation_preference_multiple: damlTypes.Optional<damlTypes.Numeric>;
|
|
209
|
-
participation_cap_multiple: damlTypes.Optional<damlTypes.Numeric>;
|
|
210
|
-
conversion_rights: OcfStockClassConversionRight[];
|
|
211
|
-
comments: damlTypes.Optional<string[]>;
|
|
212
|
-
};
|
|
213
|
-
|
|
214
|
-
export declare const OcfStockClassData:
|
|
215
|
-
damlTypes.Serializable<OcfStockClassData> & {
|
|
216
|
-
}
|
|
217
|
-
;
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
export declare type OcfIssuerData = {
|
|
221
|
-
legal_name: string;
|
|
222
|
-
formation_date: damlTypes.Optional<damlTypes.Time>;
|
|
223
|
-
country_of_formation: string;
|
|
224
|
-
dba: damlTypes.Optional<string>;
|
|
225
|
-
country_subdivision_of_formation: damlTypes.Optional<string>;
|
|
226
|
-
country_subdivision_name_of_formation: damlTypes.Optional<string>;
|
|
227
|
-
tax_ids: damlTypes.Optional<OcfTaxID[]>;
|
|
228
|
-
email: damlTypes.Optional<OcfEmail>;
|
|
229
|
-
phone: damlTypes.Optional<OcfPhone>;
|
|
230
|
-
address: damlTypes.Optional<OcfAddress>;
|
|
231
|
-
initial_shares_authorized: damlTypes.Optional<OcfInitialSharesAuthorized>;
|
|
232
|
-
comments: damlTypes.Optional<string[]>;
|
|
233
|
-
};
|
|
234
|
-
|
|
235
|
-
export declare const OcfIssuerData:
|
|
236
|
-
damlTypes.Serializable<OcfIssuerData> & {
|
|
237
|
-
}
|
|
238
|
-
;
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
export declare type OcfStakeholderStatusType =
|
|
242
|
-
| 'OcfStakeholderStatusActive'
|
|
243
|
-
| 'OcfStakeholderStatusLeaveOfAbsence'
|
|
244
|
-
| 'OcfStakeholderStatusTerminationVoluntaryOther'
|
|
245
|
-
| 'OcfStakeholderStatusTerminationVoluntaryGoodCause'
|
|
246
|
-
| 'OcfStakeholderStatusTerminationVoluntaryRetirement'
|
|
247
|
-
| 'OcfStakeholderStatusTerminationInvoluntaryOther'
|
|
248
|
-
| 'OcfStakeholderStatusTerminationInvoluntaryDeath'
|
|
249
|
-
| 'OcfStakeholderStatusTerminationInvoluntaryDisability'
|
|
250
|
-
| 'OcfStakeholderStatusTerminationInvoluntaryWithCause'
|
|
251
|
-
;
|
|
252
|
-
|
|
253
|
-
export declare const OcfStakeholderStatusType:
|
|
254
|
-
damlTypes.Serializable<OcfStakeholderStatusType> & {
|
|
255
|
-
}
|
|
256
|
-
& { readonly keys: OcfStakeholderStatusType[] } & { readonly [e in OcfStakeholderStatusType]: e }
|
|
257
|
-
;
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
export declare type OcfStakeholderType =
|
|
261
|
-
| 'OcfStakeholderTypeIndividual'
|
|
262
|
-
| 'OcfStakeholderTypeInstitution'
|
|
263
|
-
;
|
|
264
|
-
|
|
265
|
-
export declare const OcfStakeholderType:
|
|
266
|
-
damlTypes.Serializable<OcfStakeholderType> & {
|
|
267
|
-
}
|
|
268
|
-
& { readonly keys: OcfStakeholderType[] } & { readonly [e in OcfStakeholderType]: e }
|
|
269
|
-
;
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
export declare type OcfContactInfoWithoutName = {
|
|
273
|
-
email: damlTypes.Optional<OcfEmail>;
|
|
274
|
-
phone: damlTypes.Optional<OcfPhone>;
|
|
275
|
-
address: damlTypes.Optional<OcfAddress>;
|
|
276
|
-
};
|
|
277
|
-
|
|
278
|
-
export declare const OcfContactInfoWithoutName:
|
|
279
|
-
damlTypes.Serializable<OcfContactInfoWithoutName> & {
|
|
280
|
-
}
|
|
281
|
-
;
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
export declare type OcfContactInfo = {
|
|
285
|
-
name: string;
|
|
286
|
-
email: damlTypes.Optional<OcfEmail>;
|
|
287
|
-
phone: damlTypes.Optional<OcfPhone>;
|
|
288
|
-
address: damlTypes.Optional<OcfAddress>;
|
|
289
|
-
};
|
|
290
|
-
|
|
291
|
-
export declare const OcfContactInfo:
|
|
292
|
-
damlTypes.Serializable<OcfContactInfo> & {
|
|
293
|
-
}
|
|
294
|
-
;
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export declare type OcfStockPlanData = {
|
|
298
|
-
plan_name: string;
|
|
299
|
-
board_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
300
|
-
stockholder_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
301
|
-
initial_shares_reserved: damlTypes.Numeric;
|
|
302
|
-
default_cancellation_behavior: damlTypes.Optional<OcfStockPlanCancellationBehaviorType>;
|
|
303
|
-
comments: damlTypes.Optional<string[]>;
|
|
304
|
-
};
|
|
305
|
-
|
|
306
|
-
export declare const OcfStockPlanData:
|
|
307
|
-
damlTypes.Serializable<OcfStockPlanData> & {
|
|
308
|
-
}
|
|
309
|
-
;
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
export declare type OcfStockPlanCancellationBehaviorType =
|
|
313
|
-
| 'OcfPlanCancelRetire'
|
|
314
|
-
| 'OcfPlanCancelReturnToPool'
|
|
315
|
-
| 'OcfPlanCancelHoldAsCapitalStock'
|
|
316
|
-
| 'OcfPlanCancelDefinedPerPlanSecurity'
|
|
317
|
-
;
|
|
318
|
-
|
|
319
|
-
export declare const OcfStockPlanCancellationBehaviorType:
|
|
320
|
-
damlTypes.Serializable<OcfStockPlanCancellationBehaviorType> & {
|
|
321
|
-
}
|
|
322
|
-
& { readonly keys: OcfStockPlanCancellationBehaviorType[] } & { readonly [e in OcfStockPlanCancellationBehaviorType]: e }
|
|
323
|
-
;
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
export declare type OcfStockLegendTemplateData = {
|
|
327
|
-
name: string;
|
|
328
|
-
text: string;
|
|
329
|
-
comments: damlTypes.Optional<string[]>;
|
|
330
|
-
};
|
|
331
|
-
|
|
332
|
-
export declare const OcfStockLegendTemplateData:
|
|
333
|
-
damlTypes.Serializable<OcfStockLegendTemplateData> & {
|
|
334
|
-
}
|
|
335
|
-
;
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
export declare type OcfVestingTermsData = {
|
|
339
|
-
name: string;
|
|
340
|
-
description: string;
|
|
341
|
-
allocation_type: OcfAllocationType;
|
|
342
|
-
vesting_conditions: OcfVestingCondition[];
|
|
343
|
-
comments: damlTypes.Optional<string[]>;
|
|
103
|
+
export declare type Context = {
|
|
104
|
+
issuer: damlTypes.Party;
|
|
105
|
+
system_operator: damlTypes.Party;
|
|
106
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
344
107
|
};
|
|
345
108
|
|
|
346
|
-
export declare const
|
|
347
|
-
damlTypes.Serializable<
|
|
348
|
-
}
|
|
349
|
-
;
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
export declare type OcfVestingCondition = {
|
|
353
|
-
id_: string;
|
|
354
|
-
description: damlTypes.Optional<string>;
|
|
355
|
-
portion: damlTypes.Optional<OcfVestingConditionPortion>;
|
|
356
|
-
quantity: damlTypes.Optional<damlTypes.Numeric>;
|
|
357
|
-
trigger: OcfVestingTrigger;
|
|
358
|
-
next_condition_ids: string[];
|
|
359
|
-
};
|
|
360
|
-
|
|
361
|
-
export declare const OcfVestingCondition:
|
|
362
|
-
damlTypes.Serializable<OcfVestingCondition> & {
|
|
363
|
-
}
|
|
364
|
-
;
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
export declare type OcfVestingConditionPortion = {
|
|
368
|
-
numerator: damlTypes.Numeric;
|
|
369
|
-
denominator: damlTypes.Numeric;
|
|
370
|
-
remainder: boolean;
|
|
371
|
-
};
|
|
372
|
-
|
|
373
|
-
export declare const OcfVestingConditionPortion:
|
|
374
|
-
damlTypes.Serializable<OcfVestingConditionPortion> & {
|
|
375
|
-
}
|
|
376
|
-
;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
export declare type OcfVestingTrigger =
|
|
380
|
-
| { tag: 'OcfVestingStartTrigger'; value: {} }
|
|
381
|
-
| { tag: 'OcfVestingScheduleAbsoluteTrigger'; value: damlTypes.Time }
|
|
382
|
-
| { tag: 'OcfVestingScheduleRelativeTrigger'; value: OcfVestingTrigger.OcfVestingScheduleRelativeTrigger }
|
|
383
|
-
| { tag: 'OcfVestingEventTrigger'; value: {} }
|
|
384
|
-
;
|
|
385
|
-
|
|
386
|
-
export declare const OcfVestingTrigger:
|
|
387
|
-
damlTypes.Serializable<OcfVestingTrigger> & {
|
|
388
|
-
OcfVestingScheduleRelativeTrigger: damlTypes.Serializable<OcfVestingTrigger.OcfVestingScheduleRelativeTrigger>;
|
|
389
|
-
}
|
|
390
|
-
;
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
export namespace OcfVestingTrigger {
|
|
394
|
-
type OcfVestingScheduleRelativeTrigger = {
|
|
395
|
-
period: OcfVestingPeriod;
|
|
396
|
-
relative_to_condition_id: string;
|
|
397
|
-
};
|
|
398
|
-
} //namespace OcfVestingTrigger
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
export declare type OcfVestingPeriod =
|
|
402
|
-
| { tag: 'OcfVestingPeriodDays'; value: damlTypes.Int }
|
|
403
|
-
| { tag: 'OcfVestingPeriodMonths'; value: damlTypes.Int }
|
|
404
|
-
;
|
|
405
|
-
|
|
406
|
-
export declare const OcfVestingPeriod:
|
|
407
|
-
damlTypes.Serializable<OcfVestingPeriod> & {
|
|
408
|
-
}
|
|
409
|
-
;
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
export declare type OcfAllocationType =
|
|
413
|
-
| 'OcfAllocationCumulativeRounding'
|
|
414
|
-
| 'OcfAllocationCumulativeRoundDown'
|
|
415
|
-
| 'OcfAllocationFrontLoaded'
|
|
416
|
-
| 'OcfAllocationBackLoaded'
|
|
417
|
-
| 'OcfAllocationFrontLoadedToSingleTranche'
|
|
418
|
-
| 'OcfAllocationBackLoadedToSingleTranche'
|
|
419
|
-
| 'OcfAllocationFractional'
|
|
420
|
-
;
|
|
421
|
-
|
|
422
|
-
export declare const OcfAllocationType:
|
|
423
|
-
damlTypes.Serializable<OcfAllocationType> & {
|
|
109
|
+
export declare const Context:
|
|
110
|
+
damlTypes.Serializable<Context> & {
|
|
424
111
|
}
|
|
425
|
-
& { readonly keys: OcfAllocationType[] } & { readonly [e in OcfAllocationType]: e }
|
|
426
112
|
;
|
|
427
113
|
|
|
428
114
|
|
|
@@ -513,193 +199,6 @@ export declare const OcfCompensationType:
|
|
|
513
199
|
;
|
|
514
200
|
|
|
515
201
|
|
|
516
|
-
export declare type OcfValuationData = {
|
|
517
|
-
provider: damlTypes.Optional<string>;
|
|
518
|
-
board_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
519
|
-
stockholder_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
520
|
-
comments: damlTypes.Optional<string[]>;
|
|
521
|
-
price_per_share: OcfMonetary;
|
|
522
|
-
effective_date: damlTypes.Time;
|
|
523
|
-
valuation_type: OcfValuationType;
|
|
524
|
-
};
|
|
525
|
-
|
|
526
|
-
export declare const OcfValuationData:
|
|
527
|
-
damlTypes.Serializable<OcfValuationData> & {
|
|
528
|
-
}
|
|
529
|
-
;
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
export declare type OcfValuationType =
|
|
533
|
-
| 'OcfValuationType409A'
|
|
534
|
-
;
|
|
535
|
-
|
|
536
|
-
export declare const OcfValuationType:
|
|
537
|
-
damlTypes.Serializable<OcfValuationType> & {
|
|
538
|
-
}
|
|
539
|
-
& { readonly keys: OcfValuationType[] } & { readonly [e in OcfValuationType]: e }
|
|
540
|
-
;
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
export declare type OcfValuationBasedFormulaType =
|
|
544
|
-
| 'OcfValuationFormulaFixed'
|
|
545
|
-
| 'OcfValuationFormulaActual'
|
|
546
|
-
| 'OcfValuationFormulaCap'
|
|
547
|
-
;
|
|
548
|
-
|
|
549
|
-
export declare const OcfValuationBasedFormulaType:
|
|
550
|
-
damlTypes.Serializable<OcfValuationBasedFormulaType> & {
|
|
551
|
-
}
|
|
552
|
-
& { readonly keys: OcfValuationBasedFormulaType[] } & { readonly [e in OcfValuationBasedFormulaType]: e }
|
|
553
|
-
;
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
export declare type OcfStockIssuanceType =
|
|
557
|
-
| 'OcfStockIssuanceRSA'
|
|
558
|
-
| 'OcfStockIssuanceFounders'
|
|
559
|
-
;
|
|
560
|
-
|
|
561
|
-
export declare const OcfStockIssuanceType:
|
|
562
|
-
damlTypes.Serializable<OcfStockIssuanceType> & {
|
|
563
|
-
}
|
|
564
|
-
& { readonly keys: OcfStockIssuanceType[] } & { readonly [e in OcfStockIssuanceType]: e }
|
|
565
|
-
;
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
export declare type OcfQuantitySourceType =
|
|
569
|
-
| 'OcfQuantityHumanEstimated'
|
|
570
|
-
| 'OcfQuantityMachineEstimated'
|
|
571
|
-
| 'OcfQuantityUnspecified'
|
|
572
|
-
| 'OcfQuantityInstrumentFixed'
|
|
573
|
-
| 'OcfQuantityInstrumentMax'
|
|
574
|
-
| 'OcfQuantityInstrumentMin'
|
|
575
|
-
;
|
|
576
|
-
|
|
577
|
-
export declare const OcfQuantitySourceType:
|
|
578
|
-
damlTypes.Serializable<OcfQuantitySourceType> & {
|
|
579
|
-
}
|
|
580
|
-
& { readonly keys: OcfQuantitySourceType[] } & { readonly [e in OcfQuantitySourceType]: e }
|
|
581
|
-
;
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
export declare type OcfFinancing = {
|
|
585
|
-
name: string;
|
|
586
|
-
issuance_ids: string[];
|
|
587
|
-
date: damlTypes.Time;
|
|
588
|
-
comments: damlTypes.Optional<string[]>;
|
|
589
|
-
};
|
|
590
|
-
|
|
591
|
-
export declare const OcfFinancing:
|
|
592
|
-
damlTypes.Serializable<OcfFinancing> & {
|
|
593
|
-
}
|
|
594
|
-
;
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
export declare type OcfDocument = {
|
|
598
|
-
path: damlTypes.Optional<string>;
|
|
599
|
-
uri: damlTypes.Optional<string>;
|
|
600
|
-
md5: string;
|
|
601
|
-
related_objects: damlTypes.Optional<string[]>;
|
|
602
|
-
comments: damlTypes.Optional<string[]>;
|
|
603
|
-
};
|
|
604
|
-
|
|
605
|
-
export declare const OcfDocument:
|
|
606
|
-
damlTypes.Serializable<OcfDocument> & {
|
|
607
|
-
}
|
|
608
|
-
;
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
export declare type OcfStockClassConversionRight = {
|
|
612
|
-
type_: string;
|
|
613
|
-
conversion_mechanism: OcfConversionMechanism;
|
|
614
|
-
conversion_trigger: OcfConversionTrigger;
|
|
615
|
-
converts_to_stock_class_id: string;
|
|
616
|
-
ratio: damlTypes.Optional<OcfRatio>;
|
|
617
|
-
percent_of_capitalization: damlTypes.Optional<damlTypes.Numeric>;
|
|
618
|
-
conversion_price: damlTypes.Optional<OcfMonetary>;
|
|
619
|
-
reference_share_price: damlTypes.Optional<OcfMonetary>;
|
|
620
|
-
reference_valuation_price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
621
|
-
discount_rate: damlTypes.Optional<damlTypes.Numeric>;
|
|
622
|
-
valuation_cap: damlTypes.Optional<OcfMonetary>;
|
|
623
|
-
floor_price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
624
|
-
ceiling_price_per_share: damlTypes.Optional<OcfMonetary>;
|
|
625
|
-
custom_description: damlTypes.Optional<string>;
|
|
626
|
-
expires_at: damlTypes.Optional<damlTypes.Time>;
|
|
627
|
-
};
|
|
628
|
-
|
|
629
|
-
export declare const OcfStockClassConversionRight:
|
|
630
|
-
damlTypes.Serializable<OcfStockClassConversionRight> & {
|
|
631
|
-
}
|
|
632
|
-
;
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
export declare type OcfRatio = {
|
|
636
|
-
numerator: damlTypes.Numeric;
|
|
637
|
-
denominator: damlTypes.Numeric;
|
|
638
|
-
};
|
|
639
|
-
|
|
640
|
-
export declare const OcfRatio:
|
|
641
|
-
damlTypes.Serializable<OcfRatio> & {
|
|
642
|
-
}
|
|
643
|
-
;
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
export declare type OcfConversionTrigger =
|
|
647
|
-
| 'OcfTriggerAutomaticOnCondition'
|
|
648
|
-
| 'OcfTriggerAutomaticOnDate'
|
|
649
|
-
| 'OcfTriggerElectiveInRange'
|
|
650
|
-
| 'OcfTriggerElectiveOnCondition'
|
|
651
|
-
| 'OcfTriggerElectiveAtWill'
|
|
652
|
-
| 'OcfTriggerUnspecified'
|
|
653
|
-
;
|
|
654
|
-
|
|
655
|
-
export declare const OcfConversionTrigger:
|
|
656
|
-
damlTypes.Serializable<OcfConversionTrigger> & {
|
|
657
|
-
}
|
|
658
|
-
& { readonly keys: OcfConversionTrigger[] } & { readonly [e in OcfConversionTrigger]: e }
|
|
659
|
-
;
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
export declare type OcfConversionMechanism =
|
|
663
|
-
| 'OcfConversionMechanismRatioConversion'
|
|
664
|
-
| 'OcfConversionMechanismPercentCapitalizationConversion'
|
|
665
|
-
| 'OcfConversionMechanismFixedAmountConversion'
|
|
666
|
-
| 'OcfConversionMechanismValuationBasedConversion'
|
|
667
|
-
| 'OcfConversionMechanismSharePriceBasedConversion'
|
|
668
|
-
| 'OcfConversionMechanismSAFEConversion'
|
|
669
|
-
| 'OcfConversionMechanismNoteConversion'
|
|
670
|
-
| 'OcfConversionMechanismCustomConversion'
|
|
671
|
-
;
|
|
672
|
-
|
|
673
|
-
export declare const OcfConversionMechanism:
|
|
674
|
-
damlTypes.Serializable<OcfConversionMechanism> & {
|
|
675
|
-
}
|
|
676
|
-
& { readonly keys: OcfConversionMechanism[] } & { readonly [e in OcfConversionMechanism]: e }
|
|
677
|
-
;
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
export declare type OcfInitialSharesAuthorized =
|
|
681
|
-
| { tag: 'OcfInitialSharesNumeric'; value: damlTypes.Numeric }
|
|
682
|
-
| { tag: 'OcfInitialSharesEnum'; value: OcfAuthorizedShares }
|
|
683
|
-
;
|
|
684
|
-
|
|
685
|
-
export declare const OcfInitialSharesAuthorized:
|
|
686
|
-
damlTypes.Serializable<OcfInitialSharesAuthorized> & {
|
|
687
|
-
}
|
|
688
|
-
;
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
export declare type OcfAuthorizedShares =
|
|
692
|
-
| 'OcfAuthorizedSharesNotApplicable'
|
|
693
|
-
| 'OcfAuthorizedSharesUnlimited'
|
|
694
|
-
;
|
|
695
|
-
|
|
696
|
-
export declare const OcfAuthorizedShares:
|
|
697
|
-
damlTypes.Serializable<OcfAuthorizedShares> & {
|
|
698
|
-
}
|
|
699
|
-
& { readonly keys: OcfAuthorizedShares[] } & { readonly [e in OcfAuthorizedShares]: e }
|
|
700
|
-
;
|
|
701
|
-
|
|
702
|
-
|
|
703
202
|
export declare type OcfMonetary = {
|
|
704
203
|
amount: damlTypes.Numeric;
|
|
705
204
|
currency: string;
|
|
@@ -711,18 +210,6 @@ export declare const OcfMonetary:
|
|
|
711
210
|
;
|
|
712
211
|
|
|
713
212
|
|
|
714
|
-
export declare type OcfStockClassType =
|
|
715
|
-
| 'OcfStockClassTypeCommon'
|
|
716
|
-
| 'OcfStockClassTypePreferred'
|
|
717
|
-
;
|
|
718
|
-
|
|
719
|
-
export declare const OcfStockClassType:
|
|
720
|
-
damlTypes.Serializable<OcfStockClassType> & {
|
|
721
|
-
}
|
|
722
|
-
& { readonly keys: OcfStockClassType[] } & { readonly [e in OcfStockClassType]: e }
|
|
723
|
-
;
|
|
724
|
-
|
|
725
|
-
|
|
726
213
|
export declare type OcfAddress = {
|
|
727
214
|
address_type: OcfAddressType;
|
|
728
215
|
street_suite: damlTypes.Optional<string>;
|
|
@@ -797,50 +284,6 @@ export declare const OcfEmailType:
|
|
|
797
284
|
;
|
|
798
285
|
|
|
799
286
|
|
|
800
|
-
export declare type OcfWarrantIssuanceData = {
|
|
801
|
-
quantity: damlTypes.Numeric;
|
|
802
|
-
exercise_price: OcfMonetary;
|
|
803
|
-
purchase_price: OcfMonetary;
|
|
804
|
-
exercise_triggers: OcfConversionTrigger[];
|
|
805
|
-
warrant_expiration_date: damlTypes.Optional<damlTypes.Time>;
|
|
806
|
-
vesting_terms_id: damlTypes.Optional<string>;
|
|
807
|
-
comments: damlTypes.Optional<string[]>;
|
|
808
|
-
};
|
|
809
|
-
|
|
810
|
-
export declare const OcfWarrantIssuanceData:
|
|
811
|
-
damlTypes.Serializable<OcfWarrantIssuanceData> & {
|
|
812
|
-
}
|
|
813
|
-
;
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
export declare type OcfConvertibleIssuanceData = {
|
|
817
|
-
investment_amount: OcfMonetary;
|
|
818
|
-
convertible_type: OcfConvertibleType;
|
|
819
|
-
conversion_triggers: OcfConversionTrigger[];
|
|
820
|
-
seniority: damlTypes.Int;
|
|
821
|
-
pro_rata: damlTypes.Optional<damlTypes.Numeric>;
|
|
822
|
-
comments: damlTypes.Optional<string[]>;
|
|
823
|
-
};
|
|
824
|
-
|
|
825
|
-
export declare const OcfConvertibleIssuanceData:
|
|
826
|
-
damlTypes.Serializable<OcfConvertibleIssuanceData> & {
|
|
827
|
-
}
|
|
828
|
-
;
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
export declare type OcfConvertibleType =
|
|
832
|
-
| 'OcfConvertibleNote'
|
|
833
|
-
| 'OcfConvertibleSafe'
|
|
834
|
-
| 'OcfConvertibleSecurity'
|
|
835
|
-
;
|
|
836
|
-
|
|
837
|
-
export declare const OcfConvertibleType:
|
|
838
|
-
damlTypes.Serializable<OcfConvertibleType> & {
|
|
839
|
-
}
|
|
840
|
-
& { readonly keys: OcfConvertibleType[] } & { readonly [e in OcfConvertibleType]: e }
|
|
841
|
-
;
|
|
842
|
-
|
|
843
|
-
|
|
844
287
|
export declare type OcfParentSecurityType =
|
|
845
288
|
| 'OcfParentStockPlan'
|
|
846
289
|
| 'OcfParentStock'
|