@fairmint/open-captable-protocol-daml-js 0.0.17 → 0.0.19

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.
@@ -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,67 @@
1
+ // Generated from Fairmint/OpenCapTable/CompanyValuationReport.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 pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '@daml.js/ghc-stdlib-DA-Internal-Template-1.0.0';
11
+
12
+ export declare type ConfirmCurrent = {
13
+ };
14
+
15
+ export declare const ConfirmCurrent:
16
+ damlTypes.Serializable<ConfirmCurrent> & {
17
+ }
18
+ ;
19
+
20
+
21
+ export declare type SetCompanyValuation = {
22
+ new_company_valuation: damlTypes.Int;
23
+ };
24
+
25
+ export declare const SetCompanyValuation:
26
+ damlTypes.Serializable<SetCompanyValuation> & {
27
+ }
28
+ ;
29
+
30
+
31
+ export declare type AddObservers = {
32
+ added: damlTypes.Party[];
33
+ };
34
+
35
+ export declare const AddObservers:
36
+ damlTypes.Serializable<AddObservers> & {
37
+ }
38
+ ;
39
+
40
+
41
+ export declare type CompanyValuationReport = {
42
+ company_id: string;
43
+ company_valuation: damlTypes.Int;
44
+ last_update_at: damlTypes.Time;
45
+ observers: damlTypes.Party[];
46
+ system_operator: damlTypes.Party;
47
+ };
48
+
49
+ export declare interface CompanyValuationReportInterface {
50
+ AddObservers: damlTypes.Choice<CompanyValuationReport, AddObservers, damlTypes.ContractId<CompanyValuationReport>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<CompanyValuationReport, undefined>>;
51
+ SetCompanyValuation: damlTypes.Choice<CompanyValuationReport, SetCompanyValuation, damlTypes.ContractId<CompanyValuationReport>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<CompanyValuationReport, undefined>>;
52
+ Archive: damlTypes.Choice<CompanyValuationReport, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<CompanyValuationReport, undefined>>;
53
+ ConfirmCurrent: damlTypes.Choice<CompanyValuationReport, ConfirmCurrent, damlTypes.ContractId<CompanyValuationReport>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<CompanyValuationReport, undefined>>;
54
+ }
55
+ export declare const CompanyValuationReport:
56
+ damlTypes.Template<CompanyValuationReport, undefined, '#OpenCapTable-v02:Fairmint.OpenCapTable.CompanyValuationReport:CompanyValuationReport'> &
57
+ damlTypes.ToInterface<CompanyValuationReport, never> &
58
+ CompanyValuationReportInterface;
59
+
60
+ export declare namespace CompanyValuationReport {
61
+ export type CreateEvent = damlLedger.CreateEvent<CompanyValuationReport, undefined, typeof CompanyValuationReport.templateId>
62
+ export type ArchiveEvent = damlLedger.ArchiveEvent<CompanyValuationReport, typeof CompanyValuationReport.templateId>
63
+ export type Event = damlLedger.Event<CompanyValuationReport, undefined, typeof CompanyValuationReport.templateId>
64
+ export type QueryResult = damlLedger.QueryResult<CompanyValuationReport, undefined, typeof CompanyValuationReport.templateId>
65
+ }
66
+
67
+
@@ -0,0 +1,107 @@
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
+ /* eslint-disable-next-line no-unused-vars */
9
+ var jtv = require('@mojotech/json-type-validation');
10
+ /* eslint-disable-next-line no-unused-vars */
11
+ var damlTypes = require('@daml/types');
12
+ /* eslint-disable-next-line no-unused-vars */
13
+ var damlLedger = require('@daml/ledger');
14
+
15
+ var pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 = require('../../../DA/Internal/Template');
16
+
17
+
18
+ exports.ConfirmCurrent = {
19
+ decoder: damlTypes.lazyMemo(function () { return jtv.object({}); }),
20
+ encode: function (__typed__) {
21
+ return {
22
+ };
23
+ }
24
+ ,
25
+ };
26
+
27
+
28
+
29
+ exports.SetCompanyValuation = {
30
+ decoder: damlTypes.lazyMemo(function () { return jtv.object({new_company_valuation: damlTypes.Int.decoder, }); }),
31
+ encode: function (__typed__) {
32
+ return {
33
+ new_company_valuation: damlTypes.Int.encode(__typed__.new_company_valuation),
34
+ };
35
+ }
36
+ ,
37
+ };
38
+
39
+
40
+
41
+ exports.AddObservers = {
42
+ decoder: damlTypes.lazyMemo(function () { return jtv.object({added: damlTypes.List(damlTypes.Party).decoder, }); }),
43
+ encode: function (__typed__) {
44
+ return {
45
+ added: damlTypes.List(damlTypes.Party).encode(__typed__.added),
46
+ };
47
+ }
48
+ ,
49
+ };
50
+
51
+
52
+
53
+ exports.CompanyValuationReport = damlTypes.assembleTemplate(
54
+ {
55
+ templateId: '#OpenCapTable-v02:Fairmint.OpenCapTable.CompanyValuationReport:CompanyValuationReport',
56
+ keyDecoder: damlTypes.lazyMemo(function () { return jtv.constant(undefined); }),
57
+ keyEncode: function () { throw 'EncodeError'; },
58
+ decoder: damlTypes.lazyMemo(function () { return jtv.object({company_id: damlTypes.Text.decoder, company_valuation: damlTypes.Int.decoder, last_update_at: damlTypes.Time.decoder, observers: damlTypes.List(damlTypes.Party).decoder, system_operator: damlTypes.Party.decoder, }); }),
59
+ encode: function (__typed__) {
60
+ return {
61
+ company_id: damlTypes.Text.encode(__typed__.company_id),
62
+ company_valuation: damlTypes.Int.encode(__typed__.company_valuation),
63
+ last_update_at: damlTypes.Time.encode(__typed__.last_update_at),
64
+ observers: damlTypes.List(damlTypes.Party).encode(__typed__.observers),
65
+ system_operator: damlTypes.Party.encode(__typed__.system_operator),
66
+ };
67
+ }
68
+ ,
69
+ AddObservers: {
70
+ template: function () { return exports.CompanyValuationReport; },
71
+ choiceName: 'AddObservers',
72
+ argumentDecoder: damlTypes.lazyMemo(function () { return exports.AddObservers.decoder; }),
73
+ argumentEncode: function (__typed__) { return exports.AddObservers.encode(__typed__); },
74
+ resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(exports.CompanyValuationReport).decoder; }),
75
+ resultEncode: function (__typed__) { return damlTypes.ContractId(exports.CompanyValuationReport).encode(__typed__); },
76
+ },
77
+ SetCompanyValuation: {
78
+ template: function () { return exports.CompanyValuationReport; },
79
+ choiceName: 'SetCompanyValuation',
80
+ argumentDecoder: damlTypes.lazyMemo(function () { return exports.SetCompanyValuation.decoder; }),
81
+ argumentEncode: function (__typed__) { return exports.SetCompanyValuation.encode(__typed__); },
82
+ resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(exports.CompanyValuationReport).decoder; }),
83
+ resultEncode: function (__typed__) { return damlTypes.ContractId(exports.CompanyValuationReport).encode(__typed__); },
84
+ },
85
+ Archive: {
86
+ template: function () { return exports.CompanyValuationReport; },
87
+ choiceName: 'Archive',
88
+ argumentDecoder: damlTypes.lazyMemo(function () { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.decoder; }),
89
+ argumentEncode: function (__typed__) { return pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive.encode(__typed__); },
90
+ resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
91
+ resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
92
+ },
93
+ ConfirmCurrent: {
94
+ template: function () { return exports.CompanyValuationReport; },
95
+ choiceName: 'ConfirmCurrent',
96
+ argumentDecoder: damlTypes.lazyMemo(function () { return exports.ConfirmCurrent.decoder; }),
97
+ argumentEncode: function (__typed__) { return exports.ConfirmCurrent.encode(__typed__); },
98
+ resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(exports.CompanyValuationReport).decoder; }),
99
+ resultEncode: function (__typed__) { return damlTypes.ContractId(exports.CompanyValuationReport).encode(__typed__); },
100
+ },
101
+ }
102
+
103
+ );
104
+
105
+
106
+ damlTypes.registerTemplate(exports.CompanyValuationReport, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
107
+
@@ -85,5 +85,5 @@ exports.Issuer = damlTypes.assembleTemplate(
85
85
  );
86
86
 
87
87
 
88
- damlTypes.registerTemplate(exports.Issuer, ['bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738', '#OpenCapTable-v02']);
88
+ damlTypes.registerTemplate(exports.Issuer, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
89
89
 
@@ -83,5 +83,5 @@ exports.IssuerAuthorization = damlTypes.assembleTemplate(
83
83
  );
84
84
 
85
85
 
86
- damlTypes.registerTemplate(exports.IssuerAuthorization, ['bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738', '#OpenCapTable-v02']);
86
+ damlTypes.registerTemplate(exports.IssuerAuthorization, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
87
87
 
@@ -9,8 +9,21 @@ import * as damlLedger from '@daml/ledger';
9
9
 
10
10
  import * as pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 from '@daml.js/ghc-stdlib-DA-Internal-Template-1.0.0';
11
11
 
12
+ import * as Fairmint_OpenCapTable_CompanyValuationReport from '../../../Fairmint/OpenCapTable/CompanyValuationReport/module';
12
13
  import * as Fairmint_OpenCapTable_IssuerAuthorization from '../../../Fairmint/OpenCapTable/IssuerAuthorization/module';
13
14
 
15
+ export declare type CreateCompanyValuationReport = {
16
+ company_id: string;
17
+ company_valuation: damlTypes.Int;
18
+ observers: damlTypes.Party[];
19
+ };
20
+
21
+ export declare const CreateCompanyValuationReport:
22
+ damlTypes.Serializable<CreateCompanyValuationReport> & {
23
+ }
24
+ ;
25
+
26
+
14
27
  export declare type AuthorizeIssuer = {
15
28
  issuer: damlTypes.Party;
16
29
  };
@@ -26,8 +39,9 @@ export declare type OcpFactory = {
26
39
  };
27
40
 
28
41
  export declare interface OcpFactoryInterface {
29
- Archive: damlTypes.Choice<OcpFactory, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<OcpFactory, undefined>>;
30
42
  AuthorizeIssuer: damlTypes.Choice<OcpFactory, AuthorizeIssuer, damlTypes.ContractId<Fairmint_OpenCapTable_IssuerAuthorization.IssuerAuthorization>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<OcpFactory, undefined>>;
43
+ Archive: damlTypes.Choice<OcpFactory, pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69.DA.Internal.Template.Archive, {}, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<OcpFactory, undefined>>;
44
+ CreateCompanyValuationReport: damlTypes.Choice<OcpFactory, CreateCompanyValuationReport, damlTypes.ContractId<Fairmint_OpenCapTable_CompanyValuationReport.CompanyValuationReport>, undefined> & damlTypes.ChoiceFrom<damlTypes.Template<OcpFactory, undefined>>;
31
45
  }
32
46
  export declare const OcpFactory:
33
47
  damlTypes.Template<OcpFactory, undefined, '#OpenCapTable-v02:Fairmint.OpenCapTable.OcpFactory:OcpFactory'> &
@@ -14,9 +14,24 @@ var damlLedger = require('@daml/ledger');
14
14
 
15
15
  var pkg9e70a8b3510d617f8a136213f33d6a903a10ca0eeec76bb06ba55d1ed9680f69 = require('../../../DA/Internal/Template');
16
16
 
17
+ var Fairmint_OpenCapTable_CompanyValuationReport = require('../../../Fairmint/OpenCapTable/CompanyValuationReport/module');
17
18
  var Fairmint_OpenCapTable_IssuerAuthorization = require('../../../Fairmint/OpenCapTable/IssuerAuthorization/module');
18
19
 
19
20
 
21
+ exports.CreateCompanyValuationReport = {
22
+ decoder: damlTypes.lazyMemo(function () { return jtv.object({company_id: damlTypes.Text.decoder, company_valuation: damlTypes.Int.decoder, observers: damlTypes.List(damlTypes.Party).decoder, }); }),
23
+ encode: function (__typed__) {
24
+ return {
25
+ company_id: damlTypes.Text.encode(__typed__.company_id),
26
+ company_valuation: damlTypes.Int.encode(__typed__.company_valuation),
27
+ observers: damlTypes.List(damlTypes.Party).encode(__typed__.observers),
28
+ };
29
+ }
30
+ ,
31
+ };
32
+
33
+
34
+
20
35
  exports.AuthorizeIssuer = {
21
36
  decoder: damlTypes.lazyMemo(function () { return jtv.object({issuer: damlTypes.Party.decoder, }); }),
22
37
  encode: function (__typed__) {
@@ -41,6 +56,14 @@ exports.OcpFactory = damlTypes.assembleTemplate(
41
56
  };
42
57
  }
43
58
  ,
59
+ AuthorizeIssuer: {
60
+ template: function () { return exports.OcpFactory; },
61
+ choiceName: 'AuthorizeIssuer',
62
+ argumentDecoder: damlTypes.lazyMemo(function () { return exports.AuthorizeIssuer.decoder; }),
63
+ argumentEncode: function (__typed__) { return exports.AuthorizeIssuer.encode(__typed__); },
64
+ resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(Fairmint_OpenCapTable_IssuerAuthorization.IssuerAuthorization).decoder; }),
65
+ resultEncode: function (__typed__) { return damlTypes.ContractId(Fairmint_OpenCapTable_IssuerAuthorization.IssuerAuthorization).encode(__typed__); },
66
+ },
44
67
  Archive: {
45
68
  template: function () { return exports.OcpFactory; },
46
69
  choiceName: 'Archive',
@@ -49,18 +72,18 @@ exports.OcpFactory = damlTypes.assembleTemplate(
49
72
  resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.Unit.decoder; }),
50
73
  resultEncode: function (__typed__) { return damlTypes.Unit.encode(__typed__); },
51
74
  },
52
- AuthorizeIssuer: {
75
+ CreateCompanyValuationReport: {
53
76
  template: function () { return exports.OcpFactory; },
54
- choiceName: 'AuthorizeIssuer',
55
- argumentDecoder: damlTypes.lazyMemo(function () { return exports.AuthorizeIssuer.decoder; }),
56
- argumentEncode: function (__typed__) { return exports.AuthorizeIssuer.encode(__typed__); },
57
- resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(Fairmint_OpenCapTable_IssuerAuthorization.IssuerAuthorization).decoder; }),
58
- resultEncode: function (__typed__) { return damlTypes.ContractId(Fairmint_OpenCapTable_IssuerAuthorization.IssuerAuthorization).encode(__typed__); },
77
+ choiceName: 'CreateCompanyValuationReport',
78
+ argumentDecoder: damlTypes.lazyMemo(function () { return exports.CreateCompanyValuationReport.decoder; }),
79
+ argumentEncode: function (__typed__) { return exports.CreateCompanyValuationReport.encode(__typed__); },
80
+ resultDecoder: damlTypes.lazyMemo(function () { return damlTypes.ContractId(Fairmint_OpenCapTable_CompanyValuationReport.CompanyValuationReport).decoder; }),
81
+ resultEncode: function (__typed__) { return damlTypes.ContractId(Fairmint_OpenCapTable_CompanyValuationReport.CompanyValuationReport).encode(__typed__); },
59
82
  },
