@coopenomics/factory 2025.10.16 → 2025.11.7
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 +1140 -495
- package/dist/index.d.cts +321 -113
- package/dist/index.d.mts +321 -113
- package/dist/index.d.ts +321 -113
- package/dist/index.mjs +1118 -491
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -2,248 +2,428 @@ import { JSONSchemaType } from 'ajv';
|
|
|
2
2
|
import { Cooperative, Interfaces, MeetContract } 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$K = 1;
|
|
6
|
+
type Action$K = Cooperative.Registry.WalletAgreement.Action;
|
|
7
|
+
type Model$K = Cooperative.Registry.WalletAgreement.Model;
|
|
8
|
+
declare const Schema$K: JSONSchemaType<Model$K>;
|
|
9
|
+
declare const Template$K: ITemplate<Model$K>;
|
|
10
|
+
|
|
11
|
+
declare namespace WalletAgreement {
|
|
12
|
+
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 };
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
declare const registry_id$J = 2;
|
|
16
|
+
type Action$J = Cooperative.Registry.RegulationElectronicSignature.Action;
|
|
17
|
+
type Model$J = Cooperative.Registry.RegulationElectronicSignature.Model;
|
|
18
|
+
declare const Schema$J: JSONSchemaType<Model$J>;
|
|
19
|
+
declare const Template$J: ITemplate<Model$J>;
|
|
20
|
+
|
|
21
|
+
declare namespace RegulationElectronicSignaturet {
|
|
22
|
+
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 };
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare const registry_id$I = 3;
|
|
26
|
+
type Action$I = Cooperative.Registry.PrivacyPolicy.Action;
|
|
27
|
+
type Model$I = Cooperative.Registry.PrivacyPolicy.Model;
|
|
28
|
+
declare const Schema$I: JSONSchemaType<Model$I>;
|
|
29
|
+
declare const Template$I: ITemplate<Model$I>;
|
|
30
|
+
|
|
31
|
+
declare namespace PrivacyPolicy {
|
|
32
|
+
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 };
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare const registry_id$H = 4;
|
|
36
|
+
type Action$H = Cooperative.Registry.UserAgreement.Action;
|
|
37
|
+
type Model$H = Cooperative.Registry.UserAgreement.Model;
|
|
38
|
+
declare const Schema$H: JSONSchemaType<Model$H>;
|
|
39
|
+
declare const Template$H: ITemplate<Model$H>;
|
|
40
|
+
|
|
41
|
+
declare namespace UserAgreement {
|
|
42
|
+
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 };
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
declare const registry_id$G = 50;
|
|
46
|
+
type Action$G = Cooperative.Registry.CoopenomicsAgreement.Action;
|
|
47
|
+
type Model$G = Cooperative.Registry.CoopenomicsAgreement.Model;
|
|
48
|
+
declare const Schema$G: JSONSchemaType<Model$G>;
|
|
49
|
+
declare const Template$G: ITemplate<Model$G>;
|
|
50
|
+
|
|
51
|
+
declare namespace CoopenomicsAgreement {
|
|
52
|
+
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 };
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
declare const registry_id$F = 100;
|
|
56
|
+
/**
|
|
57
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
58
|
+
*/
|
|
59
|
+
type Action$F = Cooperative.Registry.ParticipantApplication.Action;
|
|
60
|
+
type Model$F = Cooperative.Registry.ParticipantApplication.Model;
|
|
61
|
+
declare const Schema$F: JSONSchemaType<Model$F>;
|
|
62
|
+
declare const Template$F: ITemplate<Model$F>;
|
|
63
|
+
|
|
64
|
+
declare namespace ParticipantApplication {
|
|
65
|
+
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 };
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
declare const registry_id$E = 501;
|
|
69
|
+
/**
|
|
70
|
+
* Интерфейс генерации решения совета
|
|
71
|
+
*/
|
|
72
|
+
type Action$E = Cooperative.Registry.DecisionOfParticipantApplication.Action;
|
|
73
|
+
type Model$E = Cooperative.Registry.DecisionOfParticipantApplication.Model;
|
|
74
|
+
declare const Schema$E: JSONSchemaType<Model$E>;
|
|
75
|
+
declare const Template$E: ITemplate<Model$E>;
|
|
76
|
+
|
|
77
|
+
declare namespace DecisionOfParticipantApplication {
|
|
78
|
+
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 };
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare const registry_id$D = 101;
|
|
82
|
+
/**
|
|
83
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
84
|
+
*/
|
|
85
|
+
type Action$D = Cooperative.Registry.SelectBranchStatement.Action;
|
|
86
|
+
type Model$D = Cooperative.Registry.SelectBranchStatement.Model;
|
|
87
|
+
declare const Schema$D: JSONSchemaType<Model$D>;
|
|
88
|
+
declare const Template$D: ITemplate<Model$D>;
|
|
89
|
+
|
|
90
|
+
declare namespace SelectBranchStatement {
|
|
91
|
+
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 };
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
declare const registry_id$C = 599;
|
|
95
|
+
/**
|
|
96
|
+
* Интерфейс генерации решения совета
|
|
97
|
+
*/
|
|
98
|
+
type Action$C = Cooperative.Registry.ProjectFreeDecision.Action;
|
|
99
|
+
type Model$C = Cooperative.Registry.ProjectFreeDecision.Model;
|
|
100
|
+
declare const Schema$C: JSONSchemaType<Model$C>;
|
|
101
|
+
declare const Template$C: ITemplate<Model$C>;
|
|
102
|
+
|
|
103
|
+
declare namespace ProjectFreeDecision {
|
|
104
|
+
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 };
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
declare const registry_id$B = 600;
|
|
108
|
+
/**
|
|
109
|
+
* Интерфейс генерации решения совета
|
|
110
|
+
*/
|
|
111
|
+
type Action$B = Cooperative.Registry.FreeDecision.Action;
|
|
112
|
+
type Model$B = Cooperative.Registry.FreeDecision.Model;
|
|
113
|
+
declare const Schema$B: JSONSchemaType<Model$B>;
|
|
114
|
+
declare const Template$B: ITemplate<Model$B>;
|
|
115
|
+
|
|
116
|
+
declare namespace FreeDecision {
|
|
117
|
+
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 };
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
declare const registry_id$A = 700;
|
|
121
|
+
type Action$A = Cooperative.Registry.AssetContributionStatement.Action;
|
|
122
|
+
type Model$A = Cooperative.Registry.AssetContributionStatement.Model;
|
|
123
|
+
declare const Schema$A: JSONSchemaType<Model$A>;
|
|
124
|
+
declare const Template$A: ITemplate<Model$A>;
|
|
125
|
+
|
|
126
|
+
declare namespace AssetContributionStatement {
|
|
127
|
+
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 };
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
declare const registry_id$z = 800;
|
|
131
|
+
type Action$z = Cooperative.Registry.ReturnByAssetStatement.Action;
|
|
132
|
+
type Model$z = Cooperative.Registry.ReturnByAssetStatement.Model;
|
|
133
|
+
declare const Schema$z: JSONSchemaType<Model$z>;
|
|
134
|
+
declare const Template$z: ITemplate<Model$z>;
|
|
135
|
+
|
|
136
|
+
declare namespace ReturnByAssetStatement {
|
|
137
|
+
export { type Action$z as Action, type Model$z as Model, Schema$z as Schema, Template$z as Template, registry_id$z as registry_id };
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
declare const registry_id$y = 701;
|
|
141
|
+
type Action$y = Cooperative.Registry.AssetContributionDecision.Action;
|
|
142
|
+
type Model$y = Cooperative.Registry.AssetContributionDecision.Model;
|
|
143
|
+
declare const Schema$y: JSONSchemaType<Model$y>;
|
|
144
|
+
declare const Template$y: ITemplate<Model$y>;
|
|
145
|
+
|
|
146
|
+
declare namespace AssetContributionDecision {
|
|
147
|
+
export { type Action$y as Action, type Model$y as Model, Schema$y as Schema, Template$y as Template, registry_id$y as registry_id };
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
declare const registry_id$x = 801;
|
|
151
|
+
type Action$x = Cooperative.Registry.ReturnByAssetDecision.Action;
|
|
152
|
+
type Model$x = Cooperative.Registry.ReturnByAssetDecision.Model;
|
|
153
|
+
declare const Schema$x: JSONSchemaType<Model$x>;
|
|
154
|
+
declare const Template$x: ITemplate<Model$x>;
|
|
155
|
+
|
|
156
|
+
declare namespace ReturnByAssetDecision {
|
|
157
|
+
export { type Action$x as Action, type Model$x as Model, Schema$x as Schema, Template$x as Template, registry_id$x as registry_id };
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
declare const registry_id$w = 702;
|
|
161
|
+
type Action$w = Cooperative.Registry.AssetContributionAct.Action;
|
|
162
|
+
type Model$w = Cooperative.Registry.AssetContributionAct.Model;
|
|
163
|
+
declare const Schema$w: JSONSchemaType<Model$w>;
|
|
164
|
+
declare const Template$w: ITemplate<Model$w>;
|
|
165
|
+
|
|
166
|
+
declare namespace AssetContributionAct {
|
|
167
|
+
export { type Action$w as Action, type Model$w as Model, Schema$w as Schema, Template$w as Template, registry_id$w as registry_id };
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
declare const registry_id$v = 802;
|
|
171
|
+
type Action$v = Cooperative.Registry.ReturnByAssetAct.Action;
|
|
172
|
+
type Model$v = Cooperative.Registry.ReturnByAssetAct.Model;
|
|
173
|
+
declare const Schema$v: JSONSchemaType<Model$v>;
|
|
174
|
+
declare const Template$v: ITemplate<Model$v>;
|
|
175
|
+
|
|
176
|
+
declare namespace ReturnByAssetAct {
|
|
177
|
+
export { type Action$v as Action, type Model$v as Model, Schema$v as Schema, Template$v as Template, registry_id$v as registry_id };
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
declare const registry_id$u = 900;
|
|
181
|
+
type Action$u = Cooperative.Registry.ReturnByMoney.Action;
|
|
182
|
+
type Model$u = Cooperative.Registry.ReturnByMoney.Model;
|
|
183
|
+
declare const Schema$u: JSONSchemaType<Model$u>;
|
|
184
|
+
declare const Template$u: ITemplate<Model$u>;
|
|
185
|
+
|
|
186
|
+
declare namespace ReturnByMoney {
|
|
187
|
+
export { type Action$u as Action, type Model$u as Model, Schema$u as Schema, Template$u as Template, registry_id$u as registry_id };
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
declare const registry_id$t = 901;
|
|
191
|
+
type Action$t = Cooperative.Registry.ReturnByMoneyDecision.Action;
|
|
192
|
+
type Model$t = Cooperative.Registry.ReturnByMoneyDecision.Model;
|
|
193
|
+
declare const Schema$t: JSONSchemaType<Model$t>;
|
|
194
|
+
declare const Template$t: ITemplate<Model$t>;
|
|
195
|
+
|
|
196
|
+
declare namespace ReturnByMoneyDecision {
|
|
197
|
+
export { type Action$t as Action, type Model$t as Model, Schema$t as Schema, Template$t as Template, registry_id$t as registry_id };
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
declare const registry_id$s = 1000;
|
|
201
|
+
type Action$s = Cooperative.Registry.CapitalizationAgreement.Action;
|
|
202
|
+
type Model$s = Cooperative.Registry.CapitalizationAgreement.Model;
|
|
8
203
|
declare const Schema$s: JSONSchemaType<Model$s>;
|
|
9
204
|
declare const Template$s: ITemplate<Model$s>;
|
|
10
205
|
|
|
11
|
-
declare namespace
|
|
206
|
+
declare namespace CapitalizationAgreement {
|
|
12
207
|
export { type Action$s as Action, type Model$s as Model, Schema$s as Schema, Template$s as Template, registry_id$s as registry_id };
|
|
13
208
|
}
|
|
14
209
|
|
|
15
|
-
declare const registry_id$r =
|
|
16
|
-
type Action$r = Cooperative.Registry.
|
|
17
|
-
type Model$r = Cooperative.Registry.
|
|
210
|
+
declare const registry_id$r = 1001;
|
|
211
|
+
type Action$r = Cooperative.Registry.GenerationAgreement.Action;
|
|
212
|
+
type Model$r = Cooperative.Registry.GenerationAgreement.Model;
|
|
18
213
|
declare const Schema$r: JSONSchemaType<Model$r>;
|
|
19
214
|
declare const Template$r: ITemplate<Model$r>;
|
|
20
215
|
|
|
21
|
-
declare namespace
|
|
216
|
+
declare namespace GenerationAgreement {
|
|
22
217
|
export { type Action$r as Action, type Model$r as Model, Schema$r as Schema, Template$r as Template, registry_id$r as registry_id };
|
|
23
218
|
}
|
|
24
219
|
|
|
25
|
-
declare const registry_id$q =
|
|
26
|
-
type Action$q = Cooperative.Registry.
|
|
27
|
-
type Model$q = Cooperative.Registry.
|
|
220
|
+
declare const registry_id$q = 1002;
|
|
221
|
+
type Action$q = Cooperative.Registry.AppendixGenerationAgreement.Action;
|
|
222
|
+
type Model$q = Cooperative.Registry.AppendixGenerationAgreement.Model;
|
|
28
223
|
declare const Schema$q: JSONSchemaType<Model$q>;
|
|
29
224
|
declare const Template$q: ITemplate<Model$q>;
|
|
30
225
|
|
|
31
|
-
declare namespace
|
|
226
|
+
declare namespace AppendixGenerationAgreement {
|
|
32
227
|
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 };
|
|
33
228
|
}
|
|
34
229
|
|
|
35
|
-
declare const registry_id$p =
|
|
36
|
-
type Action$p = Cooperative.Registry.
|
|
37
|
-
type Model$p = Cooperative.Registry.
|
|
230
|
+
declare const registry_id$p = 1010;
|
|
231
|
+
type Action$p = Cooperative.Registry.ExpenseStatement.Action;
|
|
232
|
+
type Model$p = Cooperative.Registry.ExpenseStatement.Model;
|
|
38
233
|
declare const Schema$p: JSONSchemaType<Model$p>;
|
|
39
234
|
declare const Template$p: ITemplate<Model$p>;
|
|
40
235
|
|
|
41
|
-
declare namespace
|
|
236
|
+
declare namespace ExpenseStatement {
|
|
42
237
|
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 };
|
|
43
238
|
}
|
|
44
239
|
|
|
45
|
-
declare const registry_id$o =
|
|
46
|
-
type Action$o = Cooperative.Registry.
|
|
47
|
-
type Model$o = Cooperative.Registry.
|
|
240
|
+
declare const registry_id$o = 1011;
|
|
241
|
+
type Action$o = Cooperative.Registry.ExpenseDecision.Action;
|
|
242
|
+
type Model$o = Cooperative.Registry.ExpenseDecision.Model;
|
|
48
243
|
declare const Schema$o: JSONSchemaType<Model$o>;
|
|
49
244
|
declare const Template$o: ITemplate<Model$o>;
|
|
50
245
|
|
|
51
|
-
declare namespace
|
|
246
|
+
declare namespace ExpenseDecision {
|
|
52
247
|
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 };
|
|
53
248
|
}
|
|
54
249
|
|
|
55
|
-
declare const registry_id$n =
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
*/
|
|
59
|
-
type Action$n = Cooperative.Registry.ParticipantApplication.Action;
|
|
60
|
-
type Model$n = Cooperative.Registry.ParticipantApplication.Model;
|
|
250
|
+
declare const registry_id$n = 1020;
|
|
251
|
+
type Action$n = Cooperative.Registry.GenerationMoneyInvestStatement.Action;
|
|
252
|
+
type Model$n = Cooperative.Registry.GenerationMoneyInvestStatement.Model;
|
|
61
253
|
declare const Schema$n: JSONSchemaType<Model$n>;
|
|
62
254
|
declare const Template$n: ITemplate<Model$n>;
|
|
63
255
|
|
|
64
|
-
declare namespace
|
|
256
|
+
declare namespace GenerationMoneyInvestStatement {
|
|
65
257
|
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 };
|
|
66
258
|
}
|
|
67
259
|
|
|
68
|
-
declare const registry_id$m =
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
*/
|
|
72
|
-
type Action$m = Cooperative.Registry.DecisionOfParticipantApplication.Action;
|
|
73
|
-
type Model$m = Cooperative.Registry.DecisionOfParticipantApplication.Model;
|
|
260
|
+
declare const registry_id$m = 1025;
|
|
261
|
+
type Action$m = Cooperative.Registry.GenerationMoneyReturnUnusedStatement.Action;
|
|
262
|
+
type Model$m = Cooperative.Registry.GenerationMoneyReturnUnusedStatement.Model;
|
|
74
263
|
declare const Schema$m: JSONSchemaType<Model$m>;
|
|
75
264
|
declare const Template$m: ITemplate<Model$m>;
|
|
76
265
|
|
|
77
|
-
declare namespace
|
|
266
|
+
declare namespace GenerationMoneyReturnUnusedStatement {
|
|
78
267
|
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 };
|
|
79
268
|
}
|
|
80
269
|
|
|
81
|
-
declare const registry_id$l =
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
*/
|
|
85
|
-
type Action$l = Cooperative.Registry.SelectBranchStatement.Action;
|
|
86
|
-
type Model$l = Cooperative.Registry.SelectBranchStatement.Model;
|
|
270
|
+
declare const registry_id$l = 1030;
|
|
271
|
+
type Action$l = Cooperative.Registry.CapitalizationMoneyInvestStatement.Action;
|
|
272
|
+
type Model$l = Cooperative.Registry.CapitalizationMoneyInvestStatement.Model;
|
|
87
273
|
declare const Schema$l: JSONSchemaType<Model$l>;
|
|
88
274
|
declare const Template$l: ITemplate<Model$l>;
|
|
89
275
|
|
|
90
|
-
declare namespace
|
|
276
|
+
declare namespace CapitalizationMoneyInvestStatement {
|
|
91
277
|
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 };
|
|
92
278
|
}
|
|
93
279
|
|
|
94
|
-
declare const registry_id$k =
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
*/
|
|
98
|
-
type Action$k = Cooperative.Registry.ProjectFreeDecision.Action;
|
|
99
|
-
type Model$k = Cooperative.Registry.ProjectFreeDecision.Model;
|
|
280
|
+
declare const registry_id$k = 1040;
|
|
281
|
+
type Action$k = Cooperative.Registry.ResultContributionStatement.Action;
|
|
282
|
+
type Model$k = Cooperative.Registry.ResultContributionStatement.Model;
|
|
100
283
|
declare const Schema$k: JSONSchemaType<Model$k>;
|
|
101
284
|
declare const Template$k: ITemplate<Model$k>;
|
|
102
285
|
|
|
103
|
-
declare namespace
|
|
286
|
+
declare namespace ResultContributionStatement {
|
|
104
287
|
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 };
|
|
105
288
|
}
|
|
106
289
|
|
|
107
|
-
declare const registry_id$j =
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
*/
|
|
111
|
-
type Action$j = Cooperative.Registry.FreeDecision.Action;
|
|
112
|
-
type Model$j = Cooperative.Registry.FreeDecision.Model;
|
|
290
|
+
declare const registry_id$j = 1041;
|
|
291
|
+
type Action$j = Cooperative.Registry.ResultContributionDecision.Action;
|
|
292
|
+
type Model$j = Cooperative.Registry.ResultContributionDecision.Model;
|
|
113
293
|
declare const Schema$j: JSONSchemaType<Model$j>;
|
|
114
294
|
declare const Template$j: ITemplate<Model$j>;
|
|
115
295
|
|
|
116
|
-
declare namespace
|
|
296
|
+
declare namespace ResultContributionDecision {
|
|
117
297
|
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 };
|
|
118
298
|
}
|
|
119
299
|
|
|
120
|
-
declare const registry_id$i =
|
|
121
|
-
type Action$i = Cooperative.Registry.
|
|
122
|
-
type Model$i = Cooperative.Registry.
|
|
300
|
+
declare const registry_id$i = 1042;
|
|
301
|
+
type Action$i = Cooperative.Registry.ResultContributionAct.Action;
|
|
302
|
+
type Model$i = Cooperative.Registry.ResultContributionAct.Model;
|
|
123
303
|
declare const Schema$i: JSONSchemaType<Model$i>;
|
|
124
304
|
declare const Template$i: ITemplate<Model$i>;
|
|
125
305
|
|
|
126
|
-
declare namespace
|
|
306
|
+
declare namespace ResultContributionAct {
|
|
127
307
|
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 };
|
|
128
308
|
}
|
|
129
309
|
|
|
130
|
-
declare const registry_id$h =
|
|
131
|
-
type Action$h = Cooperative.Registry.
|
|
132
|
-
type Model$h = Cooperative.Registry.
|
|
310
|
+
declare const registry_id$h = 1050;
|
|
311
|
+
type Action$h = Cooperative.Registry.GetLoanStatement.Action;
|
|
312
|
+
type Model$h = Cooperative.Registry.GetLoanStatement.Model;
|
|
133
313
|
declare const Schema$h: JSONSchemaType<Model$h>;
|
|
134
314
|
declare const Template$h: ITemplate<Model$h>;
|
|
135
315
|
|
|
136
|
-
declare namespace
|
|
316
|
+
declare namespace GetLoanStatement {
|
|
137
317
|
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 };
|
|
138
318
|
}
|
|
139
319
|
|
|
140
|
-
declare const registry_id$g =
|
|
141
|
-
type Action$g = Cooperative.Registry.
|
|
142
|
-
type Model$g = Cooperative.Registry.
|
|
320
|
+
declare const registry_id$g = 1051;
|
|
321
|
+
type Action$g = Cooperative.Registry.GetLoanDecision.Action;
|
|
322
|
+
type Model$g = Cooperative.Registry.GetLoanDecision.Model;
|
|
143
323
|
declare const Schema$g: JSONSchemaType<Model$g>;
|
|
144
324
|
declare const Template$g: ITemplate<Model$g>;
|
|
145
325
|
|
|
146
|
-
declare namespace
|
|
326
|
+
declare namespace GetLoanDecision {
|
|
147
327
|
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 };
|
|
148
328
|
}
|
|
149
329
|
|
|
150
|
-
declare const registry_id$f =
|
|
151
|
-
type Action$f = Cooperative.Registry.
|
|
152
|
-
type Model$f = Cooperative.Registry.
|
|
330
|
+
declare const registry_id$f = 1060;
|
|
331
|
+
type Action$f = Cooperative.Registry.GenerationPropertyInvestStatement.Action;
|
|
332
|
+
type Model$f = Cooperative.Registry.GenerationPropertyInvestStatement.Model;
|
|
153
333
|
declare const Schema$f: JSONSchemaType<Model$f>;
|
|
154
334
|
declare const Template$f: ITemplate<Model$f>;
|
|
155
335
|
|
|
156
|
-
declare namespace
|
|
336
|
+
declare namespace GenerationPropertyInvestStatement {
|
|
157
337
|
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 };
|
|
158
338
|
}
|
|
159
339
|
|
|
160
|
-
declare const registry_id$e =
|
|
161
|
-
type Action$e = Cooperative.Registry.
|
|
162
|
-
type Model$e = Cooperative.Registry.
|
|
340
|
+
declare const registry_id$e = 1061;
|
|
341
|
+
type Action$e = Cooperative.Registry.GenerationPropertyInvestDecision.Action;
|
|
342
|
+
type Model$e = Cooperative.Registry.GenerationPropertyInvestDecision.Model;
|
|
163
343
|
declare const Schema$e: JSONSchemaType<Model$e>;
|
|
164
344
|
declare const Template$e: ITemplate<Model$e>;
|
|
165
345
|
|
|
166
|
-
declare namespace
|
|
346
|
+
declare namespace GenerationPropertyInvestDecision {
|
|
167
347
|
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 };
|
|
168
348
|
}
|
|
169
349
|
|
|
170
|
-
declare const registry_id$d =
|
|
171
|
-
type Action$d = Cooperative.Registry.
|
|
172
|
-
type Model$d = Cooperative.Registry.
|
|
350
|
+
declare const registry_id$d = 1062;
|
|
351
|
+
type Action$d = Cooperative.Registry.GenerationPropertyInvestAct.Action;
|
|
352
|
+
type Model$d = Cooperative.Registry.GenerationPropertyInvestAct.Model;
|
|
173
353
|
declare const Schema$d: JSONSchemaType<Model$d>;
|
|
174
354
|
declare const Template$d: ITemplate<Model$d>;
|
|
175
355
|
|
|
176
|
-
declare namespace
|
|
356
|
+
declare namespace GenerationPropertyInvestAct {
|
|
177
357
|
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 };
|
|
178
358
|
}
|
|
179
359
|
|
|
180
|
-
declare const registry_id$c =
|
|
181
|
-
type Action$c = Cooperative.Registry.
|
|
182
|
-
type Model$c = Cooperative.Registry.
|
|
360
|
+
declare const registry_id$c = 1070;
|
|
361
|
+
type Action$c = Cooperative.Registry.CapitalizationPropertyInvestStatement.Action;
|
|
362
|
+
type Model$c = Cooperative.Registry.CapitalizationPropertyInvestStatement.Model;
|
|
183
363
|
declare const Schema$c: JSONSchemaType<Model$c>;
|
|
184
364
|
declare const Template$c: ITemplate<Model$c>;
|
|
185
365
|
|
|
186
|
-
declare namespace
|
|
366
|
+
declare namespace CapitalizationPropertyInvestStatement {
|
|
187
367
|
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 };
|
|
188
368
|
}
|
|
189
369
|
|
|
190
|
-
declare const registry_id$b =
|
|
191
|
-
type Action$b = Cooperative.Registry.
|
|
192
|
-
type Model$b = Cooperative.Registry.
|
|
370
|
+
declare const registry_id$b = 1071;
|
|
371
|
+
type Action$b = Cooperative.Registry.CapitalizationPropertyInvestDecision.Action;
|
|
372
|
+
type Model$b = Cooperative.Registry.CapitalizationPropertyInvestDecision.Model;
|
|
193
373
|
declare const Schema$b: JSONSchemaType<Model$b>;
|
|
194
374
|
declare const Template$b: ITemplate<Model$b>;
|
|
195
375
|
|
|
196
|
-
declare namespace
|
|
376
|
+
declare namespace CapitalizationPropertyInvestDecision {
|
|
197
377
|
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 };
|
|
198
378
|
}
|
|
199
379
|
|
|
200
|
-
declare const registry_id$a =
|
|
201
|
-
type Action$a = Cooperative.Registry.
|
|
202
|
-
type Model$a = Cooperative.Registry.
|
|
380
|
+
declare const registry_id$a = 1072;
|
|
381
|
+
type Action$a = Cooperative.Registry.CapitalizationPropertyInvestAct.Action;
|
|
382
|
+
type Model$a = Cooperative.Registry.CapitalizationPropertyInvestAct.Model;
|
|
203
383
|
declare const Schema$a: JSONSchemaType<Model$a>;
|
|
204
384
|
declare const Template$a: ITemplate<Model$a>;
|
|
205
385
|
|
|
206
|
-
declare namespace
|
|
386
|
+
declare namespace CapitalizationPropertyInvestAct {
|
|
207
387
|
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 };
|
|
208
388
|
}
|
|
209
389
|
|
|
210
|
-
declare const registry_id$9 =
|
|
211
|
-
type Action$9 = Cooperative.Registry.
|
|
212
|
-
type Model$9 = Cooperative.Registry.
|
|
390
|
+
declare const registry_id$9 = 1080;
|
|
391
|
+
type Action$9 = Cooperative.Registry.GenerationToMainWalletConvertStatement.Action;
|
|
392
|
+
type Model$9 = Cooperative.Registry.GenerationToMainWalletConvertStatement.Model;
|
|
213
393
|
declare const Schema$9: JSONSchemaType<Model$9>;
|
|
214
394
|
declare const Template$9: ITemplate<Model$9>;
|
|
215
395
|
|
|
216
|
-
declare namespace
|
|
396
|
+
declare namespace GenerationToMainWalletConvertStatement {
|
|
217
397
|
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 };
|
|
218
398
|
}
|
|
219
399
|
|
|
220
|
-
declare const registry_id$8 =
|
|
221
|
-
type Action$8 = Cooperative.Registry.
|
|
222
|
-
type Model$8 = Cooperative.Registry.
|
|
400
|
+
declare const registry_id$8 = 1081;
|
|
401
|
+
type Action$8 = Cooperative.Registry.GenerationToProjectConvertStatement.Action;
|
|
402
|
+
type Model$8 = Cooperative.Registry.GenerationToProjectConvertStatement.Model;
|
|
223
403
|
declare const Schema$8: JSONSchemaType<Model$8>;
|
|
224
404
|
declare const Template$8: ITemplate<Model$8>;
|
|
225
405
|
|
|
226
|
-
declare namespace
|
|
406
|
+
declare namespace GenerationToProjectConvertStatement {
|
|
227
407
|
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 };
|
|
228
408
|
}
|
|
229
409
|
|
|
230
|
-
declare const registry_id$7 =
|
|
231
|
-
type Action$7 = Cooperative.Registry.
|
|
232
|
-
type Model$7 = Cooperative.Registry.
|
|
410
|
+
declare const registry_id$7 = 1082;
|
|
411
|
+
type Action$7 = Cooperative.Registry.GenerationToCapitalizationConvertStatement.Action;
|
|
412
|
+
type Model$7 = Cooperative.Registry.GenerationToCapitalizationConvertStatement.Model;
|
|
233
413
|
declare const Schema$7: JSONSchemaType<Model$7>;
|
|
234
414
|
declare const Template$7: ITemplate<Model$7>;
|
|
235
415
|
|
|
236
|
-
declare namespace
|
|
416
|
+
declare namespace GenerationToCapitalizationConvertStatement {
|
|
237
417
|
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 };
|
|
238
418
|
}
|
|
239
419
|
|
|
240
|
-
declare const registry_id$6 =
|
|
241
|
-
type Action$6 = Cooperative.Registry.
|
|
242
|
-
type Model$6 = Cooperative.Registry.
|
|
420
|
+
declare const registry_id$6 = 1090;
|
|
421
|
+
type Action$6 = Cooperative.Registry.CapitalizationToMainWalletConvertStatement.Action;
|
|
422
|
+
type Model$6 = Cooperative.Registry.CapitalizationToMainWalletConvertStatement.Model;
|
|
243
423
|
declare const Schema$6: JSONSchemaType<Model$6>;
|
|
244
424
|
declare const Template$6: ITemplate<Model$6>;
|
|
245
425
|
|
|
246
|
-
declare namespace
|
|
426
|
+
declare namespace CapitalizationToMainWalletConvertStatement {
|
|
247
427
|
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 };
|
|
248
428
|
}
|
|
249
429
|
|
|
@@ -343,11 +523,29 @@ declare const Registry: {
|
|
|
343
523
|
802: typeof ReturnByAssetAct;
|
|
344
524
|
900: typeof ReturnByMoney;
|
|
345
525
|
901: typeof ReturnByMoneyDecision;
|
|
346
|
-
1000: typeof
|
|
347
|
-
1001: typeof
|
|
348
|
-
1002: typeof
|
|
349
|
-
|
|
350
|
-
|
|
526
|
+
1000: typeof CapitalizationAgreement;
|
|
527
|
+
1001: typeof GenerationAgreement;
|
|
528
|
+
1002: typeof AppendixGenerationAgreement;
|
|
529
|
+
1010: typeof ExpenseStatement;
|
|
530
|
+
1011: typeof ExpenseDecision;
|
|
531
|
+
1020: typeof GenerationMoneyInvestStatement;
|
|
532
|
+
1025: typeof GenerationMoneyReturnUnusedStatement;
|
|
533
|
+
1030: typeof CapitalizationMoneyInvestStatement;
|
|
534
|
+
1040: typeof ResultContributionStatement;
|
|
535
|
+
1041: typeof ResultContributionDecision;
|
|
536
|
+
1042: typeof ResultContributionAct;
|
|
537
|
+
1050: typeof GetLoanStatement;
|
|
538
|
+
1051: typeof GetLoanDecision;
|
|
539
|
+
1060: typeof GenerationPropertyInvestStatement;
|
|
540
|
+
1061: typeof GenerationPropertyInvestDecision;
|
|
541
|
+
1062: typeof GenerationPropertyInvestAct;
|
|
542
|
+
1070: typeof CapitalizationPropertyInvestStatement;
|
|
543
|
+
1071: typeof CapitalizationPropertyInvestDecision;
|
|
544
|
+
1072: typeof CapitalizationPropertyInvestAct;
|
|
545
|
+
1080: typeof GenerationToMainWalletConvertStatement;
|
|
546
|
+
1081: typeof GenerationToProjectConvertStatement;
|
|
547
|
+
1082: typeof GenerationToCapitalizationConvertStatement;
|
|
548
|
+
1090: typeof CapitalizationToMainWalletConvertStatement;
|
|
351
549
|
};
|
|
352
550
|
|
|
353
551
|
interface ValidateResult {
|
|
@@ -542,6 +740,16 @@ interface IMetaDocumentPartial extends Partial<IMetaDocument> {
|
|
|
542
740
|
type IGenerate = Cooperative.Document.IGenerate;
|
|
543
741
|
type IGenerationOptions = Cooperative.Document.IGenerationOptions;
|
|
544
742
|
|
|
743
|
+
type IGenerateJoinCoopDecision = Cooperative.Document.IGenerateJoinCoopDecision;
|
|
744
|
+
/**
|
|
745
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
746
|
+
*/
|
|
747
|
+
interface IGenerateJoinCoop extends IGenerate {
|
|
748
|
+
signature: string;
|
|
749
|
+
skip_save: boolean;
|
|
750
|
+
}
|
|
751
|
+
type IGenerateAgreement = Cooperative.Document.IGenerateWalletAgreement;
|
|
752
|
+
|
|
545
753
|
declare const BankAccountSchema: JSONSchemaType<IBankAccount>;
|
|
546
754
|
|
|
547
755
|
declare const decisionSchema: JSONSchemaType<Cooperative.Document.IDecisionData>;
|
|
@@ -669,4 +877,4 @@ declare class Generator implements IGenerator {
|
|
|
669
877
|
search(query: string): Promise<ISearchResult[]>;
|
|
670
878
|
}
|
|
671
879
|
|
|
672
|
-
export { AgendaMeetSchema, AgendaQuestionSchema, AnnualGeneralMeetingAgenda, AnnualGeneralMeetingDecision, AnnualGeneralMeetingNotification, AnnualGeneralMeetingSovietDecision, AnnualGeneralMeetingVotingBallot, AssetContributionAct, AssetContributionDecision, AssetContributionStatement, BankAccountSchema, CommonUserSchema, 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 ISearchResult, type ITemplate, type ITranslations,
|
|
880
|
+
export { AgendaMeetSchema, AgendaQuestionSchema, AnnualGeneralMeetingAgenda, AnnualGeneralMeetingDecision, AnnualGeneralMeetingNotification, AnnualGeneralMeetingSovietDecision, AnnualGeneralMeetingVotingBallot, AppendixGenerationAgreement, AssetContributionAct, AssetContributionDecision, AssetContributionStatement, BankAccountSchema, CapitalizationAgreement, CapitalizationMoneyInvestStatement, CapitalizationPropertyInvestAct, CapitalizationPropertyInvestDecision, CapitalizationPropertyInvestStatement, CapitalizationToMainWalletConvertStatement, CommonUserSchema, CoopenomicsAgreement, CooperativeSchema, type Currency, DecisionOfParticipantApplication, ExpenseDecision, ExpenseStatement, FreeDecision, GenerationAgreement, GenerationMoneyInvestStatement, GenerationMoneyReturnUnusedStatement, GenerationPropertyInvestAct, GenerationPropertyInvestDecision, GenerationPropertyInvestStatement, GenerationToCapitalizationConvertStatement, GenerationToMainWalletConvertStatement, GenerationToProjectConvertStatement, Generator, GetLoanDecision, GetLoanStatement, 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 IGenerateAgreement, type IGenerateJoinCoop, type IGenerateJoinCoopDecision, type IGeneratedDocument, type IGenerationOptions, type IGenerator, type ExternalIndividualData as IIndividualData, type IMetaDocument, type IMetaDocumentPartial, type ExternalOrganizationData as IOrganizationData, type IPaymentData, type ISearchResult, type ITemplate, type ITranslations, type LangType, MeetPointSchema, MeetSchema, type NestedRecord, type Numbers, ParticipantApplication, PrivacyPolicy, ProjectFreeDecision, QuestionExtendedSchema, QuestionSchema, Registry, RegulationElectronicSignaturet as RegulationElectronicSignature, ResultContributionAct, ResultContributionDecision, ResultContributionStatement, ReturnByAssetAct, ReturnByAssetDecision, ReturnByAssetStatement, ReturnByMoney, ReturnByMoneyDecision, SelectBranchStatement, SosediAgreement, UserAgreement, VarsSchema, WalletAgreement, type dataTypes, decisionSchema, entrepreneurSchema, type externalDataTypes, type externalDataTypesArrays, individualSchema, type internalFilterTypes, organizationSchema, paymentMethodSchema };
|