@fairmint/open-captable-protocol-daml-js 0.1.2 → 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,34 +7,30 @@ 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
|
import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '../../../DA/Internal/Template';
|
|
12
11
|
|
|
13
12
|
import * as Fairmint_OpenCapTable_Types from '../../../Fairmint/OpenCapTable/Types/module';
|
|
14
13
|
|
|
15
|
-
export declare type
|
|
16
|
-
new_template_data: Fairmint_OpenCapTable_Types.OcfStockLegendTemplateData;
|
|
14
|
+
export declare type ArchiveByIssuer = {
|
|
17
15
|
};
|
|
18
16
|
|
|
19
|
-
export declare const
|
|
20
|
-
damlTypes.Serializable<
|
|
17
|
+
export declare const ArchiveByIssuer:
|
|
18
|
+
damlTypes.Serializable<ArchiveByIssuer> & {
|
|
21
19
|
}
|
|
22
20
|
;
|
|
23
21
|
|
|
24
22
|
|
|
25
23
|
export declare type StockLegendTemplate = {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
29
|
-
template_data: Fairmint_OpenCapTable_Types.OcfStockLegendTemplateData;
|
|
24
|
+
context: Fairmint_OpenCapTable_Types.Context;
|
|
25
|
+
template_data: OcfStockLegendTemplateData;
|
|
30
26
|
};
|
|
31
27
|
|
|
32
28
|
export declare interface StockLegendTemplateInterface {
|
|
33
29
|
Archive: damlTypes.Choice<StockLegendTemplate, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockLegendTemplate, undefined>>;
|
|
34
|
-
|
|
30
|
+
ArchiveByIssuer: damlTypes.Choice<StockLegendTemplate, ArchiveByIssuer, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockLegendTemplate, undefined>>;
|
|
35
31
|
}
|
|
36
32
|
export declare const StockLegendTemplate:
|
|
37
|
-
damlTypes.Template<StockLegendTemplate, undefined, '#OpenCapTable-
|
|
33
|
+
damlTypes.Template<StockLegendTemplate, undefined, '#OpenCapTable-v16:Fairmint.OpenCapTable.StockLegendTemplate:StockLegendTemplate'> &
|
|
38
34
|
damlTypes.ToInterface<StockLegendTemplate, never> &
|
|
39
35
|
StockLegendTemplateInterface;
|
|
40
36
|
|
|
@@ -46,3 +42,15 @@ export declare namespace StockLegendTemplate {
|
|
|
46
42
|
}
|
|
47
43
|
|
|
48
44
|
|
|
45
|
+
|
|
46
|
+
export declare type OcfStockLegendTemplateData = {
|
|
47
|
+
name: string;
|
|
48
|
+
text: string;
|
|
49
|
+
comments: damlTypes.Optional<string[]>;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export declare const OcfStockLegendTemplateData:
|
|
53
|
+
damlTypes.Serializable<OcfStockLegendTemplateData> & {
|
|
54
|
+
}
|
|
55
|
+
;
|
|
56
|
+
|
|
@@ -12,17 +12,15 @@ var damlTypes = require('@daml/types');
|
|
|
12
12
|
/* eslint-disable-next-line no-unused-vars */
|
|
13
13
|
var damlLedger = require('@daml/ledger');
|
|
14
14
|
|
|
15
|
-
var pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda = require('../../../Splice/Api/FeaturedAppRightV1');
|
|
16
15
|
var pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 = require('../../../DA/Internal/Template');
|
|
17
16
|
|
|
18
17
|
var Fairmint_OpenCapTable_Types = require('../../../Fairmint/OpenCapTable/Types/module');
|
|
19
18
|
|
|
20
19
|
|
|
21
|
-
exports.
|
|
22
|
-
decoder: damlTypes.lazyMemo(function () { return jtv.object({
|
|
20
|
+
exports.ArchiveByIssuer = {
|
|
21
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({}); }),
|
|
23
22
|
encode: function (__typed__) {
|
|
24
23
|
return {
|
|
25
|
-
new_template_data: Fairmint_OpenCapTable_Types.OcfStockLegendTemplateData.encode(__typed__.new_template_data),
|
|
26
24
|
};
|
|
27
25
|
}
|
|
28
26
|
,
|
|
@@ -32,16 +30,14 @@ exports.UpdateStockLegendTemplate = {
|
|
|
32
30
|
|
|
33
31
|
exports.StockLegendTemplate = damlTypes.assembleTemplate(
|
|
34
32
|
{
|
|
35
|
-
templateId: '#OpenCapTable-
|
|
33
|
+
templateId: '#OpenCapTable-v16:Fairmint.OpenCapTable.StockLegendTemplate:StockLegendTemplate',
|
|
36
34
|
keyDecoder: damlTypes.lazyMemo(function () { return jtv.constant(undefined); }),
|
|
37
35
|
keyEncode: function () { throw 'EncodeError'; },
|
|
38
|
-
decoder: damlTypes.lazyMemo(function () { return jtv.object({
|
|
36
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({context: Fairmint_OpenCapTable_Types.Context.decoder, template_data: exports.OcfStockLegendTemplateData.decoder, }); }),
|
|
39
37
|
encode: function (__typed__) {
|
|
40
38
|
return {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
featured_app_right: damlTypes.ContractId(pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight).encode(__typed__.featured_app_right),
|
|
44
|
-
template_data: Fairmint_OpenCapTable_Types.OcfStockLegendTemplateData.encode(__typed__.template_data),
|
|
39
|
+
context: Fairmint_OpenCapTable_Types.Context.encode(__typed__.context),
|
|
40
|
+
template_data: exports.OcfStockLegendTemplateData.encode(__typed__.template_data),
|
|
45
41
|
};
|
|
46
42
|
}
|
|
47
43
|
,
|
|
@@ -53,18 +49,32 @@ exports.StockLegendTemplate = damlTypes.assembleTemplate(
|
|
|
53
49
|
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
54
50
|
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
55
51
|
},
|
|
56
|
-
|
|
52
|
+
ArchiveByIssuer: {
|
|
57
53
|
template: function () { return exports.StockLegendTemplate; },
|
|
58
|
-
choiceName: '
|
|
59
|
-
argumentDecoder: damlTypes.lazyMemo(function () { return exports.
|
|
60
|
-
argumentEncode: function (__typed__) { return exports.
|
|
61
|
-
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.
|
|
62
|
-
resultEncode: function (__typed__) { return damlTypes.
|
|
54
|
+
choiceName: 'ArchiveByIssuer',
|
|
55
|
+
argumentDecoder: damlTypes.lazyMemo(function () { return exports.ArchiveByIssuer.decoder; }),
|
|
56
|
+
argumentEncode: function (__typed__) { return exports.ArchiveByIssuer.encode(__typed__); },
|
|
57
|
+
resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
|
|
58
|
+
resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
|
|
63
59
|
},
|
|
64
60
|
}
|
|
65
61
|
|
|
66
62
|
);
|
|
67
63
|
|
|
68
64
|
|
|
69
|
-
damlTypes.registerTemplate(exports.StockLegendTemplate, ['
|
|
65
|
+
damlTypes.registerTemplate(exports.StockLegendTemplate, ['163112c54b83300e400a7af319d46aa89a7c1c325d3c13fce6bf37cbde816e77', '#OpenCapTable-v16']);
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
exports.OcfStockLegendTemplateData = {
|
|
70
|
+
decoder: damlTypes.lazyMemo(function () { return jtv.object({name: damlTypes.Text.decoder, text: damlTypes.Text.decoder, comments: jtv.Decoder.withDefault(null, damlTypes.Optional(damlTypes.List(damlTypes.Text)).decoder), }); }),
|
|
71
|
+
encode: function (__typed__) {
|
|
72
|
+
return {
|
|
73
|
+
name: damlTypes.Text.encode(__typed__.name),
|
|
74
|
+
text: damlTypes.Text.encode(__typed__.text),
|
|
75
|
+
comments: damlTypes.Optional(damlTypes.List(damlTypes.Text)).encode(__typed__.comments),
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
,
|
|
79
|
+
};
|
|
70
80
|
|
|
@@ -7,304 +7,30 @@ 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
|
import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '../../../DA/Internal/Template';
|
|
12
11
|
|
|
13
|
-
import * as Fairmint_OpenCapTable_StockClass from '../../../Fairmint/OpenCapTable/StockClass/module';
|
|
14
12
|
import * as Fairmint_OpenCapTable_Types from '../../../Fairmint/OpenCapTable/Types/module';
|
|
15
|
-
import * as Fairmint_OpenCapTable_VestingTerms from '../../../Fairmint/OpenCapTable/VestingTerms/module';
|
|
16
13
|
|
|
17
|
-
export declare type
|
|
18
|
-
issuer: damlTypes.Party;
|
|
19
|
-
system_operator: damlTypes.Party;
|
|
20
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
21
|
-
stock_plan: damlTypes.ContractId<StockPlan>;
|
|
22
|
-
new_reserved_shares: damlTypes.Numeric;
|
|
23
|
-
date: damlTypes.Time;
|
|
14
|
+
export declare type ArchiveByIssuer = {
|
|
24
15
|
};
|
|
25
16
|
|
|
26
|
-
export declare
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
export declare const StockPlanPoolAdjustmentEvent:
|
|
30
|
-
damlTypes.Template<StockPlanPoolAdjustmentEvent, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:StockPlanPoolAdjustmentEvent'> &
|
|
31
|
-
damlTypes.ToInterface<StockPlanPoolAdjustmentEvent, never> &
|
|
32
|
-
StockPlanPoolAdjustmentEventInterface;
|
|
33
|
-
|
|
34
|
-
export declare namespace StockPlanPoolAdjustmentEvent {
|
|
35
|
-
export type CreateEvent = damlLedger.CreateEvent<StockPlanPoolAdjustmentEvent, undefined, typeof StockPlanPoolAdjustmentEvent.templateId>
|
|
36
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<StockPlanPoolAdjustmentEvent, typeof StockPlanPoolAdjustmentEvent.templateId>
|
|
37
|
-
export type Event = damlLedger.Event<StockPlanPoolAdjustmentEvent, undefined, typeof StockPlanPoolAdjustmentEvent.templateId>
|
|
38
|
-
export type QueryResult = damlLedger.QueryResult<StockPlanPoolAdjustmentEvent, undefined, typeof StockPlanPoolAdjustmentEvent.templateId>
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
export declare type PlanSecurityRepricing = {
|
|
44
|
-
issuer: damlTypes.Party;
|
|
45
|
-
system_operator: damlTypes.Party;
|
|
46
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
47
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
48
|
-
stakeholder: damlTypes.Party;
|
|
49
|
-
new_exercise_price: Fairmint_OpenCapTable_Types.OcfMonetary;
|
|
50
|
-
date: damlTypes.Time;
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
export declare interface PlanSecurityRepricingInterface {
|
|
54
|
-
Archive: damlTypes.Choice<PlanSecurityRepricing, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityRepricing, undefined>>;
|
|
55
|
-
}
|
|
56
|
-
export declare const PlanSecurityRepricing:
|
|
57
|
-
damlTypes.Template<PlanSecurityRepricing, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityRepricing'> &
|
|
58
|
-
damlTypes.ToInterface<PlanSecurityRepricing, never> &
|
|
59
|
-
PlanSecurityRepricingInterface;
|
|
60
|
-
|
|
61
|
-
export declare namespace PlanSecurityRepricing {
|
|
62
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityRepricing, undefined, typeof PlanSecurityRepricing.templateId>
|
|
63
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityRepricing, typeof PlanSecurityRepricing.templateId>
|
|
64
|
-
export type Event = damlLedger.Event<PlanSecurityRepricing, undefined, typeof PlanSecurityRepricing.templateId>
|
|
65
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityRepricing, undefined, typeof PlanSecurityRepricing.templateId>
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
export declare type PlanSecurityTransferEvent = {
|
|
71
|
-
issuer: damlTypes.Party;
|
|
72
|
-
system_operator: damlTypes.Party;
|
|
73
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
74
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
75
|
-
from_stakeholder: damlTypes.Party;
|
|
76
|
-
to_stakeholder: damlTypes.Party;
|
|
77
|
-
quantity: damlTypes.Numeric;
|
|
78
|
-
consideration_text: damlTypes.Optional<string>;
|
|
79
|
-
date: damlTypes.Time;
|
|
80
|
-
};
|
|
81
|
-
|
|
82
|
-
export declare interface PlanSecurityTransferEventInterface {
|
|
83
|
-
Archive: damlTypes.Choice<PlanSecurityTransferEvent, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityTransferEvent, undefined>>;
|
|
84
|
-
}
|
|
85
|
-
export declare const PlanSecurityTransferEvent:
|
|
86
|
-
damlTypes.Template<PlanSecurityTransferEvent, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityTransferEvent'> &
|
|
87
|
-
damlTypes.ToInterface<PlanSecurityTransferEvent, never> &
|
|
88
|
-
PlanSecurityTransferEventInterface;
|
|
89
|
-
|
|
90
|
-
export declare namespace PlanSecurityTransferEvent {
|
|
91
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityTransferEvent, undefined, typeof PlanSecurityTransferEvent.templateId>
|
|
92
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityTransferEvent, typeof PlanSecurityTransferEvent.templateId>
|
|
93
|
-
export type Event = damlLedger.Event<PlanSecurityTransferEvent, undefined, typeof PlanSecurityTransferEvent.templateId>
|
|
94
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityTransferEvent, undefined, typeof PlanSecurityTransferEvent.templateId>
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
export declare type PlanSecurityExerciseEvent = {
|
|
100
|
-
issuer: damlTypes.Party;
|
|
101
|
-
system_operator: damlTypes.Party;
|
|
102
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
103
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
104
|
-
stakeholder: damlTypes.Party;
|
|
105
|
-
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
106
|
-
quantity: damlTypes.Numeric;
|
|
107
|
-
date: damlTypes.Time;
|
|
108
|
-
};
|
|
109
|
-
|
|
110
|
-
export declare interface PlanSecurityExerciseEventInterface {
|
|
111
|
-
Archive: damlTypes.Choice<PlanSecurityExerciseEvent, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityExerciseEvent, undefined>>;
|
|
112
|
-
}
|
|
113
|
-
export declare const PlanSecurityExerciseEvent:
|
|
114
|
-
damlTypes.Template<PlanSecurityExerciseEvent, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityExerciseEvent'> &
|
|
115
|
-
damlTypes.ToInterface<PlanSecurityExerciseEvent, never> &
|
|
116
|
-
PlanSecurityExerciseEventInterface;
|
|
117
|
-
|
|
118
|
-
export declare namespace PlanSecurityExerciseEvent {
|
|
119
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityExerciseEvent, undefined, typeof PlanSecurityExerciseEvent.templateId>
|
|
120
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityExerciseEvent, typeof PlanSecurityExerciseEvent.templateId>
|
|
121
|
-
export type Event = damlLedger.Event<PlanSecurityExerciseEvent, undefined, typeof PlanSecurityExerciseEvent.templateId>
|
|
122
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityExerciseEvent, undefined, typeof PlanSecurityExerciseEvent.templateId>
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
export declare type PlanSecurityRetraction = {
|
|
128
|
-
issuer: damlTypes.Party;
|
|
129
|
-
system_operator: damlTypes.Party;
|
|
130
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
131
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
132
|
-
stakeholder: damlTypes.Party;
|
|
133
|
-
date: damlTypes.Time;
|
|
134
|
-
};
|
|
135
|
-
|
|
136
|
-
export declare interface PlanSecurityRetractionInterface {
|
|
137
|
-
Archive: damlTypes.Choice<PlanSecurityRetraction, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityRetraction, undefined>>;
|
|
138
|
-
}
|
|
139
|
-
export declare const PlanSecurityRetraction:
|
|
140
|
-
damlTypes.Template<PlanSecurityRetraction, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityRetraction'> &
|
|
141
|
-
damlTypes.ToInterface<PlanSecurityRetraction, never> &
|
|
142
|
-
PlanSecurityRetractionInterface;
|
|
143
|
-
|
|
144
|
-
export declare namespace PlanSecurityRetraction {
|
|
145
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityRetraction, undefined, typeof PlanSecurityRetraction.templateId>
|
|
146
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityRetraction, typeof PlanSecurityRetraction.templateId>
|
|
147
|
-
export type Event = damlLedger.Event<PlanSecurityRetraction, undefined, typeof PlanSecurityRetraction.templateId>
|
|
148
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityRetraction, undefined, typeof PlanSecurityRetraction.templateId>
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
export declare type PlanSecurityRelease = {
|
|
154
|
-
issuer: damlTypes.Party;
|
|
155
|
-
system_operator: damlTypes.Party;
|
|
156
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
157
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
158
|
-
stakeholder: damlTypes.Party;
|
|
159
|
-
date: damlTypes.Time;
|
|
160
|
-
};
|
|
161
|
-
|
|
162
|
-
export declare interface PlanSecurityReleaseInterface {
|
|
163
|
-
Archive: damlTypes.Choice<PlanSecurityRelease, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityRelease, undefined>>;
|
|
164
|
-
}
|
|
165
|
-
export declare const PlanSecurityRelease:
|
|
166
|
-
damlTypes.Template<PlanSecurityRelease, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityRelease'> &
|
|
167
|
-
damlTypes.ToInterface<PlanSecurityRelease, never> &
|
|
168
|
-
PlanSecurityReleaseInterface;
|
|
169
|
-
|
|
170
|
-
export declare namespace PlanSecurityRelease {
|
|
171
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityRelease, undefined, typeof PlanSecurityRelease.templateId>
|
|
172
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityRelease, typeof PlanSecurityRelease.templateId>
|
|
173
|
-
export type Event = damlLedger.Event<PlanSecurityRelease, undefined, typeof PlanSecurityRelease.templateId>
|
|
174
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityRelease, undefined, typeof PlanSecurityRelease.templateId>
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
export declare type PlanSecurityCancellation = {
|
|
180
|
-
issuer: damlTypes.Party;
|
|
181
|
-
system_operator: damlTypes.Party;
|
|
182
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
183
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
184
|
-
stakeholder: damlTypes.Party;
|
|
185
|
-
date: damlTypes.Time;
|
|
186
|
-
};
|
|
187
|
-
|
|
188
|
-
export declare interface PlanSecurityCancellationInterface {
|
|
189
|
-
Archive: damlTypes.Choice<PlanSecurityCancellation, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityCancellation, undefined>>;
|
|
190
|
-
}
|
|
191
|
-
export declare const PlanSecurityCancellation:
|
|
192
|
-
damlTypes.Template<PlanSecurityCancellation, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityCancellation'> &
|
|
193
|
-
damlTypes.ToInterface<PlanSecurityCancellation, never> &
|
|
194
|
-
PlanSecurityCancellationInterface;
|
|
195
|
-
|
|
196
|
-
export declare namespace PlanSecurityCancellation {
|
|
197
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityCancellation, undefined, typeof PlanSecurityCancellation.templateId>
|
|
198
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityCancellation, typeof PlanSecurityCancellation.templateId>
|
|
199
|
-
export type Event = damlLedger.Event<PlanSecurityCancellation, undefined, typeof PlanSecurityCancellation.templateId>
|
|
200
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityCancellation, undefined, typeof PlanSecurityCancellation.templateId>
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
export declare type PlanSecurityAcceptance = {
|
|
206
|
-
issuer: damlTypes.Party;
|
|
207
|
-
system_operator: damlTypes.Party;
|
|
208
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
209
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
210
|
-
stakeholder: damlTypes.Party;
|
|
211
|
-
date: damlTypes.Time;
|
|
212
|
-
};
|
|
213
|
-
|
|
214
|
-
export declare interface PlanSecurityAcceptanceInterface {
|
|
215
|
-
Archive: damlTypes.Choice<PlanSecurityAcceptance, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityAcceptance, undefined>>;
|
|
216
|
-
}
|
|
217
|
-
export declare const PlanSecurityAcceptance:
|
|
218
|
-
damlTypes.Template<PlanSecurityAcceptance, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityAcceptance'> &
|
|
219
|
-
damlTypes.ToInterface<PlanSecurityAcceptance, never> &
|
|
220
|
-
PlanSecurityAcceptanceInterface;
|
|
221
|
-
|
|
222
|
-
export declare namespace PlanSecurityAcceptance {
|
|
223
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityAcceptance, undefined, typeof PlanSecurityAcceptance.templateId>
|
|
224
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityAcceptance, typeof PlanSecurityAcceptance.templateId>
|
|
225
|
-
export type Event = damlLedger.Event<PlanSecurityAcceptance, undefined, typeof PlanSecurityAcceptance.templateId>
|
|
226
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityAcceptance, undefined, typeof PlanSecurityAcceptance.templateId>
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
export declare type PlanSecurityVestingStart = {
|
|
232
|
-
issuer: damlTypes.Party;
|
|
233
|
-
system_operator: damlTypes.Party;
|
|
234
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
235
|
-
plan_security: damlTypes.ContractId<PlanSecurityGrant>;
|
|
236
|
-
vesting_condition_id: string;
|
|
237
|
-
date: damlTypes.Time;
|
|
238
|
-
};
|
|
239
|
-
|
|
240
|
-
export declare interface PlanSecurityVestingStartInterface {
|
|
241
|
-
Archive: damlTypes.Choice<PlanSecurityVestingStart, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityVestingStart, undefined>>;
|
|
242
|
-
}
|
|
243
|
-
export declare const PlanSecurityVestingStart:
|
|
244
|
-
damlTypes.Template<PlanSecurityVestingStart, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityVestingStart'> &
|
|
245
|
-
damlTypes.ToInterface<PlanSecurityVestingStart, never> &
|
|
246
|
-
PlanSecurityVestingStartInterface;
|
|
247
|
-
|
|
248
|
-
export declare namespace PlanSecurityVestingStart {
|
|
249
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityVestingStart, undefined, typeof PlanSecurityVestingStart.templateId>
|
|
250
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityVestingStart, typeof PlanSecurityVestingStart.templateId>
|
|
251
|
-
export type Event = damlLedger.Event<PlanSecurityVestingStart, undefined, typeof PlanSecurityVestingStart.templateId>
|
|
252
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityVestingStart, undefined, typeof PlanSecurityVestingStart.templateId>
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
export declare type IssuePlanSecurity = {
|
|
258
|
-
stakeholder: damlTypes.Party;
|
|
259
|
-
issuance_data: Fairmint_OpenCapTable_Types.OcfEquityCompensationIssuanceData;
|
|
260
|
-
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
261
|
-
vesting_terms: damlTypes.Optional<damlTypes.ContractId<Fairmint_OpenCapTable_VestingTerms.VestingTerms>>;
|
|
262
|
-
};
|
|
263
|
-
|
|
264
|
-
export declare const IssuePlanSecurity:
|
|
265
|
-
damlTypes.Serializable<IssuePlanSecurity> & {
|
|
266
|
-
}
|
|
267
|
-
;
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export declare type AdjustPool = {
|
|
271
|
-
new_reserved_shares: damlTypes.Numeric;
|
|
272
|
-
date: damlTypes.Time;
|
|
273
|
-
};
|
|
274
|
-
|
|
275
|
-
export declare const AdjustPool:
|
|
276
|
-
damlTypes.Serializable<AdjustPool> & {
|
|
277
|
-
}
|
|
278
|
-
;
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
export declare type UpdateStockPlan = {
|
|
282
|
-
new_plan_data: Fairmint_OpenCapTable_Types.OcfStockPlanData;
|
|
283
|
-
new_stock_classes: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>[];
|
|
284
|
-
};
|
|
285
|
-
|
|
286
|
-
export declare const UpdateStockPlan:
|
|
287
|
-
damlTypes.Serializable<UpdateStockPlan> & {
|
|
17
|
+
export declare const ArchiveByIssuer:
|
|
18
|
+
damlTypes.Serializable<ArchiveByIssuer> & {
|
|
288
19
|
}
|
|
289
20
|
;
|
|
290
21
|
|
|
291
22
|
|
|
292
23
|
export declare type StockPlan = {
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
296
|
-
stock_classes: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>[];
|
|
297
|
-
plan_data: Fairmint_OpenCapTable_Types.OcfStockPlanData;
|
|
24
|
+
context: Fairmint_OpenCapTable_Types.Context;
|
|
25
|
+
plan_data: OcfStockPlanData;
|
|
298
26
|
};
|
|
299
27
|
|
|
300
28
|
export declare interface StockPlanInterface {
|
|
301
29
|
Archive: damlTypes.Choice<StockPlan, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
302
|
-
|
|
303
|
-
UpdateStockPlan: damlTypes.Choice<StockPlan, UpdateStockPlan, damlTypes.ContractId<StockPlan>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
304
|
-
IssuePlanSecurity: damlTypes.Choice<StockPlan, IssuePlanSecurity, damlTypes.ContractId<PlanSecurityGrant>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
30
|
+
ArchiveByIssuer: damlTypes.Choice<StockPlan, ArchiveByIssuer, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<StockPlan, undefined>>;
|
|
305
31
|
}
|
|
306
32
|
export declare const StockPlan:
|
|
307
|
-
damlTypes.Template<StockPlan, undefined, '#OpenCapTable-
|
|
33
|
+
damlTypes.Template<StockPlan, undefined, '#OpenCapTable-v16:Fairmint.OpenCapTable.StockPlan:StockPlan'> &
|
|
308
34
|
damlTypes.ToInterface<StockPlan, never> &
|
|
309
35
|
StockPlanInterface;
|
|
310
36
|
|
|
@@ -317,136 +43,31 @@ export declare namespace StockPlan {
|
|
|
317
43
|
|
|
318
44
|
|
|
319
45
|
|
|
320
|
-
export declare type
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
46
|
+
export declare type OcfStockPlanData = {
|
|
47
|
+
plan_name: string;
|
|
48
|
+
board_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
49
|
+
stockholder_approval_date: damlTypes.Optional<damlTypes.Time>;
|
|
50
|
+
initial_shares_reserved: damlTypes.Numeric;
|
|
51
|
+
default_cancellation_behavior: damlTypes.Optional<OcfStockPlanCancellationBehaviorType>;
|
|
52
|
+
comments: damlTypes.Optional<string[]>;
|
|
324
53
|
};
|
|
325
54
|
|
|
326
|
-
export declare const
|
|
327
|
-
damlTypes.Serializable<
|
|
55
|
+
export declare const OcfStockPlanData:
|
|
56
|
+
damlTypes.Serializable<OcfStockPlanData> & {
|
|
328
57
|
}
|
|
329
58
|
;
|
|
330
59
|
|
|
331
60
|
|
|
332
|
-
export declare type
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
};
|
|
338
|
-
|
|
339
|
-
export declare const TransferGrant:
|
|
340
|
-
damlTypes.Serializable<TransferGrant> & {
|
|
341
|
-
}
|
|
61
|
+
export declare type OcfStockPlanCancellationBehaviorType =
|
|
62
|
+
| 'OcfPlanCancelRetire'
|
|
63
|
+
| 'OcfPlanCancelReturnToPool'
|
|
64
|
+
| 'OcfPlanCancelHoldAsCapitalStock'
|
|
65
|
+
| 'OcfPlanCancelDefinedPerPlanSecurity'
|
|
342
66
|
;
|
|
343
67
|
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
date: damlTypes.Time;
|
|
347
|
-
};
|
|
348
|
-
|
|
349
|
-
export declare const RetractGrant:
|
|
350
|
-
damlTypes.Serializable<RetractGrant> & {
|
|
68
|
+
export declare const OcfStockPlanCancellationBehaviorType:
|
|
69
|
+
damlTypes.Serializable<OcfStockPlanCancellationBehaviorType> & {
|
|
351
70
|
}
|
|
71
|
+
& { readonly keys: OcfStockPlanCancellationBehaviorType[] } & { readonly [e in OcfStockPlanCancellationBehaviorType]: e }
|
|
352
72
|
;
|
|
353
73
|
|
|
354
|
-
|
|
355
|
-
export declare type ReleaseGrant = {
|
|
356
|
-
date: damlTypes.Time;
|
|
357
|
-
};
|
|
358
|
-
|
|
359
|
-
export declare const ReleaseGrant:
|
|
360
|
-
damlTypes.Serializable<ReleaseGrant> & {
|
|
361
|
-
}
|
|
362
|
-
;
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
export declare type CancelGrant = {
|
|
366
|
-
date: damlTypes.Time;
|
|
367
|
-
};
|
|
368
|
-
|
|
369
|
-
export declare const CancelGrant:
|
|
370
|
-
damlTypes.Serializable<CancelGrant> & {
|
|
371
|
-
}
|
|
372
|
-
;
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
export declare type AcceptGrant = {
|
|
376
|
-
date: damlTypes.Time;
|
|
377
|
-
};
|
|
378
|
-
|
|
379
|
-
export declare const AcceptGrant:
|
|
380
|
-
damlTypes.Serializable<AcceptGrant> & {
|
|
381
|
-
}
|
|
382
|
-
;
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
export declare type StartVesting = {
|
|
386
|
-
vesting_condition_id: string;
|
|
387
|
-
date: damlTypes.Time;
|
|
388
|
-
};
|
|
389
|
-
|
|
390
|
-
export declare const StartVesting:
|
|
391
|
-
damlTypes.Serializable<StartVesting> & {
|
|
392
|
-
}
|
|
393
|
-
;
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
export declare type Reprice = {
|
|
397
|
-
new_exercise_price: Fairmint_OpenCapTable_Types.OcfMonetary;
|
|
398
|
-
date: damlTypes.Time;
|
|
399
|
-
};
|
|
400
|
-
|
|
401
|
-
export declare const Reprice:
|
|
402
|
-
damlTypes.Serializable<Reprice> & {
|
|
403
|
-
}
|
|
404
|
-
;
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
export declare type UpdateIssuanceData = {
|
|
408
|
-
new_issuance_data: Fairmint_OpenCapTable_Types.OcfEquityCompensationIssuanceData;
|
|
409
|
-
};
|
|
410
|
-
|
|
411
|
-
export declare const UpdateIssuanceData:
|
|
412
|
-
damlTypes.Serializable<UpdateIssuanceData> & {
|
|
413
|
-
}
|
|
414
|
-
;
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
export declare type PlanSecurityGrant = {
|
|
418
|
-
issuer: damlTypes.Party;
|
|
419
|
-
system_operator: damlTypes.Party;
|
|
420
|
-
featured_app_right: damlTypes.ContractId<pkg7804375fe5e4c6d5afe067bd314c42fe0b7d005a1300019c73154dd939da4dda.Splice.Api.FeaturedAppRightV1.FeaturedAppRight>;
|
|
421
|
-
stock_plan: damlTypes.Optional<damlTypes.ContractId<StockPlan>>;
|
|
422
|
-
stock_class: damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockClass>;
|
|
423
|
-
stakeholder: damlTypes.Party;
|
|
424
|
-
vesting_terms: damlTypes.Optional<damlTypes.ContractId<Fairmint_OpenCapTable_VestingTerms.VestingTerms>>;
|
|
425
|
-
issuance_data: Fairmint_OpenCapTable_Types.OcfEquityCompensationIssuanceData;
|
|
426
|
-
};
|
|
427
|
-
|
|
428
|
-
export declare interface PlanSecurityGrantInterface {
|
|
429
|
-
StartVesting: damlTypes.Choice<PlanSecurityGrant, StartVesting, damlTypes.ContractId<PlanSecurityVestingStart>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
430
|
-
Archive: damlTypes.Choice<PlanSecurityGrant, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
431
|
-
ExerciseGrant: damlTypes.Choice<PlanSecurityGrant, ExerciseGrant, damlTypes.ContractId<Fairmint_OpenCapTable_StockClass.StockPosition>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
432
|
-
UpdateIssuanceData: damlTypes.Choice<PlanSecurityGrant, UpdateIssuanceData, damlTypes.ContractId<PlanSecurityGrant>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
433
|
-
Reprice: damlTypes.Choice<PlanSecurityGrant, Reprice, damlTypes.ContractId<PlanSecurityRepricing>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
434
|
-
AcceptGrant: damlTypes.Choice<PlanSecurityGrant, AcceptGrant, damlTypes.ContractId<PlanSecurityAcceptance>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
435
|
-
CancelGrant: damlTypes.Choice<PlanSecurityGrant, CancelGrant, damlTypes.ContractId<PlanSecurityCancellation>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
436
|
-
ReleaseGrant: damlTypes.Choice<PlanSecurityGrant, ReleaseGrant, damlTypes.ContractId<PlanSecurityRelease>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
437
|
-
RetractGrant: damlTypes.Choice<PlanSecurityGrant, RetractGrant, damlTypes.ContractId<PlanSecurityRetraction>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
438
|
-
TransferGrant: damlTypes.Choice<PlanSecurityGrant, TransferGrant, damlTypes.ContractId<PlanSecurityTransferEvent>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<PlanSecurityGrant, undefined>>;
|
|
439
|
-
}
|
|
440
|
-
export declare const PlanSecurityGrant:
|
|
441
|
-
damlTypes.Template<PlanSecurityGrant, undefined, '#OpenCapTable-v14:Fairmint.OpenCapTable.StockPlan:PlanSecurityGrant'> &
|
|
442
|
-
damlTypes.ToInterface<PlanSecurityGrant, never> &
|
|
443
|
-
PlanSecurityGrantInterface;
|
|
444
|
-
|
|
445
|
-
export declare namespace PlanSecurityGrant {
|
|
446
|
-
export type CreateEvent = damlLedger.CreateEvent<PlanSecurityGrant, undefined, typeof PlanSecurityGrant.templateId>
|
|
447
|
-
export type ArchiveEvent = damlLedger.ArchiveEvent<PlanSecurityGrant, typeof PlanSecurityGrant.templateId>
|
|
448
|
-
export type Event = damlLedger.Event<PlanSecurityGrant, undefined, typeof PlanSecurityGrant.templateId>
|
|
449
|
-
export type QueryResult = damlLedger.QueryResult<PlanSecurityGrant, undefined, typeof PlanSecurityGrant.templateId>
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
|