@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './module';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable-next-line no-unused-vars */
|
|
3
|
+
function __export(m) {
|
|
4
|
+
/* eslint-disable-next-line no-prototype-builtins */
|
|
5
|
+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
6
|
+
}
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
__export(require('./module'));
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
// Generated from Fairmint/OpenCapTable/StockPlan.daml
|
|
2
|
+
/* eslint-disable @typescript-eslint/camelcase */
|
|
3
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
4
|
+
/* eslint-disable @typescript-eslint/no-use-before-define */
|
|
5
|
+
import * as jtv from '@mojotech/json-type-validation';
|
|
6
|
+
import * as damlTypes from '@daml/types';
|
|
7
|
+
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
|
|
8
|
+
import * as damlLedger from '@daml/ledger';
|
|
9
|
+
|
|
10
|
+
import * as pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda from '../../../Splice/Api/FeaturedAppRightV1';
|
|
11
|
+
import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '../../../DA/Internal/Template';
|
|
12
|
+
|
|
13
|
+
import * as Fairmint_OpenCapTable_StockClass from '../../../Fairmint/OpenCapTable/StockClass/module';
|
|
14
|
+
import * as Fairmint_OpenCapTable_Types from '../../../Fairmint/OpenCapTable/Types/module';
|
|
15
|
+
import * as Fairmint_OpenCapTable_VestingTerms from '../../../Fairmint/OpenCapTable/VestingTerms/module';
|
|
16
|
+
|
|
17
|
+
export declare type PlanSecurityExerciseEvent = {
|
|
18
|
+
issuer: damlTypes.Party;
|
|
19
|
+
system_operator: damlTypes.Party;
|
|
20
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
21
|
+
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
22
|
+
stakeholder: damlTypes.Party;
|
|
23
|
+
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
24
|
+
quantity: damlTypes.Numeric;
|
|
25
|
+
date: damlTypes.Time;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
export declare interface PlanSecurityExerciseEventInterface {
|
|
29
|
+
Archive: damlTypes.Choice<PlanSecurityExerciseEvent, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityExerciseEvent, undefined>>;
|
|
30
|
+
}
|
|
31
|
+
export declare const PlanSecurityExerciseEvent:
|
|
32
|
+
damlTypes.Template<PlanSecurityExerciseEvent, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityExerciseEvent'> &
|
|
33
|
+
damlTypes.ToInterface<PlanSecurityExerciseEvent, never> &
|
|
34
|
+
PlanSecurityExerciseEventInterface;
|
|
35
|
+
|
|
36
|
+
export declare namespace PlanSecurityExerciseEvent {
|
|
37
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityExerciseEvent, undefined, typeof PlanSecurityExerciseEvent.templateId>
|
|
38
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityExerciseEvent, typeof PlanSecurityExerciseEvent.templateId>
|
|
39
|
+
export type Event = damlLedger.Event<PlanSecurityExerciseEvent, undefined, typeof PlanSecurityExerciseEvent.templateId>
|
|
40
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityExerciseEvent, undefined, typeof PlanSecurityExerciseEvent.templateId>
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
export declare type PlanSecurityRetraction = {
|
|
46
|
+
issuer: damlTypes.Party;
|
|
47
|
+
system_operator: damlTypes.Party;
|
|
48
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
49
|
+
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
50
|
+
stakeholder: damlTypes.Party;
|
|
51
|
+
date: damlTypes.Time;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export declare interface PlanSecurityRetractionInterface {
|
|
55
|
+
Archive: damlTypes.Choice<PlanSecurityRetraction, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityRetraction, undefined>>;
|
|
56
|
+
}
|
|
57
|
+
export declare const PlanSecurityRetraction:
|
|
58
|
+
damlTypes.Template<PlanSecurityRetraction, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityRetraction'> &
|
|
59
|
+
damlTypes.ToInterface<PlanSecurityRetraction, never> &
|
|
60
|
+
PlanSecurityRetractionInterface;
|
|
61
|
+
|
|
62
|
+
export declare namespace PlanSecurityRetraction {
|
|
63
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityRetraction, undefined, typeof PlanSecurityRetraction.templateId>
|
|
64
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityRetraction, typeof PlanSecurityRetraction.templateId>
|
|
65
|
+
export type Event = damlLedger.Event<PlanSecurityRetraction, undefined, typeof PlanSecurityRetraction.templateId>
|
|
66
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityRetraction, undefined, typeof PlanSecurityRetraction.templateId>
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
export declare type PlanSecurityRelease = {
|
|
72
|
+
issuer: damlTypes.Party;
|
|
73
|
+
system_operator: damlTypes.Party;
|
|
74
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
75
|
+
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
76
|
+
stakeholder: damlTypes.Party;
|
|
77
|
+
date: damlTypes.Time;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export declare interface PlanSecurityReleaseInterface {
|
|
81
|
+
Archive: damlTypes.Choice<PlanSecurityRelease, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityRelease, undefined>>;
|
|
82
|
+
}
|
|
83
|
+
export declare const PlanSecurityRelease:
|
|
84
|
+
damlTypes.Template<PlanSecurityRelease, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityRelease'> &
|
|
85
|
+
damlTypes.ToInterface<PlanSecurityRelease, never> &
|
|
86
|
+
PlanSecurityReleaseInterface;
|
|
87
|
+
|
|
88
|
+
export declare namespace PlanSecurityRelease {
|
|
89
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityRelease, undefined, typeof PlanSecurityRelease.templateId>
|
|
90
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityRelease, typeof PlanSecurityRelease.templateId>
|
|
91
|
+
export type Event = damlLedger.Event<PlanSecurityRelease, undefined, typeof PlanSecurityRelease.templateId>
|
|
92
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityRelease, undefined, typeof PlanSecurityRelease.templateId>
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
export declare type PlanSecurityCancellation = {
|
|
98
|
+
issuer: damlTypes.Party;
|
|
99
|
+
system_operator: damlTypes.Party;
|
|
100
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
101
|
+
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
102
|
+
stakeholder: damlTypes.Party;
|
|
103
|
+
date: damlTypes.Time;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export declare interface PlanSecurityCancellationInterface {
|
|
107
|
+
Archive: damlTypes.Choice<PlanSecurityCancellation, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityCancellation, undefined>>;
|
|
108
|
+
}
|
|
109
|
+
export declare const PlanSecurityCancellation:
|
|
110
|
+
damlTypes.Template<PlanSecurityCancellation, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityCancellation'> &
|
|
111
|
+
damlTypes.ToInterface<PlanSecurityCancellation, never> &
|
|
112
|
+
PlanSecurityCancellationInterface;
|
|
113
|
+
|
|
114
|
+
export declare namespace PlanSecurityCancellation {
|
|
115
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityCancellation, undefined, typeof PlanSecurityCancellation.templateId>
|
|
116
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityCancellation, typeof PlanSecurityCancellation.templateId>
|
|
117
|
+
export type Event = damlLedger.Event<PlanSecurityCancellation, undefined, typeof PlanSecurityCancellation.templateId>
|
|
118
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityCancellation, undefined, typeof PlanSecurityCancellation.templateId>
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
export declare type PlanSecurityAcceptance = {
|
|
124
|
+
issuer: damlTypes.Party;
|
|
125
|
+
system_operator: damlTypes.Party;
|
|
126
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
127
|
+
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
128
|
+
stakeholder: damlTypes.Party;
|
|
129
|
+
date: damlTypes.Time;
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
export declare interface PlanSecurityAcceptanceInterface {
|
|
133
|
+
Archive: damlTypes.Choice<PlanSecurityAcceptance, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityAcceptance, undefined>>;
|
|
134
|
+
}
|
|
135
|
+
export declare const PlanSecurityAcceptance:
|
|
136
|
+
damlTypes.Template<PlanSecurityAcceptance, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityAcceptance'> &
|
|
137
|
+
damlTypes.ToInterface<PlanSecurityAcceptance, never> &
|
|
138
|
+
PlanSecurityAcceptanceInterface;
|
|
139
|
+
|
|
140
|
+
export declare namespace PlanSecurityAcceptance {
|
|
141
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityAcceptance, undefined, typeof PlanSecurityAcceptance.templateId>
|
|
142
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityAcceptance, typeof PlanSecurityAcceptance.templateId>
|
|
143
|
+
export type Event = damlLedger.Event<PlanSecurityAcceptance, undefined, typeof PlanSecurityAcceptance.templateId>
|
|
144
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityAcceptance, undefined, typeof PlanSecurityAcceptance.templateId>
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
export declare type PlanSecurityVestingStart = {
|
|
150
|
+
issuer: damlTypes.Party;
|
|
151
|
+
system_operator: damlTypes.Party;
|
|
152
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
153
|
+
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
154
|
+
vesting_condition_id: string;
|
|
155
|
+
date: damlTypes.Time;
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
export declare interface PlanSecurityVestingStartInterface {
|
|
159
|
+
Archive: damlTypes.Choice<PlanSecurityVestingStart, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityVestingStart, undefined>>;
|
|
160
|
+
}
|
|
161
|
+
export declare const PlanSecurityVestingStart:
|
|
162
|
+
damlTypes.Template<PlanSecurityVestingStart, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityVestingStart'> &
|
|
163
|
+
damlTypes.ToInterface<PlanSecurityVestingStart, never> &
|
|
164
|
+
PlanSecurityVestingStartInterface;
|
|
165
|
+
|
|
166
|
+
export declare namespace PlanSecurityVestingStart {
|
|
167
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityVestingStart, undefined, typeof PlanSecurityVestingStart.templateId>
|
|
168
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityVestingStart, typeof PlanSecurityVestingStart.templateId>
|
|
169
|
+
export type Event = damlLedger.Event<PlanSecurityVestingStart, undefined, typeof PlanSecurityVestingStart.templateId>
|
|
170
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityVestingStart, undefined, typeof PlanSecurityVestingStart.templateId>
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
export declare type IssuePlanSecurity = {
|
|
176
|
+
stakeholder: damlTypes.Party;
|
|
177
|
+
issuance_data: Fairmint_OpenCapTable_Types.OcfEquityCompensationIssuanceData;
|
|
178
|
+
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
179
|
+
vesting_terms: damlTypes.Optional<damlTypes.ContractId<Fairmint_OpenCapTable_VestingTerms.VestingTerms>>;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
export declare const IssuePlanSecurity:
|
|
183
|
+
damlTypes.Serializable<IssuePlanSecurity> & {
|
|
184
|
+
}
|
|
185
|
+
;
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
export declare type UpdateStockPlan = {
|
|
189
|
+
new_plan_data: Fairmint_OpenCapTable_Types.OcfStockPlanData;
|
|
190
|
+
new_stock_classes: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>[];
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
export declare const UpdateStockPlan:
|
|
194
|
+
damlTypes.Serializable<UpdateStockPlan> & {
|
|
195
|
+
}
|
|
196
|
+
;
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
export declare type StockPlan = {
|
|
200
|
+
issuer: damlTypes.Party;
|
|
201
|
+
system_operator: damlTypes.Party;
|
|
202
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
203
|
+
stock_classes: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>[];
|
|
204
|
+
plan_data: Fairmint_OpenCapTable_Types.OcfStockPlanData;
|
|
205
|
+
};
|
|
206
|
+
|
|
207
|
+
export declare interface StockPlanInterface {
|
|
208
|
+
Archive: damlTypes.Choice<StockPlan, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
209
|
+
UpdateStockPlan: damlTypes.Choice<StockPlan, UpdateStockPlan, damlTypes.ContractId<StockPlan>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
210
|
+
IssuePlanSecurity: damlTypes.Choice<StockPlan, IssuePlanSecurity, damlTypes.ContractId<PlanSecurityGrant>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
211
|
+
}
|
|
212
|
+
export declare const StockPlan:
|
|
213
|
+
damlTypes.Template<StockPlan, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:StockPlan'> &
|
|
214
|
+
damlTypes.ToInterface<StockPlan, never> &
|
|
215
|
+
StockPlanInterface;
|
|
216
|
+
|
|
217
|
+
export declare namespace StockPlan {
|
|
218
|
+
export type CreateEvent = damlLedger.CreateEvent<StockPlan, undefined, typeof StockPlan.templateId>
|
|
219
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<StockPlan, typeof StockPlan.templateId>
|
|
220
|
+
export type Event = damlLedger.Event<StockPlan, undefined, typeof StockPlan.templateId>
|
|
221
|
+
export type QueryResult = damlLedger.QueryResult<StockPlan, undefined, typeof StockPlan.templateId>
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
export declare type ExerciseGrant = {
|
|
227
|
+
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
228
|
+
quantity: damlTypes.Numeric;
|
|
229
|
+
date: damlTypes.Time;
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
export declare const ExerciseGrant:
|
|
233
|
+
damlTypes.Serializable<ExerciseGrant> & {
|
|
234
|
+
}
|
|
235
|
+
;
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
export declare type RetractGrant = {
|
|
239
|
+
date: damlTypes.Time;
|
|
240
|
+
};
|
|
241
|
+
|
|
242
|
+
export declare const RetractGrant:
|
|
243
|
+
damlTypes.Serializable<RetractGrant> & {
|
|
244
|
+
}
|
|
245
|
+
;
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
export declare type ReleaseGrant = {
|
|
249
|
+
date: damlTypes.Time;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export declare const ReleaseGrant:
|
|
253
|
+
damlTypes.Serializable<ReleaseGrant> & {
|
|
254
|
+
}
|
|
255
|
+
;
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
export declare type CancelGrant = {
|
|
259
|
+
date: damlTypes.Time;
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
export declare const CancelGrant:
|
|
263
|
+
damlTypes.Serializable<CancelGrant> & {
|
|
264
|
+
}
|
|
265
|
+
;
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
export declare type AcceptGrant = {
|
|
269
|
+
date: damlTypes.Time;
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
export declare const AcceptGrant:
|
|
273
|
+
damlTypes.Serializable<AcceptGrant> & {
|
|
274
|
+
}
|
|
275
|
+
;
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
export declare type StartVesting = {
|
|
279
|
+
vesting_condition_id: string;
|
|
280
|
+
date: damlTypes.Time;
|
|
281
|
+
};
|
|
282
|
+
|
|
283
|
+
export declare const StartVesting:
|
|
284
|
+
damlTypes.Serializable<StartVesting> & {
|
|
285
|
+
}
|
|
286
|
+
;
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
export declare type UpdateIssuanceData = {
|
|
290
|
+
new_issuance_data: Fairmint_OpenCapTable_Types.OcfEquityCompensationIssuanceData;
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
export declare const UpdateIssuanceData:
|
|
294
|
+
damlTypes.Serializable<UpdateIssuanceData> & {
|
|
295
|
+
}
|
|
296
|
+
;
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
export declare type PlanSecurityGrant = {
|
|
300
|
+
issuer: damlTypes.Party;
|
|
301
|
+
system_operator: damlTypes.Party;
|
|
302
|
+
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
303
|
+
stock_plan: damlTypes.Optional<damlTypes.ContractId<StockPlan>>;
|
|
304
|
+
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
305
|
+
stakeholder: damlTypes.Party;
|
|
306
|
+
vesting_terms: damlTypes.Optional<damlTypes.ContractId<Fairmint_OpenCapTable_VestingTerms.VestingTerms>>;
|
|
307
|
+
issuance_data: Fairmint_OpenCapTable_Types.OcfEquityCompensationIssuanceData;
|
|
308
|
+
};
|
|
309
|
+
|
|
310
|
+
export declare interface PlanSecurityGrantInterface {
|
|
311
|
+
StartVesting: damlTypes.Choice<PlanSecurityGrant, StartVesting, damlTypes.ContractId<PlanSecurityVestingStart>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
312
|
+
Archive: damlTypes.Choice<PlanSecurityGrant, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
313
|
+
ExerciseGrant: damlTypes.Choice<PlanSecurityGrant, ExerciseGrant, damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockPosition>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
314
|
+
UpdateIssuanceData: damlTypes.Choice<PlanSecurityGrant, UpdateIssuanceData, damlTypes.ContractId<PlanSecurityGrant>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
315
|
+
AcceptGrant: damlTypes.Choice<PlanSecurityGrant, AcceptGrant, damlTypes.ContractId<PlanSecurityAcceptance>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
316
|
+
CancelGrant: damlTypes.Choice<PlanSecurityGrant, CancelGrant, damlTypes.ContractId<PlanSecurityCancellation>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
317
|
+
ReleaseGrant: damlTypes.Choice<PlanSecurityGrant, ReleaseGrant, damlTypes.ContractId<PlanSecurityRelease>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
318
|
+
RetractGrant: damlTypes.Choice<PlanSecurityGrant, RetractGrant, damlTypes.ContractId<PlanSecurityRetraction>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
319
|
+
}
|
|
320
|
+
export declare const PlanSecurityGrant:
|
|
321
|
+
damlTypes.Template<PlanSecurityGrant, undefined, '#OpenCapTable-v12:Fairmint.OpenCapTable.StockPlan:PlanSecurityGrant'> &
|
|
322
|
+
damlTypes.ToInterface<PlanSecurityGrant, never> &
|
|
323
|
+
PlanSecurityGrantInterface;
|
|
324
|
+
|
|
325
|
+
export declare namespace PlanSecurityGrant {
|
|
326
|
+
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityGrant, undefined, typeof PlanSecurityGrant.templateId>
|
|
327
|
+
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityGrant, typeof PlanSecurityGrant.templateId>
|
|
328
|
+
export type Event = damlLedger.Event<PlanSecurityGrant, undefined, typeof PlanSecurityGrant.templateId>
|
|
329
|
+
export type QueryResult = damlLedger.QueryResult<PlanSecurityGrant, undefined, typeof PlanSecurityGrant.templateId>
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
|