@coopenomics/factory 2.2.10 → 2025.5.2
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/dist/index.cjs +555 -261
- package/dist/index.d.cts +165 -110
- package/dist/index.d.mts +165 -110
- package/dist/index.d.ts +165 -110
- package/dist/index.mjs +551 -262
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -2,244 +2,294 @@ import { JSONSchemaType } from 'ajv';
|
|
|
2
2
|
import { Cooperative } from 'cooptypes';
|
|
3
3
|
import { InsertOneResult, Filter, UpdateResult, Document, MongoClient, Db, Collection } from 'mongodb';
|
|
4
4
|
|
|
5
|
-
declare const registry_id$
|
|
6
|
-
type Action$
|
|
7
|
-
type Model$
|
|
5
|
+
declare const registry_id$q = 1;
|
|
6
|
+
type Action$q = Cooperative.Registry.WalletAgreement.Action;
|
|
7
|
+
type Model$q = Cooperative.Registry.WalletAgreement.Model;
|
|
8
|
+
declare const Schema$q: JSONSchemaType<Model$q>;
|
|
9
|
+
declare const Template$q: ITemplate<Model$q>;
|
|
10
|
+
|
|
11
|
+
declare namespace WalletAgreement {
|
|
12
|
+
export { type Action$q as Action, type Model$q as Model, Schema$q as Schema, Template$q as Template, registry_id$q as registry_id };
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const registry_id$p = 2;
|
|
16
|
+
type Action$p = Cooperative.Registry.RegulationElectronicSignature.Action;
|
|
17
|
+
type Model$p = Cooperative.Registry.RegulationElectronicSignature.Model;
|
|
18
|
+
declare const Schema$p: JSONSchemaType<Model$p>;
|
|
19
|
+
declare const Template$p: ITemplate<Model$p>;
|
|
20
|
+
|
|
21
|
+
declare namespace RegulationElectronicSignaturet {
|
|
22
|
+
export { type Action$p as Action, type Model$p as Model, Schema$p as Schema, Template$p as Template, registry_id$p as registry_id };
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare const registry_id$o = 3;
|
|
26
|
+
type Action$o = Cooperative.Registry.PrivacyPolicy.Action;
|
|
27
|
+
type Model$o = Cooperative.Registry.PrivacyPolicy.Model;
|
|
28
|
+
declare const Schema$o: JSONSchemaType<Model$o>;
|
|
29
|
+
declare const Template$o: ITemplate<Model$o>;
|
|
30
|
+
|
|
31
|
+
declare namespace PrivacyPolicy {
|
|
32
|
+
export { type Action$o as Action, type Model$o as Model, Schema$o as Schema, Template$o as Template, registry_id$o as registry_id };
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare const registry_id$n = 4;
|
|
36
|
+
type Action$n = Cooperative.Registry.UserAgreement.Action;
|
|
37
|
+
type Model$n = Cooperative.Registry.UserAgreement.Model;
|
|
38
|
+
declare const Schema$n: JSONSchemaType<Model$n>;
|
|
39
|
+
declare const Template$n: ITemplate<Model$n>;
|
|
40
|
+
|
|
41
|
+
declare namespace UserAgreement {
|
|
42
|
+
export { type Action$n as Action, type Model$n as Model, Schema$n as Schema, Template$n as Template, registry_id$n as registry_id };
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
declare const registry_id$m = 50;
|
|
46
|
+
type Action$m = Cooperative.Registry.CoopenomicsAgreement.Action;
|
|
47
|
+
type Model$m = Cooperative.Registry.CoopenomicsAgreement.Model;
|
|
48
|
+
declare const Schema$m: JSONSchemaType<Model$m>;
|
|
49
|
+
declare const Template$m: ITemplate<Model$m>;
|
|
50
|
+
|
|
51
|
+
declare namespace CoopenomicsAgreement {
|
|
52
|
+
export { type Action$m as Action, type Model$m as Model, Schema$m as Schema, Template$m as Template, registry_id$m as registry_id };
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
declare const registry_id$l = 100;
|
|
56
|
+
/**
|
|
57
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
58
|
+
*/
|
|
59
|
+
type Action$l = Cooperative.Registry.ParticipantApplication.Action;
|
|
60
|
+
type Model$l = Cooperative.Registry.ParticipantApplication.Model;
|
|
8
61
|
declare const Schema$l: JSONSchemaType<Model$l>;
|
|
9
62
|
declare const Template$l: ITemplate<Model$l>;
|
|
10
63
|
|
|
11
|
-
declare namespace
|
|
64
|
+
declare namespace ParticipantApplication {
|
|
12
65
|
export { type Action$l as Action, type Model$l as Model, Schema$l as Schema, Template$l as Template, registry_id$l as registry_id };
|
|
13
66
|
}
|
|
14
67
|
|
|
15
|
-
declare const registry_id$k =
|
|
16
|
-
|
|
17
|
-
|
|
68
|
+
declare const registry_id$k = 501;
|
|
69
|
+
/**
|
|
70
|
+
* Интерфейс генерации решения совета
|
|
71
|
+
*/
|
|
72
|
+
type Action$k = Cooperative.Registry.DecisionOfParticipantApplication.Action;
|
|
73
|
+
type Model$k = Cooperative.Registry.DecisionOfParticipantApplication.Model;
|
|
18
74
|
declare const Schema$k: JSONSchemaType<Model$k>;
|
|
19
75
|
declare const Template$k: ITemplate<Model$k>;
|
|
20
76
|
|
|
21
|
-
declare namespace
|
|
77
|
+
declare namespace DecisionOfParticipantApplication {
|
|
22
78
|
export { type Action$k as Action, type Model$k as Model, Schema$k as Schema, Template$k as Template, registry_id$k as registry_id };
|
|
23
79
|
}
|
|
24
80
|
|
|
25
|
-
declare const registry_id$j =
|
|
26
|
-
|
|
27
|
-
|
|
81
|
+
declare const registry_id$j = 101;
|
|
82
|
+
/**
|
|
83
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
84
|
+
*/
|
|
85
|
+
type Action$j = Cooperative.Registry.SelectBranchStatement.Action;
|
|
86
|
+
type Model$j = Cooperative.Registry.SelectBranchStatement.Model;
|
|
28
87
|
declare const Schema$j: JSONSchemaType<Model$j>;
|
|
29
88
|
declare const Template$j: ITemplate<Model$j>;
|
|
30
89
|
|
|
31
|
-
declare namespace
|
|
90
|
+
declare namespace SelectBranchStatement {
|
|
32
91
|
export { type Action$j as Action, type Model$j as Model, Schema$j as Schema, Template$j as Template, registry_id$j as registry_id };
|
|
33
92
|
}
|
|
34
93
|
|
|
35
|
-
declare const registry_id$i =
|
|
36
|
-
|
|
37
|
-
|
|
94
|
+
declare const registry_id$i = 599;
|
|
95
|
+
/**
|
|
96
|
+
* Интерфейс генерации решения совета
|
|
97
|
+
*/
|
|
98
|
+
type Action$i = Cooperative.Registry.ProjectFreeDecision.Action;
|
|
99
|
+
type Model$i = Cooperative.Registry.ProjectFreeDecision.Model;
|
|
38
100
|
declare const Schema$i: JSONSchemaType<Model$i>;
|
|
39
101
|
declare const Template$i: ITemplate<Model$i>;
|
|
40
102
|
|
|
41
|
-
declare namespace
|
|
103
|
+
declare namespace ProjectFreeDecision {
|
|
42
104
|
export { type Action$i as Action, type Model$i as Model, Schema$i as Schema, Template$i as Template, registry_id$i as registry_id };
|
|
43
105
|
}
|
|
44
106
|
|
|
45
|
-
declare const registry_id$h =
|
|
46
|
-
|
|
47
|
-
|
|
107
|
+
declare const registry_id$h = 600;
|
|
108
|
+
/**
|
|
109
|
+
* Интерфейс генерации решения совета
|
|
110
|
+
*/
|
|
111
|
+
type Action$h = Cooperative.Registry.FreeDecision.Action;
|
|
112
|
+
type Model$h = Cooperative.Registry.FreeDecision.Model;
|
|
48
113
|
declare const Schema$h: JSONSchemaType<Model$h>;
|
|
49
114
|
declare const Template$h: ITemplate<Model$h>;
|
|
50
115
|
|
|
51
|
-
declare namespace
|
|
116
|
+
declare namespace FreeDecision {
|
|
52
117
|
export { type Action$h as Action, type Model$h as Model, Schema$h as Schema, Template$h as Template, registry_id$h as registry_id };
|
|
53
118
|
}
|
|
54
119
|
|
|
55
|
-
declare const registry_id$g =
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
*/
|
|
59
|
-
type Action$g = Cooperative.Registry.ParticipantApplication.Action;
|
|
60
|
-
type Model$g = Cooperative.Registry.ParticipantApplication.Model;
|
|
120
|
+
declare const registry_id$g = 700;
|
|
121
|
+
type Action$g = Cooperative.Registry.AssetContributionStatement.Action;
|
|
122
|
+
type Model$g = Cooperative.Registry.AssetContributionStatement.Model;
|
|
61
123
|
declare const Schema$g: JSONSchemaType<Model$g>;
|
|
62
124
|
declare const Template$g: ITemplate<Model$g>;
|
|
63
125
|
|
|
64
|
-
declare namespace
|
|
126
|
+
declare namespace AssetContributionStatement {
|
|
65
127
|
export { type Action$g as Action, type Model$g as Model, Schema$g as Schema, Template$g as Template, registry_id$g as registry_id };
|
|
66
128
|
}
|
|
67
129
|
|
|
68
|
-
declare const registry_id$f =
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
*/
|
|
72
|
-
type Action$f = Cooperative.Registry.DecisionOfParticipantApplication.Action;
|
|
73
|
-
type Model$f = Cooperative.Registry.DecisionOfParticipantApplication.Model;
|
|
130
|
+
declare const registry_id$f = 800;
|
|
131
|
+
type Action$f = Cooperative.Registry.ReturnByAssetStatement.Action;
|
|
132
|
+
type Model$f = Cooperative.Registry.ReturnByAssetStatement.Model;
|
|
74
133
|
declare const Schema$f: JSONSchemaType<Model$f>;
|
|
75
134
|
declare const Template$f: ITemplate<Model$f>;
|
|
76
135
|
|
|
77
|
-
declare namespace
|
|
136
|
+
declare namespace ReturnByAssetStatement {
|
|
78
137
|
export { type Action$f as Action, type Model$f as Model, Schema$f as Schema, Template$f as Template, registry_id$f as registry_id };
|
|
79
138
|
}
|
|
80
139
|
|
|
81
|
-
declare const registry_id$e =
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
*/
|
|
85
|
-
type Action$e = Cooperative.Registry.SelectBranchStatement.Action;
|
|
86
|
-
type Model$e = Cooperative.Registry.SelectBranchStatement.Model;
|
|
140
|
+
declare const registry_id$e = 701;
|
|
141
|
+
type Action$e = Cooperative.Registry.AssetContributionDecision.Action;
|
|
142
|
+
type Model$e = Cooperative.Registry.AssetContributionDecision.Model;
|
|
87
143
|
declare const Schema$e: JSONSchemaType<Model$e>;
|
|
88
144
|
declare const Template$e: ITemplate<Model$e>;
|
|
89
145
|
|
|
90
|
-
declare namespace
|
|
146
|
+
declare namespace AssetContributionDecision {
|
|
91
147
|
export { type Action$e as Action, type Model$e as Model, Schema$e as Schema, Template$e as Template, registry_id$e as registry_id };
|
|
92
148
|
}
|
|
93
149
|
|
|
94
|
-
declare const registry_id$d =
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
*/
|
|
98
|
-
type Action$d = Cooperative.Registry.ProjectFreeDecision.Action;
|
|
99
|
-
type Model$d = Cooperative.Registry.ProjectFreeDecision.Model;
|
|
150
|
+
declare const registry_id$d = 801;
|
|
151
|
+
type Action$d = Cooperative.Registry.ReturnByAssetDecision.Action;
|
|
152
|
+
type Model$d = Cooperative.Registry.ReturnByAssetDecision.Model;
|
|
100
153
|
declare const Schema$d: JSONSchemaType<Model$d>;
|
|
101
154
|
declare const Template$d: ITemplate<Model$d>;
|
|
102
155
|
|
|
103
|
-
declare namespace
|
|
156
|
+
declare namespace ReturnByAssetDecision {
|
|
104
157
|
export { type Action$d as Action, type Model$d as Model, Schema$d as Schema, Template$d as Template, registry_id$d as registry_id };
|
|
105
158
|
}
|
|
106
159
|
|
|
107
|
-
declare const registry_id$c =
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
*/
|
|
111
|
-
type Action$c = Cooperative.Registry.FreeDecision.Action;
|
|
112
|
-
type Model$c = Cooperative.Registry.FreeDecision.Model;
|
|
160
|
+
declare const registry_id$c = 702;
|
|
161
|
+
type Action$c = Cooperative.Registry.AssetContributionAct.Action;
|
|
162
|
+
type Model$c = Cooperative.Registry.AssetContributionAct.Model;
|
|
113
163
|
declare const Schema$c: JSONSchemaType<Model$c>;
|
|
114
164
|
declare const Template$c: ITemplate<Model$c>;
|
|
115
165
|
|
|
116
|
-
declare namespace
|
|
166
|
+
declare namespace AssetContributionAct {
|
|
117
167
|
export { type Action$c as Action, type Model$c as Model, Schema$c as Schema, Template$c as Template, registry_id$c as registry_id };
|
|
118
168
|
}
|
|
119
169
|
|
|
120
|
-
declare const registry_id$b =
|
|
121
|
-
type Action$b = Cooperative.Registry.
|
|
122
|
-
type Model$b = Cooperative.Registry.
|
|
170
|
+
declare const registry_id$b = 802;
|
|
171
|
+
type Action$b = Cooperative.Registry.ReturnByAssetAct.Action;
|
|
172
|
+
type Model$b = Cooperative.Registry.ReturnByAssetAct.Model;
|
|
123
173
|
declare const Schema$b: JSONSchemaType<Model$b>;
|
|
124
174
|
declare const Template$b: ITemplate<Model$b>;
|
|
125
175
|
|
|
126
|
-
declare namespace
|
|
176
|
+
declare namespace ReturnByAssetAct {
|
|
127
177
|
export { type Action$b as Action, type Model$b as Model, Schema$b as Schema, Template$b as Template, registry_id$b as registry_id };
|
|
128
178
|
}
|
|
129
179
|
|
|
130
|
-
declare const registry_id$a =
|
|
131
|
-
type Action$a = Cooperative.Registry.
|
|
132
|
-
type Model$a = Cooperative.Registry.
|
|
180
|
+
declare const registry_id$a = 1000;
|
|
181
|
+
type Action$a = Cooperative.Registry.InvestmentAgreement.Action;
|
|
182
|
+
type Model$a = Cooperative.Registry.InvestmentAgreement.Model;
|
|
133
183
|
declare const Schema$a: JSONSchemaType<Model$a>;
|
|
134
184
|
declare const Template$a: ITemplate<Model$a>;
|
|
135
185
|
|
|
136
|
-
declare namespace
|
|
186
|
+
declare namespace InvestmentAgreement {
|
|
137
187
|
export { type Action$a as Action, type Model$a as Model, Schema$a as Schema, Template$a as Template, registry_id$a as registry_id };
|
|
138
188
|
}
|
|
139
189
|
|
|
140
|
-
declare const registry_id$9 =
|
|
141
|
-
type Action$9 = Cooperative.Registry.
|
|
142
|
-
type Model$9 = Cooperative.Registry.
|
|
190
|
+
declare const registry_id$9 = 1001;
|
|
191
|
+
type Action$9 = Cooperative.Registry.InvestByResultStatement.Action;
|
|
192
|
+
type Model$9 = Cooperative.Registry.InvestByResultStatement.Model;
|
|
143
193
|
declare const Schema$9: JSONSchemaType<Model$9>;
|
|
144
194
|
declare const Template$9: ITemplate<Model$9>;
|
|
145
195
|
|
|
146
|
-
declare namespace
|
|
196
|
+
declare namespace InvestByResultStatement {
|
|
147
197
|
export { type Action$9 as Action, type Model$9 as Model, Schema$9 as Schema, Template$9 as Template, registry_id$9 as registry_id };
|
|
148
198
|
}
|
|
149
199
|
|
|
150
|
-
declare const registry_id$8 =
|
|
151
|
-
type Action$8 = Cooperative.Registry.
|
|
152
|
-
type Model$8 = Cooperative.Registry.
|
|
200
|
+
declare const registry_id$8 = 1002;
|
|
201
|
+
type Action$8 = Cooperative.Registry.InvestByResultAct.Action;
|
|
202
|
+
type Model$8 = Cooperative.Registry.InvestByResultAct.Model;
|
|
153
203
|
declare const Schema$8: JSONSchemaType<Model$8>;
|
|
154
204
|
declare const Template$8: ITemplate<Model$8>;
|
|
155
205
|
|
|
156
|
-
declare namespace
|
|
206
|
+
declare namespace InvestByResultAct {
|
|
157
207
|
export { type Action$8 as Action, type Model$8 as Model, Schema$8 as Schema, Template$8 as Template, registry_id$8 as registry_id };
|
|
158
208
|
}
|
|
159
209
|
|
|
160
|
-
declare const registry_id$7 =
|
|
161
|
-
type Action$7 = Cooperative.Registry.
|
|
162
|
-
type Model$7 = Cooperative.Registry.
|
|
210
|
+
declare const registry_id$7 = 1005;
|
|
211
|
+
type Action$7 = Cooperative.Registry.InvestByMoneyStatement.Action;
|
|
212
|
+
type Model$7 = Cooperative.Registry.InvestByMoneyStatement.Model;
|
|
163
213
|
declare const Schema$7: JSONSchemaType<Model$7>;
|
|
164
214
|
declare const Template$7: ITemplate<Model$7>;
|
|
165
215
|
|
|
166
|
-
declare namespace
|
|
216
|
+
declare namespace InvestByMoneyStatement {
|
|
167
217
|
export { type Action$7 as Action, type Model$7 as Model, Schema$7 as Schema, Template$7 as Template, registry_id$7 as registry_id };
|
|
168
218
|
}
|
|
169
219
|
|
|
170
|
-
declare const registry_id$6 =
|
|
171
|
-
type Action$6 = Cooperative.Registry.
|
|
172
|
-
type Model$6 = Cooperative.Registry.
|
|
220
|
+
declare const registry_id$6 = 1010;
|
|
221
|
+
type Action$6 = Cooperative.Registry.InvestMembershipConvertation.Action;
|
|
222
|
+
type Model$6 = Cooperative.Registry.InvestMembershipConvertation.Model;
|
|
173
223
|
declare const Schema$6: JSONSchemaType<Model$6>;
|
|
174
224
|
declare const Template$6: ITemplate<Model$6>;
|
|
175
225
|
|
|
176
|
-
declare namespace
|
|
226
|
+
declare namespace InvestMembershipConvertation {
|
|
177
227
|
export { type Action$6 as Action, type Model$6 as Model, Schema$6 as Schema, Template$6 as Template, registry_id$6 as registry_id };
|
|
178
228
|
}
|
|
179
229
|
|
|
180
|
-
declare const registry_id$5 =
|
|
181
|
-
type Action$5 = Cooperative.Registry.
|
|
182
|
-
type Model$5 = Cooperative.Registry.
|
|
230
|
+
declare const registry_id$5 = 699;
|
|
231
|
+
type Action$5 = Cooperative.Registry.SosediAgreement.Action;
|
|
232
|
+
type Model$5 = Cooperative.Registry.SosediAgreement.Model;
|
|
183
233
|
declare const Schema$5: JSONSchemaType<Model$5>;
|
|
184
234
|
declare const Template$5: ITemplate<Model$5>;
|
|
185
235
|
|
|
186
|
-
declare namespace
|
|
236
|
+
declare namespace SosediAgreement {
|
|
187
237
|
export { type Action$5 as Action, type Model$5 as Model, Schema$5 as Schema, Template$5 as Template, registry_id$5 as registry_id };
|
|
188
238
|
}
|
|
189
239
|
|
|
190
|
-
declare const registry_id$4 =
|
|
191
|
-
type Action$4 = Cooperative.Registry.
|
|
192
|
-
type Model$4 = Cooperative.Registry.
|
|
240
|
+
declare const registry_id$4 = 300;
|
|
241
|
+
type Action$4 = Cooperative.Registry.AnnualGeneralMeetingAgenda.Action;
|
|
242
|
+
type Model$4 = Cooperative.Registry.AnnualGeneralMeetingAgenda.Model;
|
|
193
243
|
declare const Schema$4: JSONSchemaType<Model$4>;
|
|
194
244
|
declare const Template$4: ITemplate<Model$4>;
|
|
195
245
|
|
|
196
|
-
declare namespace
|
|
246
|
+
declare namespace AnnualGeneralMeetingAgenda {
|
|
197
247
|
export { type Action$4 as Action, type Model$4 as Model, Schema$4 as Schema, Template$4 as Template, registry_id$4 as registry_id };
|
|
198
248
|
}
|
|
199
249
|
|
|
200
|
-
declare const registry_id$3 =
|
|
201
|
-
type Action$3 = Cooperative.Registry.
|
|
202
|
-
type Model$3 = Cooperative.Registry.
|
|
250
|
+
declare const registry_id$3 = 301;
|
|
251
|
+
type Action$3 = Cooperative.Registry.AnnualGeneralMeetingSovietDecision.Action;
|
|
252
|
+
type Model$3 = Cooperative.Registry.AnnualGeneralMeetingSovietDecision.Model;
|
|
203
253
|
declare const Schema$3: JSONSchemaType<Model$3>;
|
|
204
254
|
declare const Template$3: ITemplate<Model$3>;
|
|
205
255
|
|
|
206
|
-
declare namespace
|
|
256
|
+
declare namespace AnnualGeneralMeetingSovietDecision {
|
|
207
257
|
export { type Action$3 as Action, type Model$3 as Model, Schema$3 as Schema, Template$3 as Template, registry_id$3 as registry_id };
|
|
208
258
|
}
|
|
209
259
|
|
|
210
|
-
declare const registry_id$2 =
|
|
211
|
-
type Action$2 = Cooperative.Registry.
|
|
212
|
-
type Model$2 = Cooperative.Registry.
|
|
260
|
+
declare const registry_id$2 = 302;
|
|
261
|
+
type Action$2 = Cooperative.Registry.AnnualGeneralMeetingNotification.Action;
|
|
262
|
+
type Model$2 = Cooperative.Registry.AnnualGeneralMeetingNotification.Model;
|
|
213
263
|
declare const Schema$2: JSONSchemaType<Model$2>;
|
|
214
264
|
declare const Template$2: ITemplate<Model$2>;
|
|
215
265
|
|
|
216
|
-
declare namespace
|
|
266
|
+
declare namespace AnnualGeneralMeetingNotification {
|
|
217
267
|
export { type Action$2 as Action, type Model$2 as Model, Schema$2 as Schema, Template$2 as Template, registry_id$2 as registry_id };
|
|
218
268
|
}
|
|
219
269
|
|
|
220
|
-
declare const registry_id$1 =
|
|
221
|
-
type Action$1 = Cooperative.Registry.
|
|
222
|
-
type Model$1 = Cooperative.Registry.
|
|
270
|
+
declare const registry_id$1 = 303;
|
|
271
|
+
type Action$1 = Cooperative.Registry.AnnualGeneralMeetingVotingBallot.Action;
|
|
272
|
+
type Model$1 = Cooperative.Registry.AnnualGeneralMeetingVotingBallot.Model;
|
|
223
273
|
declare const Schema$1: JSONSchemaType<Model$1>;
|
|
224
274
|
declare const Template$1: ITemplate<Model$1>;
|
|
225
275
|
|
|
226
|
-
declare namespace
|
|
276
|
+
declare namespace AnnualGeneralMeetingVotingBallot {
|
|
227
277
|
export { type Action$1 as Action, type Model$1 as Model, Schema$1 as Schema, Template$1 as Template, registry_id$1 as registry_id };
|
|
228
278
|
}
|
|
229
279
|
|
|
230
|
-
declare const registry_id:
|
|
231
|
-
type Action = Cooperative.Registry.
|
|
232
|
-
type Model = Cooperative.Registry.
|
|
280
|
+
declare const registry_id: 304;
|
|
281
|
+
type Action = Cooperative.Registry.AnnualGeneralMeetingDecision.Action;
|
|
282
|
+
type Model = Cooperative.Registry.AnnualGeneralMeetingDecision.Model;
|
|
233
283
|
declare const Schema: JSONSchemaType<Model>;
|
|
234
284
|
declare const Template: ITemplate<Model>;
|
|
235
285
|
|
|
236
|
-
type
|
|
237
|
-
type
|
|
238
|
-
declare const
|
|
239
|
-
declare const
|
|
240
|
-
declare const
|
|
241
|
-
declare namespace
|
|
242
|
-
export { type
|
|
286
|
+
type AnnualGeneralMeetingDecision_Action = Action;
|
|
287
|
+
type AnnualGeneralMeetingDecision_Model = Model;
|
|
288
|
+
declare const AnnualGeneralMeetingDecision_Schema: typeof Schema;
|
|
289
|
+
declare const AnnualGeneralMeetingDecision_Template: typeof Template;
|
|
290
|
+
declare const AnnualGeneralMeetingDecision_registry_id: typeof registry_id;
|
|
291
|
+
declare namespace AnnualGeneralMeetingDecision {
|
|
292
|
+
export { type AnnualGeneralMeetingDecision_Action as Action, type AnnualGeneralMeetingDecision_Model as Model, AnnualGeneralMeetingDecision_Schema as Schema, AnnualGeneralMeetingDecision_Template as Template, AnnualGeneralMeetingDecision_registry_id as registry_id };
|
|
243
293
|
}
|
|
244
294
|
|
|
245
295
|
declare const Registry: {
|
|
@@ -250,6 +300,11 @@ declare const Registry: {
|
|
|
250
300
|
50: typeof CoopenomicsAgreement;
|
|
251
301
|
100: typeof ParticipantApplication;
|
|
252
302
|
101: typeof SelectBranchStatement;
|
|
303
|
+
300: typeof AnnualGeneralMeetingAgenda;
|
|
304
|
+
301: typeof AnnualGeneralMeetingSovietDecision;
|
|
305
|
+
302: typeof AnnualGeneralMeetingNotification;
|
|
306
|
+
303: typeof AnnualGeneralMeetingVotingBallot;
|
|
307
|
+
304: typeof AnnualGeneralMeetingDecision;
|
|
253
308
|
501: typeof DecisionOfParticipantApplication;
|
|
254
309
|
599: typeof ProjectFreeDecision;
|
|
255
310
|
600: typeof FreeDecision;
|
|
@@ -543,4 +598,4 @@ declare class Generator implements IGenerator {
|
|
|
543
598
|
constructCooperative(username: string, block_num?: number): Promise<CooperativeData | null>;
|
|
544
599
|
}
|
|
545
600
|
|
|
546
|
-
export { AssetContributionAct, AssetContributionDecision, AssetContributionStatement, BankAccountSchema, CoopenomicsAgreement, CooperativeSchema, type Currency, DecisionOfParticipantApplication, FreeDecision, Generator, type IBCState, type IBankAccount, type ICombinedData, type CooperativeData as ICooperativeData, type ExternalEntrepreneurData as IEntrepreneurData, type ExternalProjectData as IExternalProjectData, type IFilterActions, type IFilterDeltas, type IFilterDocuments, type IGenerate, type IGeneratedDocument, type IGenerationOptions, type IGenerator, type ExternalIndividualData as IIndividualData, type IMetaDocument, type IMetaDocumentPartial, type ExternalOrganizationData as IOrganizationData, type IPaymentData, type ITemplate, type ITranslations, InvestByMoneyStatement, InvestByResultAct, InvestByResultStatement, InvestMembershipConvertation, InvestmentAgreement, type LangType, type NestedRecord, type Numbers, ParticipantApplication, PrivacyPolicy, ProjectFreeDecision, Registry, RegulationElectronicSignaturet as RegulationElectronicSignature, ReturnByAssetAct, ReturnByAssetDecision, ReturnByAssetStatement, SelectBranchStatement, SosediAgreement, UserAgreement, VarsSchema, WalletAgreement, type dataTypes, decisionSchema, entrepreneurSchema, type externalDataTypes, type externalDataTypesArrays, individualSchema, type internalFilterTypes, organizationSchema, paymentMethodSchema };
|
|
601
|
+
export { AnnualGeneralMeetingAgenda, AnnualGeneralMeetingDecision, AnnualGeneralMeetingNotification, AnnualGeneralMeetingSovietDecision, AnnualGeneralMeetingVotingBallot, AssetContributionAct, AssetContributionDecision, AssetContributionStatement, BankAccountSchema, CoopenomicsAgreement, CooperativeSchema, type Currency, DecisionOfParticipantApplication, FreeDecision, Generator, type IBCState, type IBankAccount, type ICombinedData, type CooperativeData as ICooperativeData, type ExternalEntrepreneurData as IEntrepreneurData, type ExternalProjectData as IExternalProjectData, type IFilterActions, type IFilterDeltas, type IFilterDocuments, type IGenerate, type IGeneratedDocument, type IGenerationOptions, type IGenerator, type ExternalIndividualData as IIndividualData, type IMetaDocument, type IMetaDocumentPartial, type ExternalOrganizationData as IOrganizationData, type IPaymentData, type ITemplate, type ITranslations, InvestByMoneyStatement, InvestByResultAct, InvestByResultStatement, InvestMembershipConvertation, InvestmentAgreement, type LangType, type NestedRecord, type Numbers, ParticipantApplication, PrivacyPolicy, ProjectFreeDecision, Registry, RegulationElectronicSignaturet as RegulationElectronicSignature, ReturnByAssetAct, ReturnByAssetDecision, ReturnByAssetStatement, SelectBranchStatement, SosediAgreement, UserAgreement, VarsSchema, WalletAgreement, type dataTypes, decisionSchema, entrepreneurSchema, type externalDataTypes, type externalDataTypesArrays, individualSchema, type internalFilterTypes, organizationSchema, paymentMethodSchema };
|