60
83
  }
61
84
 
62
85
  );
63
86
 
64
87
 
65
- damlTypes.registerTemplate(exports.OcpFactory, ['bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738', '#OpenCapTable-v02']);
88
+ damlTypes.registerTemplate(exports.OcpFactory, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
66
89
 
@@ -67,5 +67,5 @@ exports.StockClass = damlTypes.assembleTemplate(
67
67
  );
68
68
 
69
69
 
70
- damlTypes.registerTemplate(exports.StockClass, ['bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738', '#OpenCapTable-v02']);
70
+ damlTypes.registerTemplate(exports.StockClass, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
71
71
 
@@ -65,7 +65,7 @@ exports.StockTransferProposal = damlTypes.assembleTemplate(
65
65
  );
66
66
 
67
67
 
68
- damlTypes.registerTemplate(exports.StockTransferProposal, ['bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738', '#OpenCapTable-v02']);
68
+ damlTypes.registerTemplate(exports.StockTransferProposal, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
69
69
 
70
70
 
71
71
 
@@ -117,5 +117,5 @@ exports.StockPosition = damlTypes.assembleTemplate(
117
117
  );
118
118
 
119
119
 
120
- damlTypes.registerTemplate(exports.StockPosition, ['bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738', '#OpenCapTable-v02']);
120
+ damlTypes.registerTemplate(exports.StockPosition, ['b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6', '#OpenCapTable-v02']);
121
121
 
@@ -1,3 +1,5 @@
1
+ import * as CompanyValuationReport from './CompanyValuationReport';
2
+ export { CompanyValuationReport } ;
1
3
  import * as Issuer from './Issuer';
2
4
  export { Issuer } ;
3
5
  import * as IssuerAuthorization from './IssuerAuthorization';
@@ -5,6 +5,8 @@ function __export(m) {
5
5
  for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
6
6
  }
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
+ var CompanyValuationReport = require('./CompanyValuationReport');
9
+ exports.CompanyValuationReport = CompanyValuationReport;
8
10
  var Issuer = require('./Issuer');
9
11
  exports.Issuer = Issuer;
10
12
  var IssuerAuthorization = require('./IssuerAuthorization');
package/lib/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import * as Fairmint from './Fairmint';
2
2
  import * as DA from './DA';
3
3
  export { Fairmint, DA } ;
4
- export declare const packageId = 'bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738';
4
+ export declare const packageId = 'b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6';
package/lib/index.js CHANGED
@@ -9,4 +9,4 @@ var Fairmint = require('./Fairmint');
9
9
  exports.Fairmint = Fairmint;
10
10
  var DA = require('./DA');
11
11
  exports.DA = DA;
12
- exports.packageId = 'bca88412711546841e7cebb8b49c804dd931f92a80258f2caaa0af2c213ab738';
12
+ exports.packageId = 'b81c14988e8938b7db410cd1dcc3bed4742192c307f927ddfb81ea7f18a103d6';
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "mainnet": {
3
- "ocpFactoryContractId": "00e49955086cdbc92522221e2f449012af7d0da993959c48dad82b8f451a7dfd77ca111220c05905409e1f55add554c70abde359872829de05dcad16258b694c94cea7c571",
3
+ "ocpFactoryContractId": "00bfa0f6f97a2ae379939326c5881bf9348441bbe47fd04f15d525fd27f3604762ca111220f0eb286d00082c2541c987e8ee1a5725db8e27bbd2f10b7598208da6132ebda1",
4
4
  "templateId": "#OpenCapTable-v02:Fairmint.OpenCapTable.OcpFactory:OcpFactory"
5
5
  },
6
6
  "devnet": {
7
- "ocpFactoryContractId": "001572772e597c6ed7d3bba91b026d806c1375c9ee5a36482e0d376798bf2fb932ca111220fe0248ffec175b72ba6dcb6d4bc7e7c35c96b52a2c04deb2df14ce06addadb29",
7
+ "ocpFactoryContractId": "0034d7ea75978ac4dcd6f70ea8546fd6e3f55ed68142b63515aadbd7962615c709ca111220e8b6098faae34ee00dd6169074a6d608956df696d131a0e2da49f699c37f67c2",
8
8
  "templateId": "#OpenCapTable-v02:Fairmint.OpenCapTable.OcpFactory:OcpFactory"
9
9
  }
10
10
  }
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "@daml/types": "3.3.0-snapshot.20250528.13806.0.v3cd439fb"
12
12
  },
13
13
  "types": "lib/index.d.ts",
14
- "version": "0.0.17",
14
+ "version": "0.0.19",
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  }