cooptypes 2.1.4 → 2.1.8
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 +919 -536
- package/dist/index.d.cts +1052 -624
- package/dist/index.d.mts +1052 -624
- package/dist/index.d.ts +1052 -624
- package/dist/index.mjs +908 -526
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ declare const _chairman = "_chairman";
|
|
|
14
14
|
* Обобщенное имя аккаунта члена совета кооператива, которое должно быть заменено на реальное.
|
|
15
15
|
*/
|
|
16
16
|
declare const _member = "_member";
|
|
17
|
+
/**
|
|
18
|
+
* Обобщенное имя аккаунта совета кооператива, которое должно быть заменено на реальное.
|
|
19
|
+
*/
|
|
20
|
+
declare const _trustee = "_trustee";
|
|
17
21
|
/**
|
|
18
22
|
* Обобщенное имя аккаунта администратора кооператива, которое должно быть заменено на реальное.
|
|
19
23
|
*/
|
|
@@ -27,14 +31,15 @@ declare const _contract = "_contract";
|
|
|
27
31
|
*/
|
|
28
32
|
declare const _system$1 = "_system";
|
|
29
33
|
|
|
30
|
-
declare const index$
|
|
31
|
-
declare const index$
|
|
32
|
-
declare const index$
|
|
33
|
-
declare const index$
|
|
34
|
-
declare const index$
|
|
35
|
-
declare const index$
|
|
36
|
-
declare
|
|
37
|
-
|
|
34
|
+
declare const index$Z__admin: typeof _admin;
|
|
35
|
+
declare const index$Z__chairman: typeof _chairman;
|
|
36
|
+
declare const index$Z__contract: typeof _contract;
|
|
37
|
+
declare const index$Z__coopname: typeof _coopname;
|
|
38
|
+
declare const index$Z__member: typeof _member;
|
|
39
|
+
declare const index$Z__trustee: typeof _trustee;
|
|
40
|
+
declare const index$Z__username: typeof _username;
|
|
41
|
+
declare namespace index$Z {
|
|
42
|
+
export { index$Z__admin as _admin, index$Z__chairman as _chairman, index$Z__contract as _contract, index$Z__coopname as _coopname, index$Z__member as _member, _system$1 as _system, index$Z__trustee as _trustee, index$Z__username as _username };
|
|
38
43
|
}
|
|
39
44
|
|
|
40
45
|
declare const _draft: {
|
|
@@ -77,19 +82,24 @@ declare const _wrap: {
|
|
|
77
82
|
readonly production: "eosio.wrap";
|
|
78
83
|
readonly testnet: "eosio.wrap";
|
|
79
84
|
};
|
|
85
|
+
declare const _branch: {
|
|
86
|
+
readonly production: "branch";
|
|
87
|
+
readonly testnet: "branch";
|
|
88
|
+
};
|
|
80
89
|
|
|
81
|
-
declare const index$
|
|
82
|
-
declare const index$
|
|
83
|
-
declare const index$
|
|
84
|
-
declare const index$
|
|
85
|
-
declare const index$
|
|
86
|
-
declare const index$
|
|
87
|
-
declare const index$
|
|
88
|
-
declare const index$
|
|
89
|
-
declare const index$
|
|
90
|
-
declare const index$
|
|
91
|
-
declare
|
|
92
|
-
|
|
90
|
+
declare const index$Y__branch: typeof _branch;
|
|
91
|
+
declare const index$Y__draft: typeof _draft;
|
|
92
|
+
declare const index$Y__fund: typeof _fund;
|
|
93
|
+
declare const index$Y__gateway: typeof _gateway;
|
|
94
|
+
declare const index$Y__marketplace: typeof _marketplace;
|
|
95
|
+
declare const index$Y__msig: typeof _msig;
|
|
96
|
+
declare const index$Y__registrator: typeof _registrator;
|
|
97
|
+
declare const index$Y__soviet: typeof _soviet;
|
|
98
|
+
declare const index$Y__system: typeof _system;
|
|
99
|
+
declare const index$Y__token: typeof _token;
|
|
100
|
+
declare const index$Y__wrap: typeof _wrap;
|
|
101
|
+
declare namespace index$Y {
|
|
102
|
+
export { index$Y__branch as _branch, index$Y__draft as _draft, index$Y__fund as _fund, index$Y__gateway as _gateway, index$Y__marketplace as _marketplace, index$Y__msig as _msig, index$Y__registrator as _registrator, index$Y__soviet as _soviet, index$Y__system as _system, index$Y__token as _token, index$Y__wrap as _wrap };
|
|
93
103
|
}
|
|
94
104
|
|
|
95
105
|
/**
|
|
@@ -118,32 +128,32 @@ interface Authorization {
|
|
|
118
128
|
actor: typeof _username | typeof _chairman | typeof _admin | typeof _contract | typeof _system$1;
|
|
119
129
|
}
|
|
120
130
|
|
|
121
|
-
type index$
|
|
122
|
-
declare const index$
|
|
123
|
-
declare const index$
|
|
124
|
-
declare const index$
|
|
125
|
-
declare namespace index$
|
|
126
|
-
export { type index$
|
|
131
|
+
type index$X_Authorization = Authorization;
|
|
132
|
+
declare const index$X_active: typeof active;
|
|
133
|
+
declare const index$X_owner: typeof owner;
|
|
134
|
+
declare const index$X_special: typeof special;
|
|
135
|
+
declare namespace index$X {
|
|
136
|
+
export { type index$X_Authorization as Authorization, index$X_active as active, index$X_owner as owner, index$X_special as special };
|
|
127
137
|
}
|
|
128
138
|
|
|
129
|
-
declare namespace index$
|
|
130
|
-
export { index$
|
|
139
|
+
declare namespace index$W {
|
|
140
|
+
export { index$Z as Actors, index$Y as ContractNames, index$X as Permissions };
|
|
131
141
|
}
|
|
132
142
|
|
|
133
|
-
type IName$
|
|
143
|
+
type IName$a = string;
|
|
134
144
|
type IUint64$6 = number | string;
|
|
135
145
|
interface ICounts$4 extends ICountsBase$4 {
|
|
136
146
|
}
|
|
137
147
|
interface ICountsBase$4 {
|
|
138
|
-
key: IName$
|
|
139
|
-
secondary_key: IName$
|
|
148
|
+
key: IName$a;
|
|
149
|
+
secondary_key: IName$a;
|
|
140
150
|
value: IUint64$6;
|
|
141
151
|
}
|
|
142
152
|
interface ICreatedraft {
|
|
143
|
-
scope: IName$
|
|
144
|
-
username: IName$
|
|
153
|
+
scope: IName$a;
|
|
154
|
+
username: IName$a;
|
|
145
155
|
registry_id: IUint64$6;
|
|
146
|
-
lang: IName$
|
|
156
|
+
lang: IName$a;
|
|
147
157
|
title: string;
|
|
148
158
|
description: string;
|
|
149
159
|
context: string;
|
|
@@ -151,25 +161,25 @@ interface ICreatedraft {
|
|
|
151
161
|
translation_data: string;
|
|
152
162
|
}
|
|
153
163
|
interface ICreatetrans {
|
|
154
|
-
scope: IName$
|
|
155
|
-
username: IName$
|
|
164
|
+
scope: IName$a;
|
|
165
|
+
username: IName$a;
|
|
156
166
|
registry_id: IUint64$6;
|
|
157
|
-
lang: IName$
|
|
167
|
+
lang: IName$a;
|
|
158
168
|
data: string;
|
|
159
169
|
}
|
|
160
170
|
interface IDeldraft {
|
|
161
|
-
scope: IName$
|
|
162
|
-
username: IName$
|
|
171
|
+
scope: IName$a;
|
|
172
|
+
username: IName$a;
|
|
163
173
|
registry_id: IUint64$6;
|
|
164
174
|
}
|
|
165
175
|
interface IDeltrans {
|
|
166
|
-
scope: IName$
|
|
167
|
-
username: IName$
|
|
176
|
+
scope: IName$a;
|
|
177
|
+
username: IName$a;
|
|
168
178
|
translate_id: IUint64$6;
|
|
169
179
|
}
|
|
170
180
|
interface IEditdraft {
|
|
171
|
-
scope: IName$
|
|
172
|
-
username: IName$
|
|
181
|
+
scope: IName$a;
|
|
182
|
+
username: IName$a;
|
|
173
183
|
registry_id: IUint64$6;
|
|
174
184
|
title: string;
|
|
175
185
|
description: string;
|
|
@@ -177,15 +187,15 @@ interface IEditdraft {
|
|
|
177
187
|
model: string;
|
|
178
188
|
}
|
|
179
189
|
interface IEdittrans {
|
|
180
|
-
scope: IName$
|
|
181
|
-
username: IName$
|
|
190
|
+
scope: IName$a;
|
|
191
|
+
username: IName$a;
|
|
182
192
|
translate_id: IUint64$6;
|
|
183
193
|
data: string;
|
|
184
194
|
}
|
|
185
|
-
interface IMigrate$
|
|
195
|
+
interface IMigrate$5 {
|
|
186
196
|
}
|
|
187
197
|
interface INewid$1 {
|
|
188
|
-
scope: IName$
|
|
198
|
+
scope: IName$a;
|
|
189
199
|
id: IUint64$6;
|
|
190
200
|
}
|
|
191
201
|
interface IOnedraft {
|
|
@@ -200,7 +210,7 @@ interface IOnedraft {
|
|
|
200
210
|
interface ITranslation$1 {
|
|
201
211
|
id: IUint64$6;
|
|
202
212
|
draft_id: IUint64$6;
|
|
203
|
-
lang: IName$
|
|
213
|
+
lang: IName$a;
|
|
204
214
|
data: string;
|
|
205
215
|
}
|
|
206
216
|
|
|
@@ -212,10 +222,10 @@ type draft_IEditdraft = IEditdraft;
|
|
|
212
222
|
type draft_IEdittrans = IEdittrans;
|
|
213
223
|
type draft_IOnedraft = IOnedraft;
|
|
214
224
|
declare namespace draft {
|
|
215
|
-
export type { ICounts$4 as ICounts, ICountsBase$4 as ICountsBase, draft_ICreatedraft as ICreatedraft, draft_ICreatetrans as ICreatetrans, draft_IDeldraft as IDeldraft, draft_IDeltrans as IDeltrans, draft_IEditdraft as IEditdraft, draft_IEdittrans as IEdittrans, IMigrate$
|
|
225
|
+
export type { ICounts$4 as ICounts, ICountsBase$4 as ICountsBase, draft_ICreatedraft as ICreatedraft, draft_ICreatetrans as ICreatetrans, draft_IDeldraft as IDeldraft, draft_IDeltrans as IDeltrans, draft_IEditdraft as IEditdraft, draft_IEdittrans as IEdittrans, IMigrate$5 as IMigrate, IName$a as IName, INewid$1 as INewid, draft_IOnedraft as IOnedraft, ITranslation$1 as ITranslation, IUint64$6 as IUint64 };
|
|
216
226
|
}
|
|
217
227
|
|
|
218
|
-
declare const authorizations$
|
|
228
|
+
declare const authorizations$2x: readonly [{
|
|
219
229
|
readonly permissions: readonly ["active"];
|
|
220
230
|
readonly actor: {
|
|
221
231
|
readonly production: "eosio";
|
|
@@ -225,7 +235,7 @@ declare const authorizations$2o: readonly [{
|
|
|
225
235
|
/**
|
|
226
236
|
* Имя действия
|
|
227
237
|
*/
|
|
228
|
-
declare const actionName$
|
|
238
|
+
declare const actionName$2x = "createdraft";
|
|
229
239
|
/**
|
|
230
240
|
* @interface
|
|
231
241
|
*/
|
|
@@ -233,10 +243,10 @@ type ICreateDraft = ICreatedraft;
|
|
|
233
243
|
|
|
234
244
|
type createDraft_ICreateDraft = ICreateDraft;
|
|
235
245
|
declare namespace createDraft {
|
|
236
|
-
export { type createDraft_ICreateDraft as ICreateDraft, actionName$
|
|
246
|
+
export { type createDraft_ICreateDraft as ICreateDraft, actionName$2x as actionName, authorizations$2x as authorizations };
|
|
237
247
|
}
|
|
238
248
|
|
|
239
|
-
declare const authorizations$
|
|
249
|
+
declare const authorizations$2w: readonly [{
|
|
240
250
|
readonly permissions: readonly ["active"];
|
|
241
251
|
readonly actor: {
|
|
242
252
|
readonly production: "eosio";
|
|
@@ -246,7 +256,7 @@ declare const authorizations$2n: readonly [{
|
|
|
246
256
|
/**
|
|
247
257
|
* Имя действия
|
|
248
258
|
*/
|
|
249
|
-
declare const actionName$
|
|
259
|
+
declare const actionName$2w = "editdraft";
|
|
250
260
|
/**
|
|
251
261
|
* @interface
|
|
252
262
|
*/
|
|
@@ -254,10 +264,10 @@ type IEditDraft = IEditdraft;
|
|
|
254
264
|
|
|
255
265
|
type editDraft_IEditDraft = IEditDraft;
|
|
256
266
|
declare namespace editDraft {
|
|
257
|
-
export { type editDraft_IEditDraft as IEditDraft, actionName$
|
|
267
|
+
export { type editDraft_IEditDraft as IEditDraft, actionName$2w as actionName, authorizations$2w as authorizations };
|
|
258
268
|
}
|
|
259
269
|
|
|
260
|
-
declare const authorizations$
|
|
270
|
+
declare const authorizations$2v: readonly [{
|
|
261
271
|
readonly permissions: readonly ["active"];
|
|
262
272
|
readonly actor: {
|
|
263
273
|
readonly production: "eosio";
|
|
@@ -267,7 +277,7 @@ declare const authorizations$2m: readonly [{
|
|
|
267
277
|
/**
|
|
268
278
|
* Имя действия
|
|
269
279
|
*/
|
|
270
|
-
declare const actionName$
|
|
280
|
+
declare const actionName$2v = "deldraft";
|
|
271
281
|
/**
|
|
272
282
|
* @interface
|
|
273
283
|
*/
|
|
@@ -275,10 +285,10 @@ type IDeleteDraft = IDeldraft;
|
|
|
275
285
|
|
|
276
286
|
type deleteDraft_IDeleteDraft = IDeleteDraft;
|
|
277
287
|
declare namespace deleteDraft {
|
|
278
|
-
export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$
|
|
288
|
+
export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$2v as actionName, authorizations$2v as authorizations };
|
|
279
289
|
}
|
|
280
290
|
|
|
281
|
-
declare const authorizations$
|
|
291
|
+
declare const authorizations$2u: readonly [{
|
|
282
292
|
readonly permissions: readonly ["active"];
|
|
283
293
|
readonly actor: {
|
|
284
294
|
readonly production: "eosio";
|
|
@@ -288,7 +298,7 @@ declare const authorizations$2l: readonly [{
|
|
|
288
298
|
/**
|
|
289
299
|
* Имя действия
|
|
290
300
|
*/
|
|
291
|
-
declare const actionName$
|
|
301
|
+
declare const actionName$2u = "createtrans";
|
|
292
302
|
/**
|
|
293
303
|
* @interface
|
|
294
304
|
*/
|
|
@@ -296,10 +306,10 @@ type ICreateTranslation = ICreatetrans;
|
|
|
296
306
|
|
|
297
307
|
type createTranslation_ICreateTranslation = ICreateTranslation;
|
|
298
308
|
declare namespace createTranslation {
|
|
299
|
-
export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$
|
|
309
|
+
export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$2u as actionName, authorizations$2u as authorizations };
|
|
300
310
|
}
|
|
301
311
|
|
|
302
|
-
declare const authorizations$
|
|
312
|
+
declare const authorizations$2t: readonly [{
|
|
303
313
|
readonly permissions: readonly ["active"];
|
|
304
314
|
readonly actor: {
|
|
305
315
|
readonly production: "eosio";
|
|
@@ -309,7 +319,7 @@ declare const authorizations$2k: readonly [{
|
|
|
309
319
|
/**
|
|
310
320
|
* Имя действия
|
|
311
321
|
*/
|
|
312
|
-
declare const actionName$
|
|
322
|
+
declare const actionName$2t = "edittrans";
|
|
313
323
|
/**
|
|
314
324
|
* @interface
|
|
315
325
|
*/
|
|
@@ -317,10 +327,10 @@ type IEditTranslation = IEdittrans;
|
|
|
317
327
|
|
|
318
328
|
type editTranslation_IEditTranslation = IEditTranslation;
|
|
319
329
|
declare namespace editTranslation {
|
|
320
|
-
export { type editTranslation_IEditTranslation as IEditTranslation, actionName$
|
|
330
|
+
export { type editTranslation_IEditTranslation as IEditTranslation, actionName$2t as actionName, authorizations$2t as authorizations };
|
|
321
331
|
}
|
|
322
332
|
|
|
323
|
-
declare const authorizations$
|
|
333
|
+
declare const authorizations$2s: readonly [{
|
|
324
334
|
readonly permissions: readonly ["active"];
|
|
325
335
|
readonly actor: {
|
|
326
336
|
readonly production: "draft";
|
|
@@ -330,7 +340,7 @@ declare const authorizations$2j: readonly [{
|
|
|
330
340
|
/**
|
|
331
341
|
* Имя действия
|
|
332
342
|
*/
|
|
333
|
-
declare const actionName$
|
|
343
|
+
declare const actionName$2s = "newid";
|
|
334
344
|
/**
|
|
335
345
|
* @interface
|
|
336
346
|
* Действие вызывается контрактом в процессе исполнения для возврата идентификатора черновика.
|
|
@@ -339,22 +349,22 @@ type INewId = INewid$1;
|
|
|
339
349
|
|
|
340
350
|
type newId_INewId = INewId;
|
|
341
351
|
declare namespace newId {
|
|
342
|
-
export { type newId_INewId as INewId, actionName$
|
|
352
|
+
export { type newId_INewId as INewId, actionName$2s as actionName, authorizations$2s as authorizations };
|
|
343
353
|
}
|
|
344
354
|
|
|
345
|
-
declare const index$
|
|
346
|
-
declare namespace index$
|
|
347
|
-
export { createDraft as CreateDraft, createTranslation as CreateTranslation, deleteDraft as DeleteDraft, editDraft as EditDraft, editTranslation as EditTranslation, index$
|
|
355
|
+
declare const index$V_newId: typeof newId;
|
|
356
|
+
declare namespace index$V {
|
|
357
|
+
export { createDraft as CreateDraft, createTranslation as CreateTranslation, deleteDraft as DeleteDraft, editDraft as EditDraft, editTranslation as EditTranslation, index$V_newId as newId };
|
|
348
358
|
}
|
|
349
359
|
|
|
350
360
|
/**
|
|
351
361
|
* Имя таблицы
|
|
352
362
|
*/
|
|
353
|
-
declare const tableName$
|
|
363
|
+
declare const tableName$I = "drafts";
|
|
354
364
|
/**
|
|
355
365
|
* Таблица хранится в {@link Actors._contract | области памяти контракта}.
|
|
356
366
|
*/
|
|
357
|
-
declare const scope$
|
|
367
|
+
declare const scope$I = "_contract";
|
|
358
368
|
/**
|
|
359
369
|
* @interface
|
|
360
370
|
* Таблица содержит переводы черновиков документов.
|
|
@@ -363,39 +373,234 @@ type IDraft = IOnedraft;
|
|
|
363
373
|
|
|
364
374
|
type drafts_IDraft = IDraft;
|
|
365
375
|
declare namespace drafts {
|
|
366
|
-
export { type drafts_IDraft as IDraft, scope$
|
|
376
|
+
export { type drafts_IDraft as IDraft, scope$I as scope, tableName$I as tableName };
|
|
367
377
|
}
|
|
368
378
|
|
|
369
379
|
/**
|
|
370
380
|
* Имя таблицы
|
|
371
381
|
*/
|
|
372
|
-
declare const tableName$
|
|
382
|
+
declare const tableName$H = "translations";
|
|
373
383
|
/**
|
|
374
384
|
* Область хранения в памяти
|
|
375
385
|
*/
|
|
376
|
-
declare const scope$
|
|
386
|
+
declare const scope$H = "_contract";
|
|
377
387
|
/**
|
|
378
388
|
* @interface
|
|
379
389
|
* Таблица содержит переводы черновиков документов.
|
|
380
390
|
*/
|
|
381
391
|
type ITranslation = ITranslation$1;
|
|
382
392
|
|
|
383
|
-
type translations$
|
|
384
|
-
declare namespace translations$
|
|
385
|
-
export { type translations$
|
|
393
|
+
type translations$a_ITranslation = ITranslation;
|
|
394
|
+
declare namespace translations$a {
|
|
395
|
+
export { type translations$a_ITranslation as ITranslation, scope$H as scope, tableName$H as tableName };
|
|
386
396
|
}
|
|
387
397
|
|
|
388
|
-
declare namespace index$
|
|
389
|
-
export { drafts as Drafts, translations$
|
|
398
|
+
declare namespace index$U {
|
|
399
|
+
export { drafts as Drafts, translations$a as Translations };
|
|
390
400
|
}
|
|
391
401
|
|
|
392
|
-
declare const contractName$
|
|
402
|
+
declare const contractName$a: {
|
|
393
403
|
readonly production: "draft";
|
|
394
404
|
readonly testnet: "drafttest222";
|
|
395
405
|
};
|
|
396
406
|
|
|
397
|
-
declare namespace index$
|
|
398
|
-
export { index$
|
|
407
|
+
declare namespace index$T {
|
|
408
|
+
export { index$V as Actions, draft as Interfaces, index$U as Tables, contractName$a as contractName };
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
type IName$9 = string;
|
|
412
|
+
type IUint64$5 = number | string;
|
|
413
|
+
interface IAddtrusted {
|
|
414
|
+
coopname: IName$9;
|
|
415
|
+
braname: IName$9;
|
|
416
|
+
trusted: IName$9;
|
|
417
|
+
}
|
|
418
|
+
interface IBranchstat {
|
|
419
|
+
coopname: IName$9;
|
|
420
|
+
count: IUint64$5;
|
|
421
|
+
}
|
|
422
|
+
interface ICoobranch {
|
|
423
|
+
braname: IName$9;
|
|
424
|
+
trustee: IName$9;
|
|
425
|
+
trusted: IName$9[];
|
|
426
|
+
}
|
|
427
|
+
interface ICreatebranch$1 {
|
|
428
|
+
coopname: IName$9;
|
|
429
|
+
braname: IName$9;
|
|
430
|
+
trustee: IName$9;
|
|
431
|
+
}
|
|
432
|
+
interface IDeletebranch {
|
|
433
|
+
coopname: IName$9;
|
|
434
|
+
braname: IName$9;
|
|
435
|
+
}
|
|
436
|
+
interface IDeltrusted {
|
|
437
|
+
coopname: IName$9;
|
|
438
|
+
braname: IName$9;
|
|
439
|
+
trusted: IName$9;
|
|
440
|
+
}
|
|
441
|
+
interface IEditbranch {
|
|
442
|
+
coopname: IName$9;
|
|
443
|
+
braname: IName$9;
|
|
444
|
+
trustee: IName$9;
|
|
445
|
+
}
|
|
446
|
+
interface IInit$8 {
|
|
447
|
+
}
|
|
448
|
+
interface IMigrate$4 {
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
type branch_IAddtrusted = IAddtrusted;
|
|
452
|
+
type branch_IBranchstat = IBranchstat;
|
|
453
|
+
type branch_ICoobranch = ICoobranch;
|
|
454
|
+
type branch_IDeletebranch = IDeletebranch;
|
|
455
|
+
type branch_IDeltrusted = IDeltrusted;
|
|
456
|
+
type branch_IEditbranch = IEditbranch;
|
|
457
|
+
declare namespace branch {
|
|
458
|
+
export type { branch_IAddtrusted as IAddtrusted, branch_IBranchstat as IBranchstat, branch_ICoobranch as ICoobranch, ICreatebranch$1 as ICreatebranch, branch_IDeletebranch as IDeletebranch, branch_IDeltrusted as IDeltrusted, branch_IEditbranch as IEditbranch, IInit$8 as IInit, IMigrate$4 as IMigrate, IName$9 as IName, IUint64$5 as IUint64 };
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
declare const authorizations$2r: readonly [{
|
|
462
|
+
readonly permissions: readonly ["active"];
|
|
463
|
+
readonly actor: "_trustee";
|
|
464
|
+
}];
|
|
465
|
+
/**
|
|
466
|
+
* Имя действия
|
|
467
|
+
*/
|
|
468
|
+
declare const actionName$2r = "addtrusted";
|
|
469
|
+
/**
|
|
470
|
+
* @interface
|
|
471
|
+
*/
|
|
472
|
+
type IAddTrusted = IAddtrusted;
|
|
473
|
+
|
|
474
|
+
type addTrusted_IAddTrusted = IAddTrusted;
|
|
475
|
+
declare namespace addTrusted {
|
|
476
|
+
export { type addTrusted_IAddTrusted as IAddTrusted, actionName$2r as actionName, authorizations$2r as authorizations };
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
declare const authorizations$2q: readonly [{
|
|
480
|
+
readonly permissions: readonly ["active"];
|
|
481
|
+
readonly actor: "_chairman";
|
|
482
|
+
}];
|
|
483
|
+
/**
|
|
484
|
+
* Имя действия
|
|
485
|
+
*/
|
|
486
|
+
declare const actionName$2q = "createbranch";
|
|
487
|
+
/**
|
|
488
|
+
* @interface
|
|
489
|
+
*/
|
|
490
|
+
type ICreateBranch = ICreatebranch$1;
|
|
491
|
+
|
|
492
|
+
type createBranch_ICreateBranch = ICreateBranch;
|
|
493
|
+
declare namespace createBranch {
|
|
494
|
+
export { type createBranch_ICreateBranch as ICreateBranch, actionName$2q as actionName, authorizations$2q as authorizations };
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
declare const authorizations$2p: readonly [{
|
|
498
|
+
readonly permissions: readonly ["active"];
|
|
499
|
+
readonly actor: "_chairman";
|
|
500
|
+
}];
|
|
501
|
+
/**
|
|
502
|
+
* Имя действия
|
|
503
|
+
*/
|
|
504
|
+
declare const actionName$2p = "deletebranch";
|
|
505
|
+
/**
|
|
506
|
+
* @interface
|
|
507
|
+
*/
|
|
508
|
+
type IDeleteBranch = IDeletebranch;
|
|
509
|
+
|
|
510
|
+
type deleteBranch_IDeleteBranch = IDeleteBranch;
|
|
511
|
+
declare namespace deleteBranch {
|
|
512
|
+
export { type deleteBranch_IDeleteBranch as IDeleteBranch, actionName$2p as actionName, authorizations$2p as authorizations };
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
declare const authorizations$2o: readonly [{
|
|
516
|
+
readonly permissions: readonly ["active"];
|
|
517
|
+
readonly actor: "_trustee";
|
|
518
|
+
}];
|
|
519
|
+
/**
|
|
520
|
+
* Имя действия
|
|
521
|
+
*/
|
|
522
|
+
declare const actionName$2o = "deltrusted";
|
|
523
|
+
/**
|
|
524
|
+
* @interface
|
|
525
|
+
*/
|
|
526
|
+
type IDeleteTrusted = IDeltrusted;
|
|
527
|
+
|
|
528
|
+
type deleteTrusted_IDeleteTrusted = IDeleteTrusted;
|
|
529
|
+
declare namespace deleteTrusted {
|
|
530
|
+
export { type deleteTrusted_IDeleteTrusted as IDeleteTrusted, actionName$2o as actionName, authorizations$2o as authorizations };
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
declare const authorizations$2n: readonly [{
|
|
534
|
+
readonly permissions: readonly ["active"];
|
|
535
|
+
readonly actor: "_chairman";
|
|
536
|
+
}];
|
|
537
|
+
/**
|
|
538
|
+
* Имя действия
|
|
539
|
+
*/
|
|
540
|
+
declare const actionName$2n = "editbranch";
|
|
541
|
+
/**
|
|
542
|
+
* @interface
|
|
543
|
+
*/
|
|
544
|
+
type IEditBranch = IEditbranch;
|
|
545
|
+
|
|
546
|
+
type editBranch_IEditBranch = IEditBranch;
|
|
547
|
+
declare namespace editBranch {
|
|
548
|
+
export { type editBranch_IEditBranch as IEditBranch, actionName$2n as actionName, authorizations$2n as authorizations };
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
declare namespace index$S {
|
|
552
|
+
export { addTrusted as AddTrusted, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrusted as DeleteTrusted, editBranch as EditBranch };
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Имя таблицы
|
|
557
|
+
*/
|
|
558
|
+
declare const tableName$G = "branches";
|
|
559
|
+
/**
|
|
560
|
+
* Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
|
|
561
|
+
*/
|
|
562
|
+
declare const scope$G = "_coopname";
|
|
563
|
+
/**
|
|
564
|
+
* @interface
|
|
565
|
+
* Таблица содержит переводы черновиков документов.
|
|
566
|
+
*/
|
|
567
|
+
type IBranch = ICoobranch;
|
|
568
|
+
|
|
569
|
+
type branches_IBranch = IBranch;
|
|
570
|
+
declare namespace branches {
|
|
571
|
+
export { type branches_IBranch as IBranch, scope$G as scope, tableName$G as tableName };
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Имя таблицы
|
|
576
|
+
*/
|
|
577
|
+
declare const tableName$F = "branchstat";
|
|
578
|
+
/**
|
|
579
|
+
* Таблица хранится в {@link Actors._contract | области памяти контракта}.
|
|
580
|
+
*/
|
|
581
|
+
declare const scope$F = "_contract";
|
|
582
|
+
/**
|
|
583
|
+
* @interface
|
|
584
|
+
* Таблица содержит переводы черновиков документов.
|
|
585
|
+
*/
|
|
586
|
+
type IBranchStat = IBranchstat;
|
|
587
|
+
|
|
588
|
+
type branchStat_IBranchStat = IBranchStat;
|
|
589
|
+
declare namespace branchStat {
|
|
590
|
+
export { type branchStat_IBranchStat as IBranchStat, scope$F as scope, tableName$F as tableName };
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
declare namespace index$R {
|
|
594
|
+
export { branchStat as BranchStat, branches as Branches };
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
declare const contractName$9: {
|
|
598
|
+
readonly production: "branch";
|
|
599
|
+
readonly testnet: "branch";
|
|
600
|
+
};
|
|
601
|
+
|
|
602
|
+
declare namespace index$Q {
|
|
603
|
+
export { index$S as Actions, branch as Interfaces, index$R as Tables, contractName$9 as contractName };
|
|
399
604
|
}
|
|
400
605
|
|
|
401
606
|
type IAsset$6 = string;
|
|
@@ -404,20 +609,20 @@ type IChecksum256$6 = string;
|
|
|
404
609
|
type IPublicKey$5 = string;
|
|
405
610
|
type ISignature$4 = string;
|
|
406
611
|
type ITimePointSec$7 = string;
|
|
407
|
-
type IUint64$
|
|
612
|
+
type IUint64$4 = number | string;
|
|
408
613
|
interface IAccfund {
|
|
409
|
-
id: IUint64$
|
|
614
|
+
id: IUint64$4;
|
|
410
615
|
coopname: IName$8;
|
|
411
616
|
contract: IName$8;
|
|
412
617
|
name: string;
|
|
413
618
|
description: string;
|
|
414
|
-
percent: IUint64$
|
|
619
|
+
percent: IUint64$4;
|
|
415
620
|
available: IAsset$6;
|
|
416
621
|
withdrawed: IAsset$6;
|
|
417
622
|
}
|
|
418
623
|
interface IAddaccum {
|
|
419
624
|
coopname: IName$8;
|
|
420
|
-
fund_id: IUint64$
|
|
625
|
+
fund_id: IUint64$4;
|
|
421
626
|
quantity: IAsset$6;
|
|
422
627
|
}
|
|
423
628
|
interface IAddcirculate {
|
|
@@ -426,7 +631,7 @@ interface IAddcirculate {
|
|
|
426
631
|
}
|
|
427
632
|
interface IAddexpense {
|
|
428
633
|
coopname: IName$8;
|
|
429
|
-
fund_id: IUint64$
|
|
634
|
+
fund_id: IUint64$4;
|
|
430
635
|
quantity: IAsset$6;
|
|
431
636
|
}
|
|
432
637
|
interface IAddinitial {
|
|
@@ -436,15 +641,15 @@ interface IAddinitial {
|
|
|
436
641
|
interface IAuthorize$5 {
|
|
437
642
|
coopname: IName$8;
|
|
438
643
|
type: IName$8;
|
|
439
|
-
withdraw_id: IUint64$
|
|
644
|
+
withdraw_id: IUint64$4;
|
|
440
645
|
}
|
|
441
646
|
interface IComplete$1 {
|
|
442
647
|
coopname: IName$8;
|
|
443
648
|
username: IName$8;
|
|
444
|
-
withdraw_id: IUint64$
|
|
649
|
+
withdraw_id: IUint64$4;
|
|
445
650
|
}
|
|
446
651
|
interface ICoopwallet {
|
|
447
|
-
id: IUint64$
|
|
652
|
+
id: IUint64$4;
|
|
448
653
|
coopname: IName$8;
|
|
449
654
|
circulating_account: ISimpleWallet;
|
|
450
655
|
initial_account: ISimpleWallet;
|
|
@@ -456,7 +661,7 @@ interface ICounts$3 extends ICountsBase$3 {
|
|
|
456
661
|
interface ICountsBase$3 {
|
|
457
662
|
key: IName$8;
|
|
458
663
|
secondary_key: IName$8;
|
|
459
|
-
value: IUint64$
|
|
664
|
+
value: IUint64$4;
|
|
460
665
|
}
|
|
461
666
|
interface ICreatefund {
|
|
462
667
|
coopname: IName$8;
|
|
@@ -465,13 +670,13 @@ interface ICreatefund {
|
|
|
465
670
|
contract: IName$8;
|
|
466
671
|
name: string;
|
|
467
672
|
description: string;
|
|
468
|
-
percent: IUint64$
|
|
673
|
+
percent: IUint64$4;
|
|
469
674
|
}
|
|
470
675
|
interface IDelfund {
|
|
471
676
|
coopname: IName$8;
|
|
472
677
|
username: IName$8;
|
|
473
678
|
type: IName$8;
|
|
474
|
-
fund_id: IUint64$
|
|
679
|
+
fund_id: IUint64$4;
|
|
475
680
|
}
|
|
476
681
|
interface IDocument$4 {
|
|
477
682
|
hash: IChecksum256$6;
|
|
@@ -483,14 +688,14 @@ interface IEditfund {
|
|
|
483
688
|
coopname: IName$8;
|
|
484
689
|
username: IName$8;
|
|
485
690
|
type: IName$8;
|
|
486
|
-
fund_id: IUint64$
|
|
691
|
+
fund_id: IUint64$4;
|
|
487
692
|
contract: IName$8;
|
|
488
693
|
name: string;
|
|
489
694
|
description: string;
|
|
490
|
-
percent: IUint64$
|
|
695
|
+
percent: IUint64$4;
|
|
491
696
|
}
|
|
492
697
|
interface IExpfund {
|
|
493
|
-
id: IUint64$
|
|
698
|
+
id: IUint64$4;
|
|
494
699
|
coopname: IName$8;
|
|
495
700
|
contract: IName$8;
|
|
496
701
|
name: string;
|
|
@@ -498,7 +703,7 @@ interface IExpfund {
|
|
|
498
703
|
expended: IAsset$6;
|
|
499
704
|
}
|
|
500
705
|
interface IFundwallet {
|
|
501
|
-
id: IUint64$
|
|
706
|
+
id: IUint64$4;
|
|
502
707
|
coopname: IName$8;
|
|
503
708
|
circulating: IAsset$6;
|
|
504
709
|
membership: IAsset$6;
|
|
@@ -511,18 +716,18 @@ interface IFundwithdraw$1 {
|
|
|
511
716
|
coopname: IName$8;
|
|
512
717
|
username: IName$8;
|
|
513
718
|
type: IName$8;
|
|
514
|
-
fund_id: IUint64$
|
|
719
|
+
fund_id: IUint64$4;
|
|
515
720
|
document: IDocument$4;
|
|
516
721
|
quantity: IAsset$6;
|
|
517
722
|
bank_data_id: string;
|
|
518
723
|
}
|
|
519
724
|
interface IFwithdraw {
|
|
520
|
-
id: IUint64$
|
|
725
|
+
id: IUint64$4;
|
|
521
726
|
coopname: IName$8;
|
|
522
727
|
username: IName$8;
|
|
523
728
|
status: IName$8;
|
|
524
729
|
type: IName$8;
|
|
525
|
-
fund_id: IUint64$
|
|
730
|
+
fund_id: IUint64$4;
|
|
526
731
|
quantity: IAsset$6;
|
|
527
732
|
document: IDocument$4;
|
|
528
733
|
bank_data_id: string;
|
|
@@ -537,12 +742,12 @@ interface IMigrate$3 {
|
|
|
537
742
|
interface INewfund$1 {
|
|
538
743
|
coopname: IName$8;
|
|
539
744
|
type: IName$8;
|
|
540
|
-
id: IUint64$
|
|
745
|
+
id: IUint64$4;
|
|
541
746
|
}
|
|
542
747
|
interface INewwithdraw$1 {
|
|
543
748
|
coopname: IName$8;
|
|
544
749
|
type: IName$8;
|
|
545
|
-
id: IUint64$
|
|
750
|
+
id: IUint64$4;
|
|
546
751
|
}
|
|
547
752
|
interface ISimpleWallet {
|
|
548
753
|
available: IAsset$6;
|
|
@@ -554,7 +759,7 @@ interface ISpreadamount {
|
|
|
554
759
|
}
|
|
555
760
|
interface ISubaccum {
|
|
556
761
|
coopname: IName$8;
|
|
557
|
-
fund_id: IUint64$
|
|
762
|
+
fund_id: IUint64$4;
|
|
558
763
|
quantity: IAsset$6;
|
|
559
764
|
}
|
|
560
765
|
interface ISubcirculate {
|
|
@@ -579,10 +784,10 @@ type fund_ISpreadamount = ISpreadamount;
|
|
|
579
784
|
type fund_ISubaccum = ISubaccum;
|
|
580
785
|
type fund_ISubcirculate = ISubcirculate;
|
|
581
786
|
declare namespace fund {
|
|
582
|
-
export type { fund_IAccfund as IAccfund, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, fund_IAddinitial as IAddinitial, IAsset$6 as IAsset, IAuthorize$5 as IAuthorize, IChecksum256$6 as IChecksum256, IComplete$1 as IComplete, fund_ICoopwallet as ICoopwallet, ICounts$3 as ICounts, ICountsBase$3 as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, IDocument$4 as IDocument, fund_IEditfund as IEditfund, fund_IExpfund as IExpfund, fund_IFundwallet as IFundwallet, IFundwithdraw$1 as IFundwithdraw, fund_IFwithdraw as IFwithdraw, IInit$7 as IInit, IMigrate$3 as IMigrate, IName$8 as IName, INewfund$1 as INewfund, INewwithdraw$1 as INewwithdraw, IPublicKey$5 as IPublicKey, ISignature$4 as ISignature, fund_ISimpleWallet as ISimpleWallet, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$7 as ITimePointSec, IUint64$
|
|
787
|
+
export type { fund_IAccfund as IAccfund, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, fund_IAddinitial as IAddinitial, IAsset$6 as IAsset, IAuthorize$5 as IAuthorize, IChecksum256$6 as IChecksum256, IComplete$1 as IComplete, fund_ICoopwallet as ICoopwallet, ICounts$3 as ICounts, ICountsBase$3 as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, IDocument$4 as IDocument, fund_IEditfund as IEditfund, fund_IExpfund as IExpfund, fund_IFundwallet as IFundwallet, IFundwithdraw$1 as IFundwithdraw, fund_IFwithdraw as IFwithdraw, IInit$7 as IInit, IMigrate$3 as IMigrate, IName$8 as IName, INewfund$1 as INewfund, INewwithdraw$1 as INewwithdraw, IPublicKey$5 as IPublicKey, ISignature$4 as ISignature, fund_ISimpleWallet as ISimpleWallet, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$7 as ITimePointSec, IUint64$4 as IUint64 };
|
|
583
788
|
}
|
|
584
789
|
|
|
585
|
-
declare const authorizations$
|
|
790
|
+
declare const authorizations$2m: readonly [{
|
|
586
791
|
readonly permissions: readonly ["active"];
|
|
587
792
|
readonly actor: {
|
|
588
793
|
readonly production: "fund";
|
|
@@ -592,7 +797,7 @@ declare const authorizations$2i: readonly [{
|
|
|
592
797
|
/**
|
|
593
798
|
* Имя действия
|
|
594
799
|
*/
|
|
595
|
-
declare const actionName$
|
|
800
|
+
declare const actionName$2m = "addaccum";
|
|
596
801
|
/**
|
|
597
802
|
* @interface
|
|
598
803
|
*/
|
|
@@ -600,10 +805,10 @@ type IAddAccumulation = IAddaccum;
|
|
|
600
805
|
|
|
601
806
|
type addAccumulation_IAddAccumulation = IAddAccumulation;
|
|
602
807
|
declare namespace addAccumulation {
|
|
603
|
-
export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$
|
|
808
|
+
export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$2m as actionName, authorizations$2m as authorizations };
|
|
604
809
|
}
|
|
605
810
|
|
|
606
|
-
declare const authorizations$
|
|
811
|
+
declare const authorizations$2l: readonly [{
|
|
607
812
|
readonly permissions: readonly ["active"];
|
|
608
813
|
readonly actor: {
|
|
609
814
|
readonly production: "fund";
|
|
@@ -613,7 +818,7 @@ declare const authorizations$2h: readonly [{
|
|
|
613
818
|
/**
|
|
614
819
|
* Имя действия
|
|
615
820
|
*/
|
|
616
|
-
declare const actionName$
|
|
821
|
+
declare const actionName$2l = "subaccum";
|
|
617
822
|
/**
|
|
618
823
|
* @interface
|
|
619
824
|
*/
|
|
@@ -621,10 +826,10 @@ type ISubAccumulation = ISubaccum;
|
|
|
621
826
|
|
|
622
827
|
type subAccumulation_ISubAccumulation = ISubAccumulation;
|
|
623
828
|
declare namespace subAccumulation {
|
|
624
|
-
export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$
|
|
829
|
+
export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$2l as actionName, authorizations$2l as authorizations };
|
|
625
830
|
}
|
|
626
831
|
|
|
627
|
-
declare const authorizations$
|
|
832
|
+
declare const authorizations$2k: readonly [{
|
|
628
833
|
readonly permissions: readonly ["active"];
|
|
629
834
|
readonly actor: {
|
|
630
835
|
readonly production: "gateway";
|
|
@@ -634,7 +839,7 @@ declare const authorizations$2g: readonly [{
|
|
|
634
839
|
/**
|
|
635
840
|
* Имя действия
|
|
636
841
|
*/
|
|
637
|
-
declare const actionName$
|
|
842
|
+
declare const actionName$2k = "addcirculate";
|
|
638
843
|
/**
|
|
639
844
|
* @interface
|
|
640
845
|
*/
|
|
@@ -642,10 +847,10 @@ type IAddCirculation = IAddcirculate;
|
|
|
642
847
|
|
|
643
848
|
type addCirculation_IAddCirculation = IAddCirculation;
|
|
644
849
|
declare namespace addCirculation {
|
|
645
|
-
export { type addCirculation_IAddCirculation as IAddCirculation, actionName$
|
|
850
|
+
export { type addCirculation_IAddCirculation as IAddCirculation, actionName$2k as actionName, authorizations$2k as authorizations };
|
|
646
851
|
}
|
|
647
852
|
|
|
648
|
-
declare const authorizations$
|
|
853
|
+
declare const authorizations$2j: readonly [{
|
|
649
854
|
readonly permissions: readonly ["active"];
|
|
650
855
|
readonly actor: {
|
|
651
856
|
readonly production: "fund";
|
|
@@ -655,7 +860,7 @@ declare const authorizations$2f: readonly [{
|
|
|
655
860
|
/**
|
|
656
861
|
* Имя действия
|
|
657
862
|
*/
|
|
658
|
-
declare const actionName$
|
|
863
|
+
declare const actionName$2j = "addexpense";
|
|
659
864
|
/**
|
|
660
865
|
* @interface
|
|
661
866
|
*/
|
|
@@ -663,10 +868,10 @@ type IAddExpense = IAddexpense;
|
|
|
663
868
|
|
|
664
869
|
type addExpense_IAddExpense = IAddExpense;
|
|
665
870
|
declare namespace addExpense {
|
|
666
|
-
export { type addExpense_IAddExpense as IAddExpense, actionName$
|
|
871
|
+
export { type addExpense_IAddExpense as IAddExpense, actionName$2j as actionName, authorizations$2j as authorizations };
|
|
667
872
|
}
|
|
668
873
|
|
|
669
|
-
declare const authorizations$
|
|
874
|
+
declare const authorizations$2i: readonly [{
|
|
670
875
|
readonly permissions: readonly ["active"];
|
|
671
876
|
readonly actor: {
|
|
672
877
|
readonly production: "soviet";
|
|
@@ -676,17 +881,17 @@ declare const authorizations$2e: readonly [{
|
|
|
676
881
|
/**
|
|
677
882
|
* Имя действия
|
|
678
883
|
*/
|
|
679
|
-
declare const actionName$
|
|
884
|
+
declare const actionName$2i = "authorize";
|
|
680
885
|
/**
|
|
681
886
|
* @interface
|
|
682
887
|
*/
|
|
683
888
|
type IAuthorize$4 = IAuthorize$5;
|
|
684
889
|
|
|
685
890
|
declare namespace authorizeWithdraw {
|
|
686
|
-
export { type IAuthorize$4 as IAuthorize, actionName$
|
|
891
|
+
export { type IAuthorize$4 as IAuthorize, actionName$2i as actionName, authorizations$2i as authorizations };
|
|
687
892
|
}
|
|
688
893
|
|
|
689
|
-
declare const authorizations$
|
|
894
|
+
declare const authorizations$2h: readonly [{
|
|
690
895
|
readonly permissions: readonly ["active", {
|
|
691
896
|
readonly contract: "_contract";
|
|
692
897
|
readonly action: "actionName";
|
|
@@ -696,7 +901,7 @@ declare const authorizations$2d: readonly [{
|
|
|
696
901
|
/**
|
|
697
902
|
* Имя действия
|
|
698
903
|
*/
|
|
699
|
-
declare const actionName$
|
|
904
|
+
declare const actionName$2h = "complete";
|
|
700
905
|
/**
|
|
701
906
|
* @interface
|
|
702
907
|
*/
|
|
@@ -704,10 +909,10 @@ type ICompleteWithdraw = IComplete$1;
|
|
|
704
909
|
|
|
705
910
|
type completeWithdraw$1_ICompleteWithdraw = ICompleteWithdraw;
|
|
706
911
|
declare namespace completeWithdraw$1 {
|
|
707
|
-
export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$
|
|
912
|
+
export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$2h as actionName, authorizations$2h as authorizations };
|
|
708
913
|
}
|
|
709
914
|
|
|
710
|
-
declare const authorizations$
|
|
915
|
+
declare const authorizations$2g: readonly [{
|
|
711
916
|
readonly permissions: readonly ["active"];
|
|
712
917
|
readonly actor: {
|
|
713
918
|
readonly production: "fund";
|
|
@@ -717,7 +922,7 @@ declare const authorizations$2c: readonly [{
|
|
|
717
922
|
/**
|
|
718
923
|
* Имя действия
|
|
719
924
|
*/
|
|
720
|
-
declare const actionName$
|
|
925
|
+
declare const actionName$2g = "newfund";
|
|
721
926
|
/**
|
|
722
927
|
* @interface
|
|
723
928
|
*/
|
|
@@ -725,17 +930,17 @@ type INewfund = INewfund$1;
|
|
|
725
930
|
|
|
726
931
|
type newFund_INewfund = INewfund;
|
|
727
932
|
declare namespace newFund {
|
|
728
|
-
export { type newFund_INewfund as INewfund, actionName$
|
|
933
|
+
export { type newFund_INewfund as INewfund, actionName$2g as actionName, authorizations$2g as authorizations };
|
|
729
934
|
}
|
|
730
935
|
|
|
731
|
-
declare const authorizations$
|
|
936
|
+
declare const authorizations$2f: readonly [{
|
|
732
937
|
readonly permissions: readonly ["active"];
|
|
733
938
|
readonly actor: "_chairman";
|
|
734
939
|
}];
|
|
735
940
|
/**
|
|
736
941
|
* Имя действия
|
|
737
942
|
*/
|
|
738
|
-
declare const actionName$
|
|
943
|
+
declare const actionName$2f = "createfund";
|
|
739
944
|
/**
|
|
740
945
|
* @interface
|
|
741
946
|
*/
|
|
@@ -743,17 +948,17 @@ type ICreateFund = ICreatefund;
|
|
|
743
948
|
|
|
744
949
|
type createFund_ICreateFund = ICreateFund;
|
|
745
950
|
declare namespace createFund {
|
|
746
|
-
export { type createFund_ICreateFund as ICreateFund, actionName$
|
|
951
|
+
export { type createFund_ICreateFund as ICreateFund, actionName$2f as actionName, authorizations$2f as authorizations };
|
|
747
952
|
}
|
|
748
953
|
|
|
749
|
-
declare const authorizations$
|
|
954
|
+
declare const authorizations$2e: readonly [{
|
|
750
955
|
readonly permissions: readonly ["active"];
|
|
751
956
|
readonly actor: "_chairman";
|
|
752
957
|
}];
|
|
753
958
|
/**
|
|
754
959
|
* Имя действия
|
|
755
960
|
*/
|
|
756
|
-
declare const actionName$
|
|
961
|
+
declare const actionName$2e = "delfund";
|
|
757
962
|
/**
|
|
758
963
|
* @interface
|
|
759
964
|
*/
|
|
@@ -761,17 +966,17 @@ type IDeleteFund = IDelfund;
|
|
|
761
966
|
|
|
762
967
|
type deleteFund_IDeleteFund = IDeleteFund;
|
|
763
968
|
declare namespace deleteFund {
|
|
764
|
-
export { type deleteFund_IDeleteFund as IDeleteFund, actionName$
|
|
969
|
+
export { type deleteFund_IDeleteFund as IDeleteFund, actionName$2e as actionName, authorizations$2e as authorizations };
|
|
765
970
|
}
|
|
766
971
|
|
|
767
|
-
declare const authorizations$
|
|
972
|
+
declare const authorizations$2d: readonly [{
|
|
768
973
|
readonly permissions: readonly ["active"];
|
|
769
974
|
readonly actor: "_chairman";
|
|
770
975
|
}];
|
|
771
976
|
/**
|
|
772
977
|
* Имя действия
|
|
773
978
|
*/
|
|
774
|
-
declare const actionName$
|
|
979
|
+
declare const actionName$2d = "editfund";
|
|
775
980
|
/**
|
|
776
981
|
* @interface
|
|
777
982
|
*/
|
|
@@ -779,7 +984,7 @@ type IEditFund = IEditfund;
|
|
|
779
984
|
|
|
780
985
|
type editFund_IEditFund = IEditFund;
|
|
781
986
|
declare namespace editFund {
|
|
782
|
-
export { type editFund_IEditFund as IEditFund, actionName$
|
|
987
|
+
export { type editFund_IEditFund as IEditFund, actionName$2d as actionName, authorizations$2d as authorizations };
|
|
783
988
|
}
|
|
784
989
|
|
|
785
990
|
/**
|
|
@@ -788,7 +993,7 @@ declare namespace editFund {
|
|
|
788
993
|
* на совершение действия или авторизация любого {@link Actors._contract | контракта},
|
|
789
994
|
* которому было передано управление фондом накопления или списания.
|
|
790
995
|
*/
|
|
791
|
-
declare const authorizations$
|
|
996
|
+
declare const authorizations$2c: readonly [{
|
|
792
997
|
readonly permissions: readonly ["active"];
|
|
793
998
|
readonly actor: "_username";
|
|
794
999
|
}, {
|
|
@@ -804,7 +1009,7 @@ declare const authorizations$28: readonly [{
|
|
|
804
1009
|
/**
|
|
805
1010
|
* Имя действия
|
|
806
1011
|
*/
|
|
807
|
-
declare const actionName$
|
|
1012
|
+
declare const actionName$2c = "fundwithdraw";
|
|
808
1013
|
/**
|
|
809
1014
|
* @interface
|
|
810
1015
|
*/
|
|
@@ -812,10 +1017,10 @@ type ICreateWithdraw = IFundwithdraw$1;
|
|
|
812
1017
|
|
|
813
1018
|
type createWithdraw$1_ICreateWithdraw = ICreateWithdraw;
|
|
814
1019
|
declare namespace createWithdraw$1 {
|
|
815
|
-
export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$
|
|
1020
|
+
export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$2c as actionName, authorizations$2c as authorizations };
|
|
816
1021
|
}
|
|
817
1022
|
|
|
818
|
-
declare const authorizations$
|
|
1023
|
+
declare const authorizations$2b: readonly [{
|
|
819
1024
|
readonly permissions: readonly ["active"];
|
|
820
1025
|
readonly actor: {
|
|
821
1026
|
readonly production: "soviet";
|
|
@@ -825,17 +1030,17 @@ declare const authorizations$27: readonly [{
|
|
|
825
1030
|
/**
|
|
826
1031
|
* Имя действия
|
|
827
1032
|
*/
|
|
828
|
-
declare const actionName$
|
|
1033
|
+
declare const actionName$2b = "init";
|
|
829
1034
|
/**
|
|
830
1035
|
* @interface
|
|
831
1036
|
*/
|
|
832
1037
|
type IInit$6 = IInit$7;
|
|
833
1038
|
|
|
834
1039
|
declare namespace init$3 {
|
|
835
|
-
export { type IInit$6 as IInit, actionName$
|
|
1040
|
+
export { type IInit$6 as IInit, actionName$2b as actionName, authorizations$2b as authorizations };
|
|
836
1041
|
}
|
|
837
1042
|
|
|
838
|
-
declare const authorizations$
|
|
1043
|
+
declare const authorizations$2a: readonly [{
|
|
839
1044
|
readonly permissions: readonly ["active"];
|
|
840
1045
|
readonly actor: {
|
|
841
1046
|
readonly production: "fund";
|
|
@@ -845,7 +1050,7 @@ declare const authorizations$26: readonly [{
|
|
|
845
1050
|
/**
|
|
846
1051
|
* Имя действия
|
|
847
1052
|
*/
|
|
848
|
-
declare const actionName$
|
|
1053
|
+
declare const actionName$2a = "newwithdraw";
|
|
849
1054
|
/**
|
|
850
1055
|
* @interface
|
|
851
1056
|
*/
|
|
@@ -853,10 +1058,10 @@ type INewWithdraw = INewwithdraw$1;
|
|
|
853
1058
|
|
|
854
1059
|
type newWithdraw_INewWithdraw = INewWithdraw;
|
|
855
1060
|
declare namespace newWithdraw {
|
|
856
|
-
export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$
|
|
1061
|
+
export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$2a as actionName, authorizations$2a as authorizations };
|
|
857
1062
|
}
|
|
858
1063
|
|
|
859
|
-
declare const authorizations$
|
|
1064
|
+
declare const authorizations$29: readonly [{
|
|
860
1065
|
readonly permissions: readonly ["active"];
|
|
861
1066
|
readonly actor: {
|
|
862
1067
|
readonly production: "marketplace";
|
|
@@ -872,7 +1077,7 @@ declare const authorizations$25: readonly [{
|
|
|
872
1077
|
/**
|
|
873
1078
|
* Имя действия
|
|
874
1079
|
*/
|
|
875
|
-
declare const actionName$
|
|
1080
|
+
declare const actionName$29 = "spreadamount";
|
|
876
1081
|
/**
|
|
877
1082
|
* @interface
|
|
878
1083
|
*/
|
|
@@ -880,10 +1085,10 @@ type ISpreadAmount = ISpreadamount;
|
|
|
880
1085
|
|
|
881
1086
|
type spreadAmount_ISpreadAmount = ISpreadAmount;
|
|
882
1087
|
declare namespace spreadAmount {
|
|
883
|
-
export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$
|
|
1088
|
+
export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$29 as actionName, authorizations$29 as authorizations };
|
|
884
1089
|
}
|
|
885
1090
|
|
|
886
|
-
declare const authorizations$
|
|
1091
|
+
declare const authorizations$28: readonly [{
|
|
887
1092
|
readonly permissions: readonly ["active"];
|
|
888
1093
|
readonly actor: {
|
|
889
1094
|
readonly production: "gateway";
|
|
@@ -893,7 +1098,7 @@ declare const authorizations$24: readonly [{
|
|
|
893
1098
|
/**
|
|
894
1099
|
* Имя действия
|
|
895
1100
|
*/
|
|
896
|
-
declare const actionName$
|
|
1101
|
+
declare const actionName$28 = "subcirculate";
|
|
897
1102
|
/**
|
|
898
1103
|
* @interface
|
|
899
1104
|
*/
|
|
@@ -901,7 +1106,7 @@ type ISubCirculation = ISubcirculate;
|
|
|
901
1106
|
|
|
902
1107
|
type subCirculation_ISubCirculation = ISubCirculation;
|
|
903
1108
|
declare namespace subCirculation {
|
|
904
|
-
export { type subCirculation_ISubCirculation as ISubCirculation, actionName$
|
|
1109
|
+
export { type subCirculation_ISubCirculation as ISubCirculation, actionName$28 as actionName, authorizations$28 as authorizations };
|
|
905
1110
|
}
|
|
906
1111
|
|
|
907
1112
|
/**
|
|
@@ -909,7 +1114,7 @@ declare namespace subCirculation {
|
|
|
909
1114
|
* Вызывается контрактом автоматически по ходу выполнения логики для прозрачного добавления фонда накопления.
|
|
910
1115
|
*/
|
|
911
1116
|
|
|
912
|
-
declare namespace index$
|
|
1117
|
+
declare namespace index$P {
|
|
913
1118
|
export { addAccumulation as AddAccumulation, addCirculation as AddCirculation, addExpense as AddExpense, authorizeWithdraw as AuthorizeWithdraw, completeWithdraw$1 as CompleteWithdraw, createFund as CreateFund, createWithdraw$1 as CreateWithdraw, deleteFund as DeleteFund, editFund as EditFund, init$3 as Init, newFund as NewFund, newWithdraw as NewWithdraw, spreadAmount as SpreadAmount, subAccumulation as SubAccumulation, subCirculation as SubCirculation };
|
|
914
1119
|
}
|
|
915
1120
|
|
|
@@ -1003,7 +1208,7 @@ declare namespace fundWithdraws {
|
|
|
1003
1208
|
*
|
|
1004
1209
|
*/
|
|
1005
1210
|
|
|
1006
|
-
declare namespace index$
|
|
1211
|
+
declare namespace index$O {
|
|
1007
1212
|
export { accumulationFunds as AccumulatedFunds, coopWallet as CoopWallet, expenseFunds as ExpensedFunds, fundWithdraws as FundWithdraws };
|
|
1008
1213
|
}
|
|
1009
1214
|
|
|
@@ -1012,8 +1217,8 @@ declare const contractName$8: {
|
|
|
1012
1217
|
readonly testnet: "fundtest2222";
|
|
1013
1218
|
};
|
|
1014
1219
|
|
|
1015
|
-
declare namespace index$
|
|
1016
|
-
export { index$
|
|
1220
|
+
declare namespace index$N {
|
|
1221
|
+
export { index$P as Actions, fund as Interfaces, index$O as Tables, contractName$8 as contractName };
|
|
1017
1222
|
}
|
|
1018
1223
|
|
|
1019
1224
|
type IAsset$5 = string;
|
|
@@ -1022,7 +1227,7 @@ type IChecksum256$5 = string;
|
|
|
1022
1227
|
type IPublicKey$4 = string;
|
|
1023
1228
|
type ISignature$3 = string;
|
|
1024
1229
|
type ITimePointSec$6 = string;
|
|
1025
|
-
type IUint64$
|
|
1230
|
+
type IUint64$3 = number | string;
|
|
1026
1231
|
interface IAdduser$2 {
|
|
1027
1232
|
coopname: IName$7;
|
|
1028
1233
|
username: IName$7;
|
|
@@ -1031,10 +1236,10 @@ interface IAdduser$2 {
|
|
|
1031
1236
|
created_at: ITimePointSec$6;
|
|
1032
1237
|
spread_initial: boolean;
|
|
1033
1238
|
}
|
|
1034
|
-
interface IBalances$
|
|
1239
|
+
interface IBalances$1 extends IBalancesBase$1 {
|
|
1035
1240
|
}
|
|
1036
|
-
interface IBalancesBase$
|
|
1037
|
-
id: IUint64$
|
|
1241
|
+
interface IBalancesBase$1 {
|
|
1242
|
+
id: IUint64$3;
|
|
1038
1243
|
contract: IName$7;
|
|
1039
1244
|
quantity: IAsset$5;
|
|
1040
1245
|
}
|
|
@@ -1043,12 +1248,12 @@ interface ICounts$2 extends ICountsBase$2 {
|
|
|
1043
1248
|
interface ICountsBase$2 {
|
|
1044
1249
|
key: IName$7;
|
|
1045
1250
|
secondary_key: IName$7;
|
|
1046
|
-
value: IUint64$
|
|
1251
|
+
value: IUint64$3;
|
|
1047
1252
|
}
|
|
1048
1253
|
interface IDeposit {
|
|
1049
1254
|
coopname: IName$7;
|
|
1050
1255
|
username: IName$7;
|
|
1051
|
-
deposit_id: IUint64$
|
|
1256
|
+
deposit_id: IUint64$3;
|
|
1052
1257
|
type: IName$7;
|
|
1053
1258
|
quantity: IAsset$5;
|
|
1054
1259
|
}
|
|
@@ -1061,13 +1266,13 @@ interface IDocument$3 {
|
|
|
1061
1266
|
interface IDpcomplete {
|
|
1062
1267
|
coopname: IName$7;
|
|
1063
1268
|
admin: IName$7;
|
|
1064
|
-
deposit_id: IUint64$
|
|
1269
|
+
deposit_id: IUint64$3;
|
|
1065
1270
|
memo: string;
|
|
1066
1271
|
}
|
|
1067
1272
|
interface IDprefund {
|
|
1068
1273
|
coopname: IName$7;
|
|
1069
1274
|
admin: IName$7;
|
|
1070
|
-
deposit_id: IUint64$
|
|
1275
|
+
deposit_id: IUint64$3;
|
|
1071
1276
|
memo: string;
|
|
1072
1277
|
}
|
|
1073
1278
|
interface IMigrate$2 {
|
|
@@ -1075,28 +1280,28 @@ interface IMigrate$2 {
|
|
|
1075
1280
|
interface INewdeposit {
|
|
1076
1281
|
coopname: IName$7;
|
|
1077
1282
|
username: IName$7;
|
|
1078
|
-
deposit_id: IUint64$
|
|
1283
|
+
deposit_id: IUint64$3;
|
|
1079
1284
|
type: IName$7;
|
|
1080
1285
|
amount: IAsset$5;
|
|
1081
1286
|
deposited_at: ITimePointSec$6;
|
|
1082
1287
|
}
|
|
1083
1288
|
interface INewdepositid {
|
|
1084
1289
|
username: IName$7;
|
|
1085
|
-
id: IUint64$
|
|
1290
|
+
id: IUint64$3;
|
|
1086
1291
|
}
|
|
1087
1292
|
interface INewwithdraw {
|
|
1088
1293
|
coopname: IName$7;
|
|
1089
1294
|
username: IName$7;
|
|
1090
|
-
withdraw_id: IUint64$
|
|
1295
|
+
withdraw_id: IUint64$3;
|
|
1091
1296
|
type: IName$7;
|
|
1092
1297
|
amount: IAsset$5;
|
|
1093
1298
|
}
|
|
1094
1299
|
interface INewwithdrid {
|
|
1095
1300
|
username: IName$7;
|
|
1096
|
-
id: IUint64$
|
|
1301
|
+
id: IUint64$3;
|
|
1097
1302
|
}
|
|
1098
1303
|
interface IOnedeposit {
|
|
1099
|
-
id: IUint64$
|
|
1304
|
+
id: IUint64$3;
|
|
1100
1305
|
username: IName$7;
|
|
1101
1306
|
coopname: IName$7;
|
|
1102
1307
|
type: IName$7;
|
|
@@ -1108,7 +1313,7 @@ interface IOnedeposit {
|
|
|
1108
1313
|
expired_at: ITimePointSec$6;
|
|
1109
1314
|
}
|
|
1110
1315
|
interface IOnewithdraw {
|
|
1111
|
-
id: IUint64$
|
|
1316
|
+
id: IUint64$3;
|
|
1112
1317
|
username: IName$7;
|
|
1113
1318
|
coopname: IName$7;
|
|
1114
1319
|
bank_data_id: string;
|
|
@@ -1129,18 +1334,18 @@ interface IWithdraw$1 {
|
|
|
1129
1334
|
}
|
|
1130
1335
|
interface IWithdrawauth {
|
|
1131
1336
|
coopname: IName$7;
|
|
1132
|
-
withdraw_id: IUint64$
|
|
1337
|
+
withdraw_id: IUint64$3;
|
|
1133
1338
|
}
|
|
1134
1339
|
interface IWthdcomplete {
|
|
1135
1340
|
coopname: IName$7;
|
|
1136
1341
|
admin: IName$7;
|
|
1137
|
-
withdraw_id: IUint64$
|
|
1342
|
+
withdraw_id: IUint64$3;
|
|
1138
1343
|
memo: string;
|
|
1139
1344
|
}
|
|
1140
1345
|
interface IWthdfail {
|
|
1141
1346
|
coopname: IName$7;
|
|
1142
1347
|
admin: IName$7;
|
|
1143
|
-
withdraw_id: IUint64$
|
|
1348
|
+
withdraw_id: IUint64$3;
|
|
1144
1349
|
memo: string;
|
|
1145
1350
|
}
|
|
1146
1351
|
|
|
@@ -1157,14 +1362,14 @@ type gateway_IWithdrawauth = IWithdrawauth;
|
|
|
1157
1362
|
type gateway_IWthdcomplete = IWthdcomplete;
|
|
1158
1363
|
type gateway_IWthdfail = IWthdfail;
|
|
1159
1364
|
declare namespace gateway {
|
|
1160
|
-
export type { IAdduser$2 as IAdduser, IAsset$5 as IAsset, IBalances$
|
|
1365
|
+
export type { IAdduser$2 as IAdduser, IAsset$5 as IAsset, IBalances$1 as IBalances, IBalancesBase$1 as IBalancesBase, IChecksum256$5 as IChecksum256, ICounts$2 as ICounts, ICountsBase$2 as ICountsBase, gateway_IDeposit as IDeposit, IDocument$3 as IDocument, gateway_IDpcomplete as IDpcomplete, gateway_IDprefund as IDprefund, IMigrate$2 as IMigrate, IName$7 as IName, gateway_INewdeposit as INewdeposit, gateway_INewdepositid as INewdepositid, gateway_INewwithdraw as INewwithdraw, gateway_INewwithdrid as INewwithdrid, gateway_IOnedeposit as IOnedeposit, gateway_IOnewithdraw as IOnewithdraw, IPublicKey$4 as IPublicKey, ISignature$3 as ISignature, ITimePointSec$6 as ITimePointSec, IUint64$3 as IUint64, IWithdraw$1 as IWithdraw, gateway_IWithdrawauth as IWithdrawauth, gateway_IWthdcomplete as IWthdcomplete, gateway_IWthdfail as IWthdfail };
|
|
1161
1366
|
}
|
|
1162
1367
|
|
|
1163
1368
|
/**
|
|
1164
1369
|
* Имя действия
|
|
1165
1370
|
* Требуется авторизация {@link Actors._coopname | технического аккаунта кооператива} со специальным разрешением.
|
|
1166
1371
|
*/
|
|
1167
|
-
declare const authorizations$
|
|
1372
|
+
declare const authorizations$27: readonly [{
|
|
1168
1373
|
readonly permissions: readonly ["active", {
|
|
1169
1374
|
readonly contract: "_contract";
|
|
1170
1375
|
readonly action: "actionName";
|
|
@@ -1174,7 +1379,7 @@ declare const authorizations$23: readonly [{
|
|
|
1174
1379
|
/**
|
|
1175
1380
|
* Имя действия
|
|
1176
1381
|
*/
|
|
1177
|
-
declare const actionName$
|
|
1382
|
+
declare const actionName$27 = "deposit";
|
|
1178
1383
|
/**
|
|
1179
1384
|
* @interface
|
|
1180
1385
|
* Действие для создания заявки на взнос в кошелёк, которое производится уполномоченным аккаунтом от кооператива с бэкенда.
|
|
@@ -1189,14 +1394,14 @@ type ICreateDeposit = IDeposit;
|
|
|
1189
1394
|
|
|
1190
1395
|
type createDeposit_ICreateDeposit = ICreateDeposit;
|
|
1191
1396
|
declare namespace createDeposit {
|
|
1192
|
-
export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$
|
|
1397
|
+
export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$27 as actionName, authorizations$27 as authorizations };
|
|
1193
1398
|
}
|
|
1194
1399
|
|
|
1195
1400
|
/**
|
|
1196
1401
|
* Имя действия
|
|
1197
1402
|
* Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
|
|
1198
1403
|
*/
|
|
1199
|
-
declare const authorizations$
|
|
1404
|
+
declare const authorizations$26: readonly [{
|
|
1200
1405
|
readonly permissions: readonly ["active", {
|
|
1201
1406
|
readonly contract: "_contract";
|
|
1202
1407
|
readonly action: "actionName";
|
|
@@ -1206,7 +1411,7 @@ declare const authorizations$22: readonly [{
|
|
|
1206
1411
|
/**
|
|
1207
1412
|
* Имя действия
|
|
1208
1413
|
*/
|
|
1209
|
-
declare const actionName$
|
|
1414
|
+
declare const actionName$26 = "dpcomplete";
|
|
1210
1415
|
/**
|
|
1211
1416
|
* @interface
|
|
1212
1417
|
*/
|
|
@@ -1214,14 +1419,14 @@ type ICompleteDeposit = IDpcomplete;
|
|
|
1214
1419
|
|
|
1215
1420
|
type completeDeposit_ICompleteDeposit = ICompleteDeposit;
|
|
1216
1421
|
declare namespace completeDeposit {
|
|
1217
|
-
export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$
|
|
1422
|
+
export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$26 as actionName, authorizations$26 as authorizations };
|
|
1218
1423
|
}
|
|
1219
1424
|
|
|
1220
1425
|
/**
|
|
1221
1426
|
* Имя действия
|
|
1222
1427
|
* Требуется авторизация {@link Actors._admin | администратором кооператива} со специальным разрешением.
|
|
1223
1428
|
*/
|
|
1224
|
-
declare const authorizations$
|
|
1429
|
+
declare const authorizations$25: readonly [{
|
|
1225
1430
|
readonly permissions: readonly ["active", {
|
|
1226
1431
|
readonly contract: "_contract";
|
|
1227
1432
|
readonly action: "actionName";
|
|
@@ -1231,7 +1436,7 @@ declare const authorizations$21: readonly [{
|
|
|
1231
1436
|
/**
|
|
1232
1437
|
* Имя действия
|
|
1233
1438
|
*/
|
|
1234
|
-
declare const actionName$
|
|
1439
|
+
declare const actionName$25 = "dprefund";
|
|
1235
1440
|
/**
|
|
1236
1441
|
* @interface
|
|
1237
1442
|
*/
|
|
@@ -1239,14 +1444,14 @@ type IRefundDeposit = IDprefund;
|
|
|
1239
1444
|
|
|
1240
1445
|
type refundDeposit_IRefundDeposit = IRefundDeposit;
|
|
1241
1446
|
declare namespace refundDeposit {
|
|
1242
|
-
export { type refundDeposit_IRefundDeposit as IRefundDeposit, actionName$
|
|
1447
|
+
export { type refundDeposit_IRefundDeposit as IRefundDeposit, actionName$25 as actionName, authorizations$25 as authorizations };
|
|
1243
1448
|
}
|
|
1244
1449
|
|
|
1245
1450
|
/**
|
|
1246
1451
|
* Имя действия
|
|
1247
1452
|
* Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
|
|
1248
1453
|
*/
|
|
1249
|
-
declare const authorizations$
|
|
1454
|
+
declare const authorizations$24: readonly [{
|
|
1250
1455
|
readonly permissions: readonly ["active"];
|
|
1251
1456
|
readonly actor: {
|
|
1252
1457
|
readonly production: "gateway";
|
|
@@ -1256,7 +1461,7 @@ declare const authorizations$20: readonly [{
|
|
|
1256
1461
|
/**
|
|
1257
1462
|
* Имя действия
|
|
1258
1463
|
*/
|
|
1259
|
-
declare const actionName$
|
|
1464
|
+
declare const actionName$24 = "newdepositid";
|
|
1260
1465
|
/**
|
|
1261
1466
|
* @interface
|
|
1262
1467
|
*/
|
|
@@ -1264,14 +1469,14 @@ type NewDepositId = INewdepositid;
|
|
|
1264
1469
|
|
|
1265
1470
|
type newDepositId_NewDepositId = NewDepositId;
|
|
1266
1471
|
declare namespace newDepositId {
|
|
1267
|
-
export { type newDepositId_NewDepositId as NewDepositId, actionName$
|
|
1472
|
+
export { type newDepositId_NewDepositId as NewDepositId, actionName$24 as actionName, authorizations$24 as authorizations };
|
|
1268
1473
|
}
|
|
1269
1474
|
|
|
1270
1475
|
/**
|
|
1271
1476
|
* Имя действия
|
|
1272
1477
|
* Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
|
|
1273
1478
|
*/
|
|
1274
|
-
declare const authorizations$
|
|
1479
|
+
declare const authorizations$23: readonly [{
|
|
1275
1480
|
readonly permissions: readonly ["active"];
|
|
1276
1481
|
readonly actor: {
|
|
1277
1482
|
readonly production: "gateway";
|
|
@@ -1281,7 +1486,7 @@ declare const authorizations$1$: readonly [{
|
|
|
1281
1486
|
/**
|
|
1282
1487
|
* Имя действия
|
|
1283
1488
|
*/
|
|
1284
|
-
declare const actionName$
|
|
1489
|
+
declare const actionName$23 = "newwithdrid";
|
|
1285
1490
|
/**
|
|
1286
1491
|
* @interface
|
|
1287
1492
|
*/
|
|
@@ -1289,21 +1494,21 @@ type NewWithdrawId = INewwithdrid;
|
|
|
1289
1494
|
|
|
1290
1495
|
type newWithdrawId_NewWithdrawId = NewWithdrawId;
|
|
1291
1496
|
declare namespace newWithdrawId {
|
|
1292
|
-
export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$
|
|
1497
|
+
export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$23 as actionName, authorizations$23 as authorizations };
|
|
1293
1498
|
}
|
|
1294
1499
|
|
|
1295
1500
|
/**
|
|
1296
1501
|
* Имя действия
|
|
1297
1502
|
* Требуется авторизация {@link Actors._username | пользователя}.
|
|
1298
1503
|
*/
|
|
1299
|
-
declare const authorizations$
|
|
1504
|
+
declare const authorizations$22: readonly [{
|
|
1300
1505
|
readonly permissions: readonly ["active"];
|
|
1301
1506
|
readonly actor: "_username";
|
|
1302
1507
|
}];
|
|
1303
1508
|
/**
|
|
1304
1509
|
* Имя действия
|
|
1305
1510
|
*/
|
|
1306
|
-
declare const actionName$
|
|
1511
|
+
declare const actionName$22 = "withdraw";
|
|
1307
1512
|
/**
|
|
1308
1513
|
* @interface
|
|
1309
1514
|
* Действие для создания заявки на возврат паевого взноса из кошелька.
|
|
@@ -1311,14 +1516,14 @@ declare const actionName$1_ = "withdraw";
|
|
|
1311
1516
|
type IFailDeposit$1 = IWithdraw$1;
|
|
1312
1517
|
|
|
1313
1518
|
declare namespace createWithdraw {
|
|
1314
|
-
export { type IFailDeposit$1 as IFailDeposit, actionName$
|
|
1519
|
+
export { type IFailDeposit$1 as IFailDeposit, actionName$22 as actionName, authorizations$22 as authorizations };
|
|
1315
1520
|
}
|
|
1316
1521
|
|
|
1317
1522
|
/**
|
|
1318
1523
|
* Имя действия
|
|
1319
1524
|
* Требуется авторизация {@link Actors._admin | администратора}.
|
|
1320
1525
|
*/
|
|
1321
|
-
declare const authorizations$
|
|
1526
|
+
declare const authorizations$21: readonly [{
|
|
1322
1527
|
readonly permissions: readonly ["active", {
|
|
1323
1528
|
readonly contract: "_contract";
|
|
1324
1529
|
readonly action: "actionName";
|
|
@@ -1328,7 +1533,7 @@ declare const authorizations$1Z: readonly [{
|
|
|
1328
1533
|
/**
|
|
1329
1534
|
* Имя действия
|
|
1330
1535
|
*/
|
|
1331
|
-
declare const actionName$
|
|
1536
|
+
declare const actionName$21 = "wthdcomplete";
|
|
1332
1537
|
/**
|
|
1333
1538
|
* @interface
|
|
1334
1539
|
* Действие для подтверждения платежа по возврату паевого взноса пользователю.
|
|
@@ -1337,14 +1542,14 @@ type IFailDeposit = IWthdcomplete;
|
|
|
1337
1542
|
|
|
1338
1543
|
type completeWithdraw_IFailDeposit = IFailDeposit;
|
|
1339
1544
|
declare namespace completeWithdraw {
|
|
1340
|
-
export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$
|
|
1545
|
+
export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$21 as actionName, authorizations$21 as authorizations };
|
|
1341
1546
|
}
|
|
1342
1547
|
|
|
1343
1548
|
/**
|
|
1344
1549
|
* Имя действия
|
|
1345
1550
|
* Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
|
|
1346
1551
|
*/
|
|
1347
|
-
declare const authorizations$
|
|
1552
|
+
declare const authorizations$20: readonly [{
|
|
1348
1553
|
readonly permissions: readonly ["active", {
|
|
1349
1554
|
readonly contract: "_contract";
|
|
1350
1555
|
readonly action: "actionName";
|
|
@@ -1354,7 +1559,7 @@ declare const authorizations$1Y: readonly [{
|
|
|
1354
1559
|
/**
|
|
1355
1560
|
* Имя действия
|
|
1356
1561
|
*/
|
|
1357
|
-
declare const actionName$
|
|
1562
|
+
declare const actionName$20 = "wthdfail";
|
|
1358
1563
|
/**
|
|
1359
1564
|
* @interface
|
|
1360
1565
|
*/
|
|
@@ -1362,14 +1567,14 @@ type IFailWithdraw = IWthdfail;
|
|
|
1362
1567
|
|
|
1363
1568
|
type failWithdraw_IFailWithdraw = IFailWithdraw;
|
|
1364
1569
|
declare namespace failWithdraw {
|
|
1365
|
-
export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$
|
|
1570
|
+
export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$20 as actionName, authorizations$20 as authorizations };
|
|
1366
1571
|
}
|
|
1367
1572
|
|
|
1368
1573
|
/**
|
|
1369
1574
|
* Вызывается техническим аккаунтом кооператива для создания объекта депозита со статусом платежа.
|
|
1370
1575
|
*/
|
|
1371
1576
|
|
|
1372
|
-
declare namespace index$
|
|
1577
|
+
declare namespace index$M {
|
|
1373
1578
|
export { completeDeposit as CompleteDeposit, completeWithdraw as CompleteWithdraw, createDeposit as CreateDeposit, createWithdraw as CreateWithdraw, failWithdraw as FailWithdraw, newDepositId as NewDepositId, newWithdrawId as NewWithdrawId, refundDeposit as RefundDeposit };
|
|
1374
1579
|
}
|
|
1375
1580
|
|
|
@@ -1420,7 +1625,7 @@ declare namespace withdraws {
|
|
|
1420
1625
|
export { type withdraws_IWithdraws as IWithdraws, scope$z as scope, tableName$z as tableName };
|
|
1421
1626
|
}
|
|
1422
1627
|
|
|
1423
|
-
declare namespace index$
|
|
1628
|
+
declare namespace index$L {
|
|
1424
1629
|
export { deposits as Deposits, withdraws as Withdraws };
|
|
1425
1630
|
}
|
|
1426
1631
|
|
|
@@ -1429,8 +1634,8 @@ declare const contractName$7: {
|
|
|
1429
1634
|
readonly testnet: "gateway2222";
|
|
1430
1635
|
};
|
|
1431
1636
|
|
|
1432
|
-
declare namespace index$
|
|
1433
|
-
export { index$
|
|
1637
|
+
declare namespace index$K {
|
|
1638
|
+
export { index$M as Actions, gateway as Interfaces, index$L as Tables, contractName$7 as contractName };
|
|
1434
1639
|
}
|
|
1435
1640
|
|
|
1436
1641
|
type IAsset$4 = string;
|
|
@@ -1439,7 +1644,6 @@ type IChecksum256$4 = string;
|
|
|
1439
1644
|
type IPublicKey$3 = string;
|
|
1440
1645
|
type ISignature$2 = string;
|
|
1441
1646
|
type ITimePointSec$5 = string;
|
|
1442
|
-
type IUint64$3 = number | string;
|
|
1443
1647
|
interface IAccount$2 {
|
|
1444
1648
|
username: IName$6;
|
|
1445
1649
|
referer: IName$6;
|
|
@@ -1463,19 +1667,16 @@ interface IAdduser$1 {
|
|
|
1463
1667
|
spread_initial: boolean;
|
|
1464
1668
|
meta: string;
|
|
1465
1669
|
}
|
|
1466
|
-
interface IBalances$1 extends IBalancesBase$1 {
|
|
1467
|
-
}
|
|
1468
|
-
interface IBalancesBase$1 {
|
|
1469
|
-
id: IUint64$3;
|
|
1470
|
-
contract: IName$6;
|
|
1471
|
-
quantity: IAsset$4;
|
|
1472
|
-
}
|
|
1473
1670
|
interface IChangekey {
|
|
1474
1671
|
coopname: IName$6;
|
|
1475
1672
|
changer: IName$6;
|
|
1476
1673
|
username: IName$6;
|
|
1477
1674
|
public_key: IPublicKey$3;
|
|
1478
1675
|
}
|
|
1676
|
+
interface IConfirmreg {
|
|
1677
|
+
coopname: IName$6;
|
|
1678
|
+
username: IName$6;
|
|
1679
|
+
}
|
|
1479
1680
|
interface ICooperative$1 {
|
|
1480
1681
|
username: IName$6;
|
|
1481
1682
|
parent_username: IName$6;
|
|
@@ -1495,21 +1696,32 @@ interface ICooperative$1 {
|
|
|
1495
1696
|
created_at: ITimePointSec$5;
|
|
1496
1697
|
document: IDocument$2;
|
|
1497
1698
|
}
|
|
1699
|
+
interface ICreatebranch {
|
|
1700
|
+
coopname: IName$6;
|
|
1701
|
+
braname: IName$6;
|
|
1702
|
+
}
|
|
1498
1703
|
interface IDelcoop {
|
|
1499
1704
|
registrator: IName$6;
|
|
1500
1705
|
coopname: IName$6;
|
|
1501
1706
|
}
|
|
1707
|
+
interface IDisbranches {
|
|
1708
|
+
coopname: IName$6;
|
|
1709
|
+
}
|
|
1502
1710
|
interface IDocument$2 {
|
|
1503
1711
|
hash: IChecksum256$4;
|
|
1504
1712
|
public_key: IPublicKey$3;
|
|
1505
1713
|
signature: ISignature$2;
|
|
1506
1714
|
meta: string;
|
|
1507
1715
|
}
|
|
1716
|
+
interface IEnabranches {
|
|
1717
|
+
coopname: IName$6;
|
|
1718
|
+
}
|
|
1508
1719
|
interface IInit$5 {
|
|
1509
1720
|
}
|
|
1510
1721
|
interface IJoincoop$1 {
|
|
1511
1722
|
registrator: IName$6;
|
|
1512
1723
|
coopname: IName$6;
|
|
1724
|
+
braname: IName$6;
|
|
1513
1725
|
username: IName$6;
|
|
1514
1726
|
document: IDocument$2;
|
|
1515
1727
|
}
|
|
@@ -1579,7 +1791,11 @@ interface IVerification {
|
|
|
1579
1791
|
}
|
|
1580
1792
|
|
|
1581
1793
|
type registrator_IChangekey = IChangekey;
|
|
1794
|
+
type registrator_IConfirmreg = IConfirmreg;
|
|
1795
|
+
type registrator_ICreatebranch = ICreatebranch;
|
|
1582
1796
|
type registrator_IDelcoop = IDelcoop;
|
|
1797
|
+
type registrator_IDisbranches = IDisbranches;
|
|
1798
|
+
type registrator_IEnabranches = IEnabranches;
|
|
1583
1799
|
type registrator_IOrgData = IOrgData;
|
|
1584
1800
|
type registrator_IRegcoop = IRegcoop;
|
|
1585
1801
|
type registrator_IReguser = IReguser;
|
|
@@ -1589,10 +1805,10 @@ type registrator_IUpdatecoop = IUpdatecoop;
|
|
|
1589
1805
|
type registrator_IVerificate = IVerificate;
|
|
1590
1806
|
type registrator_IVerification = IVerification;
|
|
1591
1807
|
declare namespace registrator {
|
|
1592
|
-
export type { IAccount$2 as IAccount, IAdduser$1 as IAdduser, IAsset$4 as IAsset,
|
|
1808
|
+
export type { IAccount$2 as IAccount, IAdduser$1 as IAdduser, IAsset$4 as IAsset, registrator_IChangekey as IChangekey, IChecksum256$4 as IChecksum256, registrator_IConfirmreg as IConfirmreg, ICooperative$1 as ICooperative, registrator_ICreatebranch as ICreatebranch, registrator_IDelcoop as IDelcoop, registrator_IDisbranches as IDisbranches, IDocument$2 as IDocument, registrator_IEnabranches as IEnabranches, IInit$5 as IInit, IJoincoop$1 as IJoincoop, IMigrate$1 as IMigrate, IName$6 as IName, INewaccount$1 as INewaccount, registrator_IOrgData as IOrgData, IPublicKey$3 as IPublicKey, registrator_IRegcoop as IRegcoop, registrator_IReguser as IReguser, ISignature$2 as ISignature, registrator_IStcoopstatus as IStcoopstatus, ITimePointSec$5 as ITimePointSec, registrator_IUpdateaccnt as IUpdateaccnt, registrator_IUpdatecoop as IUpdatecoop, registrator_IVerificate as IVerificate, registrator_IVerification as IVerification };
|
|
1593
1809
|
}
|
|
1594
1810
|
|
|
1595
|
-
declare const authorizations$
|
|
1811
|
+
declare const authorizations$1$: readonly [{
|
|
1596
1812
|
readonly permissions: readonly ["active"];
|
|
1597
1813
|
readonly actor: {
|
|
1598
1814
|
readonly production: "eosio";
|
|
@@ -1602,7 +1818,7 @@ declare const authorizations$1X: readonly [{
|
|
|
1602
1818
|
/**
|
|
1603
1819
|
* Имя действия
|
|
1604
1820
|
*/
|
|
1605
|
-
declare const actionName$
|
|
1821
|
+
declare const actionName$1$ = "verificate";
|
|
1606
1822
|
/**
|
|
1607
1823
|
* @interface
|
|
1608
1824
|
*/
|
|
@@ -1610,17 +1826,17 @@ type IVerificateAccount = IVerificate;
|
|
|
1610
1826
|
|
|
1611
1827
|
type verificateAccount_IVerificateAccount = IVerificateAccount;
|
|
1612
1828
|
declare namespace verificateAccount {
|
|
1613
|
-
export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$
|
|
1829
|
+
export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$1$ as actionName, authorizations$1$ as authorizations };
|
|
1614
1830
|
}
|
|
1615
1831
|
|
|
1616
|
-
declare const authorizations$
|
|
1832
|
+
declare const authorizations$1_: readonly [{
|
|
1617
1833
|
readonly permissions: readonly ["active"];
|
|
1618
1834
|
readonly actor: "_username";
|
|
1619
1835
|
}];
|
|
1620
1836
|
/**
|
|
1621
1837
|
* Имя действия
|
|
1622
1838
|
*/
|
|
1623
|
-
declare const actionName$
|
|
1839
|
+
declare const actionName$1_ = "updateaccnt";
|
|
1624
1840
|
/**
|
|
1625
1841
|
* @interface
|
|
1626
1842
|
*/
|
|
@@ -1628,17 +1844,17 @@ type IUpdateAccount = IUpdateaccnt;
|
|
|
1628
1844
|
|
|
1629
1845
|
type updateAccount_IUpdateAccount = IUpdateAccount;
|
|
1630
1846
|
declare namespace updateAccount {
|
|
1631
|
-
export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$
|
|
1847
|
+
export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$1_ as actionName, authorizations$1_ as authorizations };
|
|
1632
1848
|
}
|
|
1633
1849
|
|
|
1634
|
-
declare const authorizations$
|
|
1850
|
+
declare const authorizations$1Z: readonly [{
|
|
1635
1851
|
readonly permissions: readonly ["active"];
|
|
1636
1852
|
readonly actor: "_username";
|
|
1637
1853
|
}];
|
|
1638
1854
|
/**
|
|
1639
1855
|
* Имя действия
|
|
1640
1856
|
*/
|
|
1641
|
-
declare const actionName$
|
|
1857
|
+
declare const actionName$1Z = "updatecoop";
|
|
1642
1858
|
/**
|
|
1643
1859
|
* @interface
|
|
1644
1860
|
*/
|
|
@@ -1646,13 +1862,13 @@ type IUpdateCoop = IUpdatecoop;
|
|
|
1646
1862
|
|
|
1647
1863
|
type updateCoop_IUpdateCoop = IUpdateCoop;
|
|
1648
1864
|
declare namespace updateCoop {
|
|
1649
|
-
export { type updateCoop_IUpdateCoop as IUpdateCoop, actionName$
|
|
1865
|
+
export { type updateCoop_IUpdateCoop as IUpdateCoop, actionName$1Z as actionName, authorizations$1Z as authorizations };
|
|
1650
1866
|
}
|
|
1651
1867
|
|
|
1652
1868
|
/**
|
|
1653
1869
|
* Требуется авторизация аккаунта {@link Actors._admin | администратора} c позитивным балансом AXON для оплаты аренды ресурсов.
|
|
1654
1870
|
*/
|
|
1655
|
-
declare const authorizations$
|
|
1871
|
+
declare const authorizations$1Y: readonly [{
|
|
1656
1872
|
readonly permissions: readonly ["active", {
|
|
1657
1873
|
readonly contract: "_contract";
|
|
1658
1874
|
readonly action: "actionName";
|
|
@@ -1662,17 +1878,17 @@ declare const authorizations$1U: readonly [{
|
|
|
1662
1878
|
/**
|
|
1663
1879
|
* Имя действия
|
|
1664
1880
|
*/
|
|
1665
|
-
declare const actionName$
|
|
1881
|
+
declare const actionName$1Y = "newaccount";
|
|
1666
1882
|
/**
|
|
1667
1883
|
* @interface
|
|
1668
1884
|
*/
|
|
1669
1885
|
type ICreateAccount$1 = INewaccount$1;
|
|
1670
1886
|
|
|
1671
1887
|
declare namespace createAccount$1 {
|
|
1672
|
-
export { type ICreateAccount$1 as ICreateAccount, actionName$
|
|
1888
|
+
export { type ICreateAccount$1 as ICreateAccount, actionName$1Y as actionName, authorizations$1Y as authorizations };
|
|
1673
1889
|
}
|
|
1674
1890
|
|
|
1675
|
-
declare const authorizations$
|
|
1891
|
+
declare const authorizations$1X: readonly [{
|
|
1676
1892
|
readonly permissions: readonly ["active", {
|
|
1677
1893
|
readonly contract: "_contract";
|
|
1678
1894
|
readonly action: "actionName";
|
|
@@ -1682,7 +1898,7 @@ declare const authorizations$1T: readonly [{
|
|
|
1682
1898
|
/**
|
|
1683
1899
|
* Имя действия
|
|
1684
1900
|
*/
|
|
1685
|
-
declare const actionName$
|
|
1901
|
+
declare const actionName$1X = "reguser";
|
|
1686
1902
|
/**
|
|
1687
1903
|
* @interface
|
|
1688
1904
|
*/
|
|
@@ -1690,10 +1906,10 @@ type IRegistrerUser = IReguser;
|
|
|
1690
1906
|
|
|
1691
1907
|
type registerUser_IRegistrerUser = IRegistrerUser;
|
|
1692
1908
|
declare namespace registerUser {
|
|
1693
|
-
export { type registerUser_IRegistrerUser as IRegistrerUser, actionName$
|
|
1909
|
+
export { type registerUser_IRegistrerUser as IRegistrerUser, actionName$1X as actionName, authorizations$1X as authorizations };
|
|
1694
1910
|
}
|
|
1695
1911
|
|
|
1696
|
-
declare const authorizations$
|
|
1912
|
+
declare const authorizations$1W: readonly [{
|
|
1697
1913
|
readonly permissions: readonly ["active", {
|
|
1698
1914
|
readonly contract: "_contract";
|
|
1699
1915
|
readonly action: "actionName";
|
|
@@ -1703,7 +1919,7 @@ declare const authorizations$1S: readonly [{
|
|
|
1703
1919
|
/**
|
|
1704
1920
|
* Имя действия
|
|
1705
1921
|
*/
|
|
1706
|
-
declare const actionName$
|
|
1922
|
+
declare const actionName$1W = "regcoop";
|
|
1707
1923
|
/**
|
|
1708
1924
|
* @interface
|
|
1709
1925
|
*/
|
|
@@ -1711,10 +1927,10 @@ type IRegisterCooperative = IRegcoop;
|
|
|
1711
1927
|
|
|
1712
1928
|
type registerCooperative_IRegisterCooperative = IRegisterCooperative;
|
|
1713
1929
|
declare namespace registerCooperative {
|
|
1714
|
-
export { type registerCooperative_IRegisterCooperative as IRegisterCooperative, actionName$
|
|
1930
|
+
export { type registerCooperative_IRegisterCooperative as IRegisterCooperative, actionName$1W as actionName, authorizations$1W as authorizations };
|
|
1715
1931
|
}
|
|
1716
1932
|
|
|
1717
|
-
declare const authorizations$
|
|
1933
|
+
declare const authorizations$1V: readonly [{
|
|
1718
1934
|
readonly permissions: readonly ["active"];
|
|
1719
1935
|
readonly actor: {
|
|
1720
1936
|
readonly production: "eosio";
|
|
@@ -1724,7 +1940,7 @@ declare const authorizations$1R: readonly [{
|
|
|
1724
1940
|
/**
|
|
1725
1941
|
* Имя действия
|
|
1726
1942
|
*/
|
|
1727
|
-
declare const actionName$
|
|
1943
|
+
declare const actionName$1V = "changekey";
|
|
1728
1944
|
/**
|
|
1729
1945
|
* @interface
|
|
1730
1946
|
*/
|
|
@@ -1732,13 +1948,13 @@ type IChangeKey = IChangekey;
|
|
|
1732
1948
|
|
|
1733
1949
|
type changeKey_IChangeKey = IChangeKey;
|
|
1734
1950
|
declare namespace changeKey {
|
|
1735
|
-
export { type changeKey_IChangeKey as IChangeKey, actionName$
|
|
1951
|
+
export { type changeKey_IChangeKey as IChangeKey, actionName$1V as actionName, authorizations$1V as authorizations };
|
|
1736
1952
|
}
|
|
1737
1953
|
|
|
1738
1954
|
/**
|
|
1739
1955
|
* Требуется авторизация администратора кооператива или пользователя.
|
|
1740
1956
|
*/
|
|
1741
|
-
declare const authorizations$
|
|
1957
|
+
declare const authorizations$1U: readonly [{
|
|
1742
1958
|
readonly permissions: readonly ["active", {
|
|
1743
1959
|
readonly contract: "_contract";
|
|
1744
1960
|
readonly action: "actionName";
|
|
@@ -1751,7 +1967,7 @@ declare const authorizations$1Q: readonly [{
|
|
|
1751
1967
|
/**
|
|
1752
1968
|
* Имя действия
|
|
1753
1969
|
*/
|
|
1754
|
-
declare const actionName$
|
|
1970
|
+
declare const actionName$1U = "joincoop";
|
|
1755
1971
|
/**
|
|
1756
1972
|
* @interface
|
|
1757
1973
|
*/
|
|
@@ -1759,10 +1975,10 @@ type IJoinCooperative = IJoincoop$1;
|
|
|
1759
1975
|
|
|
1760
1976
|
type joinCooperative_IJoinCooperative = IJoinCooperative;
|
|
1761
1977
|
declare namespace joinCooperative {
|
|
1762
|
-
export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$
|
|
1978
|
+
export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$1U as actionName, authorizations$1U as authorizations };
|
|
1763
1979
|
}
|
|
1764
1980
|
|
|
1765
|
-
declare const authorizations$
|
|
1981
|
+
declare const authorizations$1T: readonly [{
|
|
1766
1982
|
readonly permissions: readonly ["active"];
|
|
1767
1983
|
readonly actor: {
|
|
1768
1984
|
readonly production: "eosio";
|
|
@@ -1772,17 +1988,17 @@ declare const authorizations$1P: readonly [{
|
|
|
1772
1988
|
/**
|
|
1773
1989
|
* Имя действия
|
|
1774
1990
|
*/
|
|
1775
|
-
declare const actionName$
|
|
1991
|
+
declare const actionName$1T = "init";
|
|
1776
1992
|
/**
|
|
1777
1993
|
* @interface
|
|
1778
1994
|
*/
|
|
1779
1995
|
type IInit$4 = IInit$5;
|
|
1780
1996
|
|
|
1781
1997
|
declare namespace init$2 {
|
|
1782
|
-
export { type IInit$4 as IInit, actionName$
|
|
1998
|
+
export { type IInit$4 as IInit, actionName$1T as actionName, authorizations$1T as authorizations };
|
|
1783
1999
|
}
|
|
1784
2000
|
|
|
1785
|
-
declare const authorizations$
|
|
2001
|
+
declare const authorizations$1S: readonly [{
|
|
1786
2002
|
readonly permissions: readonly ["active", {
|
|
1787
2003
|
readonly contract: "_contract";
|
|
1788
2004
|
readonly action: "actionName";
|
|
@@ -1792,7 +2008,7 @@ declare const authorizations$1O: readonly [{
|
|
|
1792
2008
|
/**
|
|
1793
2009
|
* Имя действия
|
|
1794
2010
|
*/
|
|
1795
|
-
declare const actionName$
|
|
2011
|
+
declare const actionName$1S = "adduser";
|
|
1796
2012
|
/**
|
|
1797
2013
|
* @interface
|
|
1798
2014
|
*/
|
|
@@ -1800,10 +2016,10 @@ type IAddUser = IAdduser$1;
|
|
|
1800
2016
|
|
|
1801
2017
|
type addUser_IAddUser = IAddUser;
|
|
1802
2018
|
declare namespace addUser {
|
|
1803
|
-
export { type addUser_IAddUser as IAddUser, actionName$
|
|
2019
|
+
export { type addUser_IAddUser as IAddUser, actionName$1S as actionName, authorizations$1S as authorizations };
|
|
1804
2020
|
}
|
|
1805
2021
|
|
|
1806
|
-
declare const authorizations$
|
|
2022
|
+
declare const authorizations$1R: readonly [{
|
|
1807
2023
|
readonly permissions: readonly ["active", {
|
|
1808
2024
|
readonly contract: "_contract";
|
|
1809
2025
|
readonly action: "actionName";
|
|
@@ -1813,7 +2029,7 @@ declare const authorizations$1N: readonly [{
|
|
|
1813
2029
|
/**
|
|
1814
2030
|
* Имя действия
|
|
1815
2031
|
*/
|
|
1816
|
-
declare const actionName$
|
|
2032
|
+
declare const actionName$1R = "stcoopstatus";
|
|
1817
2033
|
/**
|
|
1818
2034
|
* @interface
|
|
1819
2035
|
*/
|
|
@@ -1821,10 +2037,10 @@ type ISetCoopStatus = IStcoopstatus;
|
|
|
1821
2037
|
|
|
1822
2038
|
type setCoopStatus_ISetCoopStatus = ISetCoopStatus;
|
|
1823
2039
|
declare namespace setCoopStatus {
|
|
1824
|
-
export { type setCoopStatus_ISetCoopStatus as ISetCoopStatus, actionName$
|
|
2040
|
+
export { type setCoopStatus_ISetCoopStatus as ISetCoopStatus, actionName$1R as actionName, authorizations$1R as authorizations };
|
|
1825
2041
|
}
|
|
1826
2042
|
|
|
1827
|
-
declare const authorizations$
|
|
2043
|
+
declare const authorizations$1Q: readonly [{
|
|
1828
2044
|
readonly permissions: readonly ["active", {
|
|
1829
2045
|
readonly contract: "_contract";
|
|
1830
2046
|
readonly action: "actionName";
|
|
@@ -1834,7 +2050,7 @@ declare const authorizations$1M: readonly [{
|
|
|
1834
2050
|
/**
|
|
1835
2051
|
* Имя действия
|
|
1836
2052
|
*/
|
|
1837
|
-
declare const actionName$
|
|
2053
|
+
declare const actionName$1Q = "delcoop";
|
|
1838
2054
|
/**
|
|
1839
2055
|
* @interface
|
|
1840
2056
|
*/
|
|
@@ -1842,15 +2058,53 @@ type IDeleteCooperative = IDelcoop;
|
|
|
1842
2058
|
|
|
1843
2059
|
type deleteCooperative_IDeleteCooperative = IDeleteCooperative;
|
|
1844
2060
|
declare namespace deleteCooperative {
|
|
1845
|
-
export { type deleteCooperative_IDeleteCooperative as IDeleteCooperative, actionName$
|
|
2061
|
+
export { type deleteCooperative_IDeleteCooperative as IDeleteCooperative, actionName$1Q as actionName, authorizations$1Q as authorizations };
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
declare const authorizations$1P: readonly [{
|
|
2065
|
+
readonly permissions: readonly ["active"];
|
|
2066
|
+
readonly actor: "_coopname";
|
|
2067
|
+
}];
|
|
2068
|
+
/**
|
|
2069
|
+
* Имя действия
|
|
2070
|
+
*/
|
|
2071
|
+
declare const actionName$1P = "enabranches";
|
|
2072
|
+
/**
|
|
2073
|
+
* @interface
|
|
2074
|
+
* @private
|
|
2075
|
+
*/
|
|
2076
|
+
type IEnableBranches = IEnabranches;
|
|
2077
|
+
|
|
2078
|
+
type enableBranches_IEnableBranches = IEnableBranches;
|
|
2079
|
+
declare namespace enableBranches {
|
|
2080
|
+
export { type enableBranches_IEnableBranches as IEnableBranches, actionName$1P as actionName, authorizations$1P as authorizations };
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
declare const authorizations$1O: readonly [{
|
|
2084
|
+
readonly permissions: readonly ["active"];
|
|
2085
|
+
readonly actor: "_coopname";
|
|
2086
|
+
}];
|
|
2087
|
+
/**
|
|
2088
|
+
* Имя действия
|
|
2089
|
+
*/
|
|
2090
|
+
declare const actionName$1O = "disbranches";
|
|
2091
|
+
/**
|
|
2092
|
+
* @interface
|
|
2093
|
+
* @private
|
|
2094
|
+
*/
|
|
2095
|
+
type IDisableBranches = IDisbranches;
|
|
2096
|
+
|
|
2097
|
+
type disableBranches_IDisableBranches = IDisableBranches;
|
|
2098
|
+
declare namespace disableBranches {
|
|
2099
|
+
export { type disableBranches_IDisableBranches as IDisableBranches, actionName$1O as actionName, authorizations$1O as authorizations };
|
|
1846
2100
|
}
|
|
1847
2101
|
|
|
1848
2102
|
/**
|
|
1849
2103
|
* Действие верификации аккаунта
|
|
1850
2104
|
*/
|
|
1851
2105
|
|
|
1852
|
-
declare namespace index$
|
|
1853
|
-
export { addUser as AddUser, changeKey as ChangeKey, createAccount$1 as CreateAccount, deleteCooperative as DeleteCooperative, init$2 as Init, joinCooperative as JoinCooperative, registerCooperative as RegisterCooperative, registerUser as RegisterUser, setCoopStatus as SetCoopStatus, updateAccount as UpdateAccount, updateCoop as UpdateCoop, verificateAccount as VerificateAccount };
|
|
2106
|
+
declare namespace index$J {
|
|
2107
|
+
export { addUser as AddUser, changeKey as ChangeKey, createAccount$1 as CreateAccount, deleteCooperative as DeleteCooperative, disableBranches as DisableBranches, enableBranches as EnableBranches, init$2 as Init, joinCooperative as JoinCooperative, registerCooperative as RegisterCooperative, registerUser as RegisterUser, setCoopStatus as SetCoopStatus, updateAccount as UpdateAccount, updateCoop as UpdateCoop, verificateAccount as VerificateAccount };
|
|
1854
2108
|
}
|
|
1855
2109
|
|
|
1856
2110
|
/**
|
|
@@ -1901,7 +2155,7 @@ declare namespace cooperatives {
|
|
|
1901
2155
|
*
|
|
1902
2156
|
*/
|
|
1903
2157
|
|
|
1904
|
-
declare namespace index$
|
|
2158
|
+
declare namespace index$I {
|
|
1905
2159
|
export { accounts as Accounts, cooperatives as Cooperatives };
|
|
1906
2160
|
}
|
|
1907
2161
|
|
|
@@ -1910,8 +2164,8 @@ declare const contractName$6: {
|
|
|
1910
2164
|
readonly testnet: "regtest22222";
|
|
1911
2165
|
};
|
|
1912
2166
|
|
|
1913
|
-
declare namespace index$
|
|
1914
|
-
export { index$
|
|
2167
|
+
declare namespace index$H {
|
|
2168
|
+
export { index$J as Actions, registrator as Interfaces, index$I as Tables, contractName$6 as contractName };
|
|
1915
2169
|
}
|
|
1916
2170
|
|
|
1917
2171
|
type IAsset$3 = string;
|
|
@@ -1959,14 +2213,14 @@ declare namespace token {
|
|
|
1959
2213
|
export type { token_IAccount as IAccount, IAsset$3 as IAsset, IClose$1 as IClose, ICreate$1 as ICreate, ICurrencyStats$1 as ICurrencyStats, IIssue$1 as IIssue, IName$5 as IName, IOpen$1 as IOpen, IRetire$1 as IRetire, ISymbol$1 as ISymbol, ITransfer$1 as ITransfer };
|
|
1960
2214
|
}
|
|
1961
2215
|
|
|
1962
|
-
declare const authorizations$
|
|
2216
|
+
declare const authorizations$1N: readonly [{
|
|
1963
2217
|
readonly permissions: readonly ["active"];
|
|
1964
2218
|
readonly actor: "_username";
|
|
1965
2219
|
}];
|
|
1966
2220
|
/**
|
|
1967
2221
|
* Имя действия
|
|
1968
2222
|
*/
|
|
1969
|
-
declare const actionName$
|
|
2223
|
+
declare const actionName$1N = "transfer";
|
|
1970
2224
|
/**
|
|
1971
2225
|
* @interface
|
|
1972
2226
|
*/
|
|
@@ -1974,17 +2228,17 @@ type ITransfer = ITransfer$1;
|
|
|
1974
2228
|
|
|
1975
2229
|
type transfer_ITransfer = ITransfer;
|
|
1976
2230
|
declare namespace transfer {
|
|
1977
|
-
export { type transfer_ITransfer as ITransfer, actionName$
|
|
2231
|
+
export { type transfer_ITransfer as ITransfer, actionName$1N as actionName, authorizations$1N as authorizations };
|
|
1978
2232
|
}
|
|
1979
2233
|
|
|
1980
|
-
declare const authorizations$
|
|
2234
|
+
declare const authorizations$1M: readonly [{
|
|
1981
2235
|
readonly permissions: readonly ["active"];
|
|
1982
2236
|
readonly actor: "_username";
|
|
1983
2237
|
}];
|
|
1984
2238
|
/**
|
|
1985
2239
|
* Имя действия
|
|
1986
2240
|
*/
|
|
1987
|
-
declare const actionName$
|
|
2241
|
+
declare const actionName$1M = "open";
|
|
1988
2242
|
/**
|
|
1989
2243
|
* @interface
|
|
1990
2244
|
*/
|
|
@@ -1992,7 +2246,7 @@ type IOpen = IOpen$1;
|
|
|
1992
2246
|
|
|
1993
2247
|
type open_IOpen = IOpen;
|
|
1994
2248
|
declare namespace open {
|
|
1995
|
-
export { type open_IOpen as IOpen, actionName$
|
|
2249
|
+
export { type open_IOpen as IOpen, actionName$1M as actionName, authorizations$1M as authorizations };
|
|
1996
2250
|
}
|
|
1997
2251
|
|
|
1998
2252
|
/**
|
|
@@ -2002,28 +2256,28 @@ type IClose = IClose$1;
|
|
|
2002
2256
|
/**
|
|
2003
2257
|
* Требуется авторизация владельца аккаунта, чей баланс закрывается.
|
|
2004
2258
|
*/
|
|
2005
|
-
declare const authorizations$
|
|
2259
|
+
declare const authorizations$1L: readonly [{
|
|
2006
2260
|
readonly permissions: readonly ["active"];
|
|
2007
2261
|
readonly actor: "_username";
|
|
2008
2262
|
}];
|
|
2009
2263
|
/**
|
|
2010
2264
|
* Имя действия
|
|
2011
2265
|
*/
|
|
2012
|
-
declare const actionName$
|
|
2266
|
+
declare const actionName$1L = "close";
|
|
2013
2267
|
|
|
2014
2268
|
type close_IClose = IClose;
|
|
2015
2269
|
declare namespace close {
|
|
2016
|
-
export { type close_IClose as IClose, actionName$
|
|
2270
|
+
export { type close_IClose as IClose, actionName$1L as actionName, authorizations$1L as authorizations };
|
|
2017
2271
|
}
|
|
2018
2272
|
|
|
2019
|
-
declare const authorizations$
|
|
2273
|
+
declare const authorizations$1K: readonly [{
|
|
2020
2274
|
readonly permissions: readonly ["active"];
|
|
2021
2275
|
readonly actor: "_system";
|
|
2022
2276
|
}];
|
|
2023
2277
|
/**
|
|
2024
2278
|
* Имя действия
|
|
2025
2279
|
*/
|
|
2026
|
-
declare const actionName$
|
|
2280
|
+
declare const actionName$1K = "create";
|
|
2027
2281
|
/**
|
|
2028
2282
|
* @interface
|
|
2029
2283
|
*/
|
|
@@ -2031,20 +2285,20 @@ type ICreate = ICreate$1;
|
|
|
2031
2285
|
|
|
2032
2286
|
type create_ICreate = ICreate;
|
|
2033
2287
|
declare namespace create {
|
|
2034
|
-
export { type create_ICreate as ICreate, actionName$
|
|
2288
|
+
export { type create_ICreate as ICreate, actionName$1K as actionName, authorizations$1K as authorizations };
|
|
2035
2289
|
}
|
|
2036
2290
|
|
|
2037
2291
|
/**
|
|
2038
2292
|
* Для выпуска токенов требуется авторизация учетной записи эмитента, указанная в поле issuer при создании токена.
|
|
2039
2293
|
*/
|
|
2040
|
-
declare const authorizations$
|
|
2294
|
+
declare const authorizations$1J: readonly [{
|
|
2041
2295
|
readonly permissions: readonly ["active"];
|
|
2042
2296
|
readonly actor: "currencyStats.issuer";
|
|
2043
2297
|
}];
|
|
2044
2298
|
/**
|
|
2045
2299
|
* Имя действия
|
|
2046
2300
|
*/
|
|
2047
|
-
declare const actionName$
|
|
2301
|
+
declare const actionName$1J = "issue";
|
|
2048
2302
|
/**
|
|
2049
2303
|
* @interface
|
|
2050
2304
|
*/
|
|
@@ -2052,20 +2306,20 @@ type IIssue = IIssue$1;
|
|
|
2052
2306
|
|
|
2053
2307
|
type issue_IIssue = IIssue;
|
|
2054
2308
|
declare namespace issue {
|
|
2055
|
-
export { type issue_IIssue as IIssue, actionName$
|
|
2309
|
+
export { type issue_IIssue as IIssue, actionName$1J as actionName, authorizations$1J as authorizations };
|
|
2056
2310
|
}
|
|
2057
2311
|
|
|
2058
2312
|
/**
|
|
2059
2313
|
* Для сжигания токенов требуется авторизация учетной записи эмитента, указанная при создании токена.
|
|
2060
2314
|
*/
|
|
2061
|
-
declare const authorizations$
|
|
2315
|
+
declare const authorizations$1I: readonly [{
|
|
2062
2316
|
readonly permissions: readonly ["active"];
|
|
2063
2317
|
readonly actor: "currencyStats.issuer";
|
|
2064
2318
|
}];
|
|
2065
2319
|
/**
|
|
2066
2320
|
* Имя действия
|
|
2067
2321
|
*/
|
|
2068
|
-
declare const actionName$
|
|
2322
|
+
declare const actionName$1I = "retire";
|
|
2069
2323
|
/**
|
|
2070
2324
|
* @interface
|
|
2071
2325
|
*/
|
|
@@ -2073,14 +2327,14 @@ type IRetire = IRetire$1;
|
|
|
2073
2327
|
|
|
2074
2328
|
type retire_IRetire = IRetire;
|
|
2075
2329
|
declare namespace retire {
|
|
2076
|
-
export { type retire_IRetire as IRetire, actionName$
|
|
2330
|
+
export { type retire_IRetire as IRetire, actionName$1I as actionName, authorizations$1I as authorizations };
|
|
2077
2331
|
}
|
|
2078
2332
|
|
|
2079
2333
|
/**
|
|
2080
2334
|
* Действие совершения перевода токенов AXON между аккаунтами.
|
|
2081
2335
|
*/
|
|
2082
2336
|
|
|
2083
|
-
declare namespace index$
|
|
2337
|
+
declare namespace index$G {
|
|
2084
2338
|
export { close as Close, create as Create, issue as Issue, open as Open, retire as Retire, transfer as Transfer };
|
|
2085
2339
|
}
|
|
2086
2340
|
|
|
@@ -2126,7 +2380,7 @@ declare namespace currencyStats {
|
|
|
2126
2380
|
* Таблица содержит информацию о балансе токенов пользователей
|
|
2127
2381
|
*/
|
|
2128
2382
|
|
|
2129
|
-
declare namespace index$
|
|
2383
|
+
declare namespace index$F {
|
|
2130
2384
|
export { accountBalance as AccountBalance, currencyStats as CurrencyStats };
|
|
2131
2385
|
}
|
|
2132
2386
|
|
|
@@ -2135,8 +2389,8 @@ declare const contractName$5: {
|
|
|
2135
2389
|
readonly testnet: "eosio.token";
|
|
2136
2390
|
};
|
|
2137
2391
|
|
|
2138
|
-
declare namespace index$
|
|
2139
|
-
export { index$
|
|
2392
|
+
declare namespace index$E {
|
|
2393
|
+
export { index$G as Actions, token as Interfaces, index$F as Tables, contractName$5 as contractName };
|
|
2140
2394
|
}
|
|
2141
2395
|
|
|
2142
2396
|
type IAsset$2 = string;
|
|
@@ -2318,15 +2572,6 @@ interface ICreateboard$1 {
|
|
|
2318
2572
|
name: string;
|
|
2319
2573
|
description: string;
|
|
2320
2574
|
}
|
|
2321
|
-
interface ICreatebranch {
|
|
2322
|
-
coopname: IName$4;
|
|
2323
|
-
chairman: IName$4;
|
|
2324
|
-
braname: IName$4;
|
|
2325
|
-
name: string;
|
|
2326
|
-
description: string;
|
|
2327
|
-
authorizer: IName$4;
|
|
2328
|
-
trusted: IName$4[];
|
|
2329
|
-
}
|
|
2330
2575
|
interface ICreateprog {
|
|
2331
2576
|
coopname: IName$4;
|
|
2332
2577
|
username: IName$4;
|
|
@@ -2356,6 +2601,8 @@ interface IDecision$1 {
|
|
|
2356
2601
|
authorized_by: IName$4;
|
|
2357
2602
|
authorization: IDocument$1;
|
|
2358
2603
|
created_at: ITimePointSec$4;
|
|
2604
|
+
expired_at: ITimePointSec$4;
|
|
2605
|
+
meta: string;
|
|
2359
2606
|
}
|
|
2360
2607
|
interface IDeclineagree {
|
|
2361
2608
|
coopname: IName$4;
|
|
@@ -2369,11 +2616,6 @@ interface IDeladdress {
|
|
|
2369
2616
|
chairman: IName$4;
|
|
2370
2617
|
address_id: IUint64$2;
|
|
2371
2618
|
}
|
|
2372
|
-
interface IDeletebranch {
|
|
2373
|
-
coopname: IName$4;
|
|
2374
|
-
chairman: IName$4;
|
|
2375
|
-
braname: IName$4;
|
|
2376
|
-
}
|
|
2377
2619
|
interface IDisableprog {
|
|
2378
2620
|
coopname: IName$4;
|
|
2379
2621
|
program_id: IUint64$2;
|
|
@@ -2397,15 +2639,6 @@ interface IEditaddress {
|
|
|
2397
2639
|
address_id: IUint64$2;
|
|
2398
2640
|
data: IAddressData;
|
|
2399
2641
|
}
|
|
2400
|
-
interface IEditbranch {
|
|
2401
|
-
coopname: IName$4;
|
|
2402
|
-
chairman: IName$4;
|
|
2403
|
-
braname: IName$4;
|
|
2404
|
-
name: string;
|
|
2405
|
-
description: string;
|
|
2406
|
-
authorizer: IName$4;
|
|
2407
|
-
trusted: IName$4[];
|
|
2408
|
-
}
|
|
2409
2642
|
interface IEditprog {
|
|
2410
2643
|
coopname: IName$4;
|
|
2411
2644
|
username: IName$4;
|
|
@@ -2423,6 +2656,12 @@ interface IExec$4 {
|
|
|
2423
2656
|
coopname: IName$4;
|
|
2424
2657
|
decision_id: IUint64$2;
|
|
2425
2658
|
}
|
|
2659
|
+
interface IFreedecision {
|
|
2660
|
+
coopname: IName$4;
|
|
2661
|
+
username: IName$4;
|
|
2662
|
+
document: IDocument$1;
|
|
2663
|
+
meta: string;
|
|
2664
|
+
}
|
|
2426
2665
|
interface IFundwithdraw {
|
|
2427
2666
|
coopname: IName$4;
|
|
2428
2667
|
username: IName$4;
|
|
@@ -2434,6 +2673,7 @@ interface IInit$3 {
|
|
|
2434
2673
|
}
|
|
2435
2674
|
interface IJoincoop {
|
|
2436
2675
|
coopname: IName$4;
|
|
2676
|
+
braname: IName$4;
|
|
2437
2677
|
username: IName$4;
|
|
2438
2678
|
document: IDocument$1;
|
|
2439
2679
|
}
|
|
@@ -2442,6 +2682,7 @@ interface IJoincoops {
|
|
|
2442
2682
|
username: IName$4;
|
|
2443
2683
|
is_paid: boolean;
|
|
2444
2684
|
notice: string;
|
|
2685
|
+
braname: IName$4;
|
|
2445
2686
|
}
|
|
2446
2687
|
interface IMakecoagreem {
|
|
2447
2688
|
coopname: IName$4;
|
|
@@ -2507,6 +2748,7 @@ interface IParticipant {
|
|
|
2507
2748
|
is_minimum: boolean;
|
|
2508
2749
|
has_vote: boolean;
|
|
2509
2750
|
type: IName$4;
|
|
2751
|
+
braname: IName$4;
|
|
2510
2752
|
}
|
|
2511
2753
|
interface IProgram$1 {
|
|
2512
2754
|
id: IUint64$2;
|
|
@@ -2551,6 +2793,12 @@ interface IRmstaff {
|
|
|
2551
2793
|
chairman: IName$4;
|
|
2552
2794
|
username: IName$4;
|
|
2553
2795
|
}
|
|
2796
|
+
interface ISelectbranch {
|
|
2797
|
+
coopname: IName$4;
|
|
2798
|
+
username: IName$4;
|
|
2799
|
+
braname: IName$4;
|
|
2800
|
+
document: IDocument$1;
|
|
2801
|
+
}
|
|
2554
2802
|
interface ISetrights {
|
|
2555
2803
|
coopname: IName$4;
|
|
2556
2804
|
chairman: IName$4;
|
|
@@ -2641,15 +2889,13 @@ type soviet_IChange = IChange;
|
|
|
2641
2889
|
type soviet_ICoagreement = ICoagreement;
|
|
2642
2890
|
type soviet_IConfirmagree = IConfirmagree;
|
|
2643
2891
|
type soviet_ICreaddress = ICreaddress;
|
|
2644
|
-
type soviet_ICreatebranch = ICreatebranch;
|
|
2645
2892
|
type soviet_ICreateprog = ICreateprog;
|
|
2646
2893
|
type soviet_IDeclineagree = IDeclineagree;
|
|
2647
2894
|
type soviet_IDeladdress = IDeladdress;
|
|
2648
|
-
type soviet_IDeletebranch = IDeletebranch;
|
|
2649
2895
|
type soviet_IDisableprog = IDisableprog;
|
|
2650
2896
|
type soviet_IEditaddress = IEditaddress;
|
|
2651
|
-
type soviet_IEditbranch = IEditbranch;
|
|
2652
2897
|
type soviet_IEditprog = IEditprog;
|
|
2898
|
+
type soviet_IFreedecision = IFreedecision;
|
|
2653
2899
|
type soviet_IFundwithdraw = IFundwithdraw;
|
|
2654
2900
|
type soviet_IJoincoop = IJoincoop;
|
|
2655
2901
|
type soviet_IJoincoops = IJoincoops;
|
|
@@ -2668,6 +2914,7 @@ type soviet_IRecieved = IRecieved;
|
|
|
2668
2914
|
type soviet_IRegpaid = IRegpaid;
|
|
2669
2915
|
type soviet_IRight = IRight;
|
|
2670
2916
|
type soviet_IRmstaff = IRmstaff;
|
|
2917
|
+
type soviet_ISelectbranch = ISelectbranch;
|
|
2671
2918
|
type soviet_ISetrights = ISetrights;
|
|
2672
2919
|
type soviet_ISndagreement = ISndagreement;
|
|
2673
2920
|
type soviet_IStaff = IStaff;
|
|
@@ -2680,13 +2927,13 @@ type soviet_IVoteagainst = IVoteagainst;
|
|
|
2680
2927
|
type soviet_IVotefor = IVotefor;
|
|
2681
2928
|
type soviet_IWithdraw = IWithdraw;
|
|
2682
2929
|
declare namespace soviet {
|
|
2683
|
-
export type { soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal, IAddress$1 as IAddress, soviet_IAddressData as IAddressData, soviet_IAddstaff as IAddstaff, soviet_IAdduser as IAdduser, IAgreement$1 as IAgreement, IAsset$2 as IAsset, IAuthorize$3 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, soviet_IBlock as IBlock, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelreg as ICancelreg, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, IChecksum256$3 as IChecksum256, soviet_ICoagreement as ICoagreement, soviet_IConfirmagree as IConfirmagree, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, soviet_ICreaddress as ICreaddress, ICreateboard$1 as ICreateboard,
|
|
2930
|
+
export type { soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal, IAddress$1 as IAddress, soviet_IAddressData as IAddressData, soviet_IAddstaff as IAddstaff, soviet_IAdduser as IAdduser, IAgreement$1 as IAgreement, IAsset$2 as IAsset, IAuthorize$3 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, soviet_IBlock as IBlock, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelreg as ICancelreg, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, IChecksum256$3 as IChecksum256, soviet_ICoagreement as ICoagreement, soviet_IConfirmagree as IConfirmagree, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, soviet_ICreaddress as ICreaddress, ICreateboard$1 as ICreateboard, soviet_ICreateprog as ICreateprog, IDecision$1 as IDecision, soviet_IDeclineagree as IDeclineagree, soviet_IDeladdress as IDeladdress, soviet_IDisableprog as IDisableprog, IDisautomate$1 as IDisautomate, IDocument$1 as IDocument, soviet_IEditaddress as IEditaddress, soviet_IEditprog as IEditprog, IExec$4 as IExec, soviet_IFreedecision as IFreedecision, soviet_IFundwithdraw as IFundwithdraw, IInit$3 as IInit, soviet_IJoincoop as IJoincoop, soviet_IJoincoops as IJoincoops, soviet_IMakecoagreem as IMakecoagreem, soviet_IMigrate as IMigrate, IName$4 as IName, soviet_INewact as INewact, soviet_INewbatch as INewbatch, soviet_INewdecision as INewdecision, soviet_INewprogram as INewprogram, soviet_INewresolved as INewresolved, soviet_INewsubmitted as INewsubmitted, soviet_IOnewallet as IOnewallet, soviet_IParticipant as IParticipant, IProgram$1 as IProgram, soviet_IProgwallet as IProgwallet, IPublicKey$2 as IPublicKey, soviet_IRecieved as IRecieved, soviet_IRegpaid as IRegpaid, soviet_IRight as IRight, soviet_IRmstaff as IRmstaff, soviet_ISelectbranch as ISelectbranch, soviet_ISetrights as ISetrights, ISignature$1 as ISignature, soviet_ISndagreement as ISndagreement, soviet_IStaff as IStaff, soviet_ISubbalance as ISubbalance, soviet_ISubprogbal as ISubprogbal, ITimePointSec$4 as ITimePointSec, IUint64$2 as IUint64, soviet_IUnblock as IUnblock, soviet_IUnblockbal as IUnblockbal, soviet_IUpdateboard as IUpdateboard, IValidate$1 as IValidate, soviet_IVoteagainst as IVoteagainst, soviet_IVotefor as IVotefor, soviet_IWithdraw as IWithdraw };
|
|
2684
2931
|
}
|
|
2685
2932
|
|
|
2686
2933
|
/**
|
|
2687
2934
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2688
2935
|
*/
|
|
2689
|
-
declare const authorizations$
|
|
2936
|
+
declare const authorizations$1H: readonly [{
|
|
2690
2937
|
readonly permissions: readonly ["active"];
|
|
2691
2938
|
readonly actor: {
|
|
2692
2939
|
readonly production: "soviet";
|
|
@@ -2696,7 +2943,7 @@ declare const authorizations$1F: readonly [{
|
|
|
2696
2943
|
/**
|
|
2697
2944
|
* Имя действия
|
|
2698
2945
|
*/
|
|
2699
|
-
declare const actionName$
|
|
2946
|
+
declare const actionName$1H = "newsubmitted";
|
|
2700
2947
|
/**
|
|
2701
2948
|
* @interface
|
|
2702
2949
|
* Действие фиксирует документ в реестре перед отправкой в совет.
|
|
@@ -2705,13 +2952,13 @@ type INewSubmitted = INewsubmitted;
|
|
|
2705
2952
|
|
|
2706
2953
|
type newsubmitted_INewSubmitted = INewSubmitted;
|
|
2707
2954
|
declare namespace newsubmitted {
|
|
2708
|
-
export { type newsubmitted_INewSubmitted as INewSubmitted, actionName$
|
|
2955
|
+
export { type newsubmitted_INewSubmitted as INewSubmitted, actionName$1H as actionName, authorizations$1H as authorizations };
|
|
2709
2956
|
}
|
|
2710
2957
|
|
|
2711
2958
|
/**
|
|
2712
2959
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2713
2960
|
*/
|
|
2714
|
-
declare const authorizations$
|
|
2961
|
+
declare const authorizations$1G: readonly [{
|
|
2715
2962
|
readonly permissions: readonly ["active"];
|
|
2716
2963
|
readonly actor: {
|
|
2717
2964
|
readonly production: "soviet";
|
|
@@ -2721,7 +2968,7 @@ declare const authorizations$1E: readonly [{
|
|
|
2721
2968
|
/**
|
|
2722
2969
|
* Имя действия
|
|
2723
2970
|
*/
|
|
2724
|
-
declare const actionName$
|
|
2971
|
+
declare const actionName$1G = "newbatch";
|
|
2725
2972
|
/**
|
|
2726
2973
|
* @interface
|
|
2727
2974
|
* Действие фиксирует связанную группу подписанных документов, которые отправляются в совет на голосование.
|
|
@@ -2730,13 +2977,13 @@ type INewBatch = INewbatch;
|
|
|
2730
2977
|
|
|
2731
2978
|
type newbatch_INewBatch = INewBatch;
|
|
2732
2979
|
declare namespace newbatch {
|
|
2733
|
-
export { type newbatch_INewBatch as INewBatch, actionName$
|
|
2980
|
+
export { type newbatch_INewBatch as INewBatch, actionName$1G as actionName, authorizations$1G as authorizations };
|
|
2734
2981
|
}
|
|
2735
2982
|
|
|
2736
2983
|
/**
|
|
2737
2984
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2738
2985
|
*/
|
|
2739
|
-
declare const authorizations$
|
|
2986
|
+
declare const authorizations$1F: readonly [{
|
|
2740
2987
|
readonly permissions: readonly ["active"];
|
|
2741
2988
|
readonly actor: {
|
|
2742
2989
|
readonly production: "soviet";
|
|
@@ -2746,7 +2993,7 @@ declare const authorizations$1D: readonly [{
|
|
|
2746
2993
|
/**
|
|
2747
2994
|
* Имя действия
|
|
2748
2995
|
*/
|
|
2749
|
-
declare const actionName$
|
|
2996
|
+
declare const actionName$1F = "newresolved";
|
|
2750
2997
|
/**
|
|
2751
2998
|
* @interface
|
|
2752
2999
|
* Действие фиксирует принятое заявление в реестре после принятия решения советом кооператива.
|
|
@@ -2756,13 +3003,13 @@ type INewResolved = INewresolved;
|
|
|
2756
3003
|
|
|
2757
3004
|
type newresolved_INewResolved = INewResolved;
|
|
2758
3005
|
declare namespace newresolved {
|
|
2759
|
-
export { type newresolved_INewResolved as INewResolved, actionName$
|
|
3006
|
+
export { type newresolved_INewResolved as INewResolved, actionName$1F as actionName, authorizations$1F as authorizations };
|
|
2760
3007
|
}
|
|
2761
3008
|
|
|
2762
3009
|
/**
|
|
2763
3010
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2764
3011
|
*/
|
|
2765
|
-
declare const authorizations$
|
|
3012
|
+
declare const authorizations$1E: readonly [{
|
|
2766
3013
|
readonly permissions: readonly ["active"];
|
|
2767
3014
|
readonly actor: {
|
|
2768
3015
|
readonly production: "soviet";
|
|
@@ -2772,7 +3019,7 @@ declare const authorizations$1C: readonly [{
|
|
|
2772
3019
|
/**
|
|
2773
3020
|
* Имя действия
|
|
2774
3021
|
*/
|
|
2775
|
-
declare const actionName$
|
|
3022
|
+
declare const actionName$1E = "newact";
|
|
2776
3023
|
/**
|
|
2777
3024
|
* @interface
|
|
2778
3025
|
* Действие фиксирует в реестре подписанные акты приёма-передачи имущества.
|
|
@@ -2781,13 +3028,13 @@ type INewAct = INewact;
|
|
|
2781
3028
|
|
|
2782
3029
|
type newact_INewAct = INewAct;
|
|
2783
3030
|
declare namespace newact {
|
|
2784
|
-
export { type newact_INewAct as INewAct, actionName$
|
|
3031
|
+
export { type newact_INewAct as INewAct, actionName$1E as actionName, authorizations$1E as authorizations };
|
|
2785
3032
|
}
|
|
2786
3033
|
|
|
2787
3034
|
/**
|
|
2788
3035
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2789
3036
|
*/
|
|
2790
|
-
declare const authorizations$
|
|
3037
|
+
declare const authorizations$1D: readonly [{
|
|
2791
3038
|
readonly permissions: readonly ["active"];
|
|
2792
3039
|
readonly actor: {
|
|
2793
3040
|
readonly production: "soviet";
|
|
@@ -2797,7 +3044,7 @@ declare const authorizations$1B: readonly [{
|
|
|
2797
3044
|
/**
|
|
2798
3045
|
* Имя действия
|
|
2799
3046
|
*/
|
|
2800
|
-
declare const actionName$
|
|
3047
|
+
declare const actionName$1D = "newdecision";
|
|
2801
3048
|
/**
|
|
2802
3049
|
* @interface
|
|
2803
3050
|
* Действие фиксирует в реестре принятое решение совета.
|
|
@@ -2806,13 +3053,13 @@ type INewDecision = INewdecision;
|
|
|
2806
3053
|
|
|
2807
3054
|
type newdecision_INewDecision = INewDecision;
|
|
2808
3055
|
declare namespace newdecision {
|
|
2809
|
-
export { type newdecision_INewDecision as INewDecision, actionName$
|
|
3056
|
+
export { type newdecision_INewDecision as INewDecision, actionName$1D as actionName, authorizations$1D as authorizations };
|
|
2810
3057
|
}
|
|
2811
3058
|
|
|
2812
3059
|
/**
|
|
2813
3060
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2814
3061
|
*/
|
|
2815
|
-
declare const authorizations$
|
|
3062
|
+
declare const authorizations$1C: readonly [{
|
|
2816
3063
|
readonly permissions: readonly ["active"];
|
|
2817
3064
|
readonly actor: {
|
|
2818
3065
|
readonly production: "soviet";
|
|
@@ -2822,7 +3069,7 @@ declare const authorizations$1A: readonly [{
|
|
|
2822
3069
|
/**
|
|
2823
3070
|
* Имя действия
|
|
2824
3071
|
*/
|
|
2825
|
-
declare const actionName$
|
|
3072
|
+
declare const actionName$1C = "newprogram";
|
|
2826
3073
|
/**
|
|
2827
3074
|
* @interface
|
|
2828
3075
|
* Действие фиксирует созданную программу после создания и возвращает её идентификатор
|
|
@@ -2831,7 +3078,7 @@ type INewProgram = INewprogram;
|
|
|
2831
3078
|
|
|
2832
3079
|
type newprogram_INewProgram = INewProgram;
|
|
2833
3080
|
declare namespace newprogram {
|
|
2834
|
-
export { type newprogram_INewProgram as INewProgram, actionName$
|
|
3081
|
+
export { type newprogram_INewProgram as INewProgram, actionName$1C as actionName, authorizations$1C as authorizations };
|
|
2835
3082
|
}
|
|
2836
3083
|
|
|
2837
3084
|
/**
|
|
@@ -2839,21 +3086,21 @@ declare namespace newprogram {
|
|
|
2839
3086
|
* @private
|
|
2840
3087
|
*/
|
|
2841
3088
|
|
|
2842
|
-
declare namespace index$
|
|
3089
|
+
declare namespace index$D {
|
|
2843
3090
|
export { newact as NewAct, newbatch as NewBatch, newdecision as NewDecision, newprogram as NewProgram, newresolved as NewResolved, newsubmitted as NewSubmitted };
|
|
2844
3091
|
}
|
|
2845
3092
|
|
|
2846
3093
|
/**
|
|
2847
3094
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
2848
3095
|
*/
|
|
2849
|
-
declare const authorizations$
|
|
3096
|
+
declare const authorizations$1B: readonly [{
|
|
2850
3097
|
readonly permissions: readonly ["active"];
|
|
2851
3098
|
readonly actor: "_chairman";
|
|
2852
3099
|
}];
|
|
2853
3100
|
/**
|
|
2854
3101
|
* Имя действия
|
|
2855
3102
|
*/
|
|
2856
|
-
declare const actionName$
|
|
3103
|
+
declare const actionName$1B = "creaddress";
|
|
2857
3104
|
/**
|
|
2858
3105
|
* @interface
|
|
2859
3106
|
* Действие создаёт новый адрес.
|
|
@@ -2862,20 +3109,20 @@ type ICreateAddress = ICreaddress;
|
|
|
2862
3109
|
|
|
2863
3110
|
type createAddress_ICreateAddress = ICreateAddress;
|
|
2864
3111
|
declare namespace createAddress {
|
|
2865
|
-
export { type createAddress_ICreateAddress as ICreateAddress, actionName$
|
|
3112
|
+
export { type createAddress_ICreateAddress as ICreateAddress, actionName$1B as actionName, authorizations$1B as authorizations };
|
|
2866
3113
|
}
|
|
2867
3114
|
|
|
2868
3115
|
/**
|
|
2869
3116
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
2870
3117
|
*/
|
|
2871
|
-
declare const authorizations$
|
|
3118
|
+
declare const authorizations$1A: readonly [{
|
|
2872
3119
|
readonly permissions: readonly ["active"];
|
|
2873
3120
|
readonly actor: "_chairman";
|
|
2874
3121
|
}];
|
|
2875
3122
|
/**
|
|
2876
3123
|
* Имя действия
|
|
2877
3124
|
*/
|
|
2878
|
-
declare const actionName$
|
|
3125
|
+
declare const actionName$1A = "deladdress";
|
|
2879
3126
|
/**
|
|
2880
3127
|
* @interface
|
|
2881
3128
|
* Действие удаляет адресс.
|
|
@@ -2884,20 +3131,20 @@ type IDeleteAddress = IDeladdress;
|
|
|
2884
3131
|
|
|
2885
3132
|
type deleteAddress_IDeleteAddress = IDeleteAddress;
|
|
2886
3133
|
declare namespace deleteAddress {
|
|
2887
|
-
export { type deleteAddress_IDeleteAddress as IDeleteAddress, actionName$
|
|
3134
|
+
export { type deleteAddress_IDeleteAddress as IDeleteAddress, actionName$1A as actionName, authorizations$1A as authorizations };
|
|
2888
3135
|
}
|
|
2889
3136
|
|
|
2890
3137
|
/**
|
|
2891
3138
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
2892
3139
|
*/
|
|
2893
|
-
declare const authorizations$
|
|
3140
|
+
declare const authorizations$1z: readonly [{
|
|
2894
3141
|
readonly permissions: readonly ["active"];
|
|
2895
3142
|
readonly actor: "_chairman";
|
|
2896
3143
|
}];
|
|
2897
3144
|
/**
|
|
2898
3145
|
* Имя действия
|
|
2899
3146
|
*/
|
|
2900
|
-
declare const actionName$
|
|
3147
|
+
declare const actionName$1z = "editaddress";
|
|
2901
3148
|
/**
|
|
2902
3149
|
* @interface
|
|
2903
3150
|
* Действие редактирует адресс.
|
|
@@ -2906,21 +3153,21 @@ type IEditAddress = IEditaddress;
|
|
|
2906
3153
|
|
|
2907
3154
|
type editAddress_IEditAddress = IEditAddress;
|
|
2908
3155
|
declare namespace editAddress {
|
|
2909
|
-
export { type editAddress_IEditAddress as IEditAddress, actionName$
|
|
3156
|
+
export { type editAddress_IEditAddress as IEditAddress, actionName$1z as actionName, authorizations$1z as authorizations };
|
|
2910
3157
|
}
|
|
2911
3158
|
|
|
2912
3159
|
/**
|
|
2913
3160
|
* Действие создаёт новый адрес.
|
|
2914
3161
|
*/
|
|
2915
3162
|
|
|
2916
|
-
declare namespace index$
|
|
3163
|
+
declare namespace index$C {
|
|
2917
3164
|
export { createAddress as CreateAddress, deleteAddress as DeleteAddress, editAddress as EditAddress };
|
|
2918
3165
|
}
|
|
2919
3166
|
|
|
2920
3167
|
/**
|
|
2921
3168
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2922
3169
|
*/
|
|
2923
|
-
declare const authorizations$
|
|
3170
|
+
declare const authorizations$1y: readonly [{
|
|
2924
3171
|
readonly permissions: readonly ["active"];
|
|
2925
3172
|
readonly actor: {
|
|
2926
3173
|
readonly production: "soviet";
|
|
@@ -2942,7 +3189,7 @@ declare const authorizations$1w: readonly [{
|
|
|
2942
3189
|
/**
|
|
2943
3190
|
* Имя действия
|
|
2944
3191
|
*/
|
|
2945
|
-
declare const actionName$
|
|
3192
|
+
declare const actionName$1y = "addbalance";
|
|
2946
3193
|
/**
|
|
2947
3194
|
* @interface
|
|
2948
3195
|
* Действие добавляет баланс токенов учёта паевого взноса в кошелёк пользователя.
|
|
@@ -2952,13 +3199,13 @@ type IAddBalance = IAddbalance;
|
|
|
2952
3199
|
|
|
2953
3200
|
type addBalance_IAddBalance = IAddBalance;
|
|
2954
3201
|
declare namespace addBalance {
|
|
2955
|
-
export { type addBalance_IAddBalance as IAddBalance, actionName$
|
|
3202
|
+
export { type addBalance_IAddBalance as IAddBalance, actionName$1y as actionName, authorizations$1y as authorizations };
|
|
2956
3203
|
}
|
|
2957
3204
|
|
|
2958
3205
|
/**
|
|
2959
3206
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2960
3207
|
*/
|
|
2961
|
-
declare const authorizations$
|
|
3208
|
+
declare const authorizations$1x: readonly [{
|
|
2962
3209
|
readonly permissions: readonly ["active"];
|
|
2963
3210
|
readonly actor: {
|
|
2964
3211
|
readonly production: "soviet";
|
|
@@ -2980,7 +3227,7 @@ declare const authorizations$1v: readonly [{
|
|
|
2980
3227
|
/**
|
|
2981
3228
|
* Имя действия
|
|
2982
3229
|
*/
|
|
2983
|
-
declare const actionName$
|
|
3230
|
+
declare const actionName$1x = "subbalance";
|
|
2984
3231
|
/**
|
|
2985
3232
|
* @interface
|
|
2986
3233
|
* @private
|
|
@@ -2990,13 +3237,13 @@ type ISubBalance = ISubbalance;
|
|
|
2990
3237
|
|
|
2991
3238
|
type subBalance_ISubBalance = ISubBalance;
|
|
2992
3239
|
declare namespace subBalance {
|
|
2993
|
-
export { type subBalance_ISubBalance as ISubBalance, actionName$
|
|
3240
|
+
export { type subBalance_ISubBalance as ISubBalance, actionName$1x as actionName, authorizations$1x as authorizations };
|
|
2994
3241
|
}
|
|
2995
3242
|
|
|
2996
3243
|
/**
|
|
2997
3244
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2998
3245
|
*/
|
|
2999
|
-
declare const authorizations$
|
|
3246
|
+
declare const authorizations$1w: readonly [{
|
|
3000
3247
|
readonly permissions: readonly ["active"];
|
|
3001
3248
|
readonly actor: {
|
|
3002
3249
|
readonly production: "soviet";
|
|
@@ -3018,7 +3265,7 @@ declare const authorizations$1u: readonly [{
|
|
|
3018
3265
|
/**
|
|
3019
3266
|
* Имя действия
|
|
3020
3267
|
*/
|
|
3021
|
-
declare const actionName$
|
|
3268
|
+
declare const actionName$1w = "blockbal";
|
|
3022
3269
|
/**
|
|
3023
3270
|
* @interface
|
|
3024
3271
|
* @private
|
|
@@ -3028,13 +3275,13 @@ type IBlockBalance = IBlockbal;
|
|
|
3028
3275
|
|
|
3029
3276
|
type blockBalance_IBlockBalance = IBlockBalance;
|
|
3030
3277
|
declare namespace blockBalance {
|
|
3031
|
-
export { type blockBalance_IBlockBalance as IBlockBalance, actionName$
|
|
3278
|
+
export { type blockBalance_IBlockBalance as IBlockBalance, actionName$1w as actionName, authorizations$1w as authorizations };
|
|
3032
3279
|
}
|
|
3033
3280
|
|
|
3034
3281
|
/**
|
|
3035
3282
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
3036
3283
|
*/
|
|
3037
|
-
declare const authorizations$
|
|
3284
|
+
declare const authorizations$1v: readonly [{
|
|
3038
3285
|
readonly permissions: readonly ["active"];
|
|
3039
3286
|
readonly actor: {
|
|
3040
3287
|
readonly production: "soviet";
|
|
@@ -3056,7 +3303,7 @@ declare const authorizations$1t: readonly [{
|
|
|
3056
3303
|
/**
|
|
3057
3304
|
* Имя действия
|
|
3058
3305
|
*/
|
|
3059
|
-
declare const actionName$
|
|
3306
|
+
declare const actionName$1v = "unblockbal";
|
|
3060
3307
|
/**
|
|
3061
3308
|
* @interface
|
|
3062
3309
|
* @private
|
|
@@ -3066,13 +3313,13 @@ type IUnblockBal = IUnblockbal;
|
|
|
3066
3313
|
|
|
3067
3314
|
type unblockBalance_IUnblockBal = IUnblockBal;
|
|
3068
3315
|
declare namespace unblockBalance {
|
|
3069
|
-
export { type unblockBalance_IUnblockBal as IUnblockBal, actionName$
|
|
3316
|
+
export { type unblockBalance_IUnblockBal as IUnblockBal, actionName$1v as actionName, authorizations$1v as authorizations };
|
|
3070
3317
|
}
|
|
3071
3318
|
|
|
3072
3319
|
/**
|
|
3073
3320
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета} или {@link ContractNames._marketplace | маркетплейса}.
|
|
3074
3321
|
*/
|
|
3075
|
-
declare const authorizations$
|
|
3322
|
+
declare const authorizations$1u: readonly [{
|
|
3076
3323
|
readonly permissions: readonly ["active"];
|
|
3077
3324
|
readonly actor: {
|
|
3078
3325
|
readonly production: "soviet";
|
|
@@ -3088,7 +3335,7 @@ declare const authorizations$1s: readonly [{
|
|
|
3088
3335
|
/**
|
|
3089
3336
|
* Имя действия
|
|
3090
3337
|
*/
|
|
3091
|
-
declare const actionName$
|
|
3338
|
+
declare const actionName$1u = "addprogbal";
|
|
3092
3339
|
/**
|
|
3093
3340
|
* @interface
|
|
3094
3341
|
* @private
|
|
@@ -3098,13 +3345,13 @@ type IAddProgramBalance = IAddprogbal;
|
|
|
3098
3345
|
|
|
3099
3346
|
type addProgramBalance_IAddProgramBalance = IAddProgramBalance;
|
|
3100
3347
|
declare namespace addProgramBalance {
|
|
3101
|
-
export { type addProgramBalance_IAddProgramBalance as IAddProgramBalance, actionName$
|
|
3348
|
+
export { type addProgramBalance_IAddProgramBalance as IAddProgramBalance, actionName$1u as actionName, authorizations$1u as authorizations };
|
|
3102
3349
|
}
|
|
3103
3350
|
|
|
3104
3351
|
/**
|
|
3105
3352
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета} или {@link ContractNames._marketplace | маркетплейса}.
|
|
3106
3353
|
*/
|
|
3107
|
-
declare const authorizations$
|
|
3354
|
+
declare const authorizations$1t: readonly [{
|
|
3108
3355
|
readonly permissions: readonly ["active"];
|
|
3109
3356
|
readonly actor: {
|
|
3110
3357
|
readonly production: "soviet";
|
|
@@ -3120,7 +3367,7 @@ declare const authorizations$1r: readonly [{
|
|
|
3120
3367
|
/**
|
|
3121
3368
|
* Имя действия
|
|
3122
3369
|
*/
|
|
3123
|
-
declare const actionName$
|
|
3370
|
+
declare const actionName$1t = "subprogbal";
|
|
3124
3371
|
/**
|
|
3125
3372
|
* @interface
|
|
3126
3373
|
* @private
|
|
@@ -3130,7 +3377,7 @@ type ISubProgramBalance = ISubprogbal;
|
|
|
3130
3377
|
|
|
3131
3378
|
type subProgramBalance_ISubProgramBalance = ISubProgramBalance;
|
|
3132
3379
|
declare namespace subProgramBalance {
|
|
3133
|
-
export { type subProgramBalance_ISubProgramBalance as ISubProgramBalance, actionName$
|
|
3380
|
+
export { type subProgramBalance_ISubProgramBalance as ISubProgramBalance, actionName$1t as actionName, authorizations$1t as authorizations };
|
|
3134
3381
|
}
|
|
3135
3382
|
|
|
3136
3383
|
/**
|
|
@@ -3138,21 +3385,21 @@ declare namespace subProgramBalance {
|
|
|
3138
3385
|
* @private
|
|
3139
3386
|
*/
|
|
3140
3387
|
|
|
3141
|
-
declare namespace index$
|
|
3388
|
+
declare namespace index$B {
|
|
3142
3389
|
export { addBalance as AddBalance, addProgramBalance as AddProgramBalance, blockBalance as BlockBalance, subBalance as SubBalance, subProgramBalance as SubProgramBalance, unblockBalance as UnblockBalance };
|
|
3143
3390
|
}
|
|
3144
3391
|
|
|
3145
3392
|
/**
|
|
3146
3393
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3147
3394
|
*/
|
|
3148
|
-
declare const authorizations$
|
|
3395
|
+
declare const authorizations$1s: readonly [{
|
|
3149
3396
|
readonly permissions: readonly ["active"];
|
|
3150
3397
|
readonly actor: "_chairman";
|
|
3151
3398
|
}];
|
|
3152
3399
|
/**
|
|
3153
3400
|
* Имя действия
|
|
3154
3401
|
*/
|
|
3155
|
-
declare const actionName$
|
|
3402
|
+
declare const actionName$1s = "createprog";
|
|
3156
3403
|
/**
|
|
3157
3404
|
* @interface
|
|
3158
3405
|
* Действие редактирует целевую потребительскую программу.
|
|
@@ -3161,20 +3408,20 @@ type ICreateProgram = ICreateprog;
|
|
|
3161
3408
|
|
|
3162
3409
|
type createProgram_ICreateProgram = ICreateProgram;
|
|
3163
3410
|
declare namespace createProgram {
|
|
3164
|
-
export { type createProgram_ICreateProgram as ICreateProgram, actionName$
|
|
3411
|
+
export { type createProgram_ICreateProgram as ICreateProgram, actionName$1s as actionName, authorizations$1s as authorizations };
|
|
3165
3412
|
}
|
|
3166
3413
|
|
|
3167
3414
|
/**
|
|
3168
3415
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3169
3416
|
*/
|
|
3170
|
-
declare const authorizations$
|
|
3417
|
+
declare const authorizations$1r: readonly [{
|
|
3171
3418
|
readonly permissions: readonly ["active"];
|
|
3172
3419
|
readonly actor: "_chairman";
|
|
3173
3420
|
}];
|
|
3174
3421
|
/**
|
|
3175
3422
|
* Имя действия
|
|
3176
3423
|
*/
|
|
3177
|
-
declare const actionName$
|
|
3424
|
+
declare const actionName$1r = "editprog";
|
|
3178
3425
|
/**
|
|
3179
3426
|
* @interface
|
|
3180
3427
|
* Действие редактирует целевую потребительскую программу маркетплейса.
|
|
@@ -3183,20 +3430,20 @@ type IEditMarketProgram = IEditprog;
|
|
|
3183
3430
|
|
|
3184
3431
|
type editProgram_IEditMarketProgram = IEditMarketProgram;
|
|
3185
3432
|
declare namespace editProgram {
|
|
3186
|
-
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$
|
|
3433
|
+
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$1r as actionName, authorizations$1r as authorizations };
|
|
3187
3434
|
}
|
|
3188
3435
|
|
|
3189
3436
|
/**
|
|
3190
3437
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3191
3438
|
*/
|
|
3192
|
-
declare const authorizations$
|
|
3439
|
+
declare const authorizations$1q: readonly [{
|
|
3193
3440
|
readonly permissions: readonly ["active"];
|
|
3194
3441
|
readonly actor: "_chairman";
|
|
3195
3442
|
}];
|
|
3196
3443
|
/**
|
|
3197
3444
|
* Имя действия
|
|
3198
3445
|
*/
|
|
3199
|
-
declare const actionName$
|
|
3446
|
+
declare const actionName$1q = "disableprog";
|
|
3200
3447
|
/**
|
|
3201
3448
|
* @interface
|
|
3202
3449
|
* Действие отключает целевую потребительскую программу маркетплейса.
|
|
@@ -3205,28 +3452,28 @@ type IDisableMarketProgram = IDisableprog;
|
|
|
3205
3452
|
|
|
3206
3453
|
type disableProgram_IDisableMarketProgram = IDisableMarketProgram;
|
|
3207
3454
|
declare namespace disableProgram {
|
|
3208
|
-
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$
|
|
3455
|
+
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$1q as actionName, authorizations$1q as authorizations };
|
|
3209
3456
|
}
|
|
3210
3457
|
|
|
3211
3458
|
/**
|
|
3212
3459
|
* Действие создаёт целевую потребительскую маркетплейса.
|
|
3213
3460
|
*/
|
|
3214
3461
|
|
|
3215
|
-
declare namespace index$
|
|
3462
|
+
declare namespace index$A {
|
|
3216
3463
|
export { createProgram as CreateProgram, disableProgram as DisableProgram, editProgram as EditProgram };
|
|
3217
3464
|
}
|
|
3218
3465
|
|
|
3219
3466
|
/**
|
|
3220
3467
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3221
3468
|
*/
|
|
3222
|
-
declare const authorizations$
|
|
3469
|
+
declare const authorizations$1p: readonly [{
|
|
3223
3470
|
readonly permissions: readonly ["active"];
|
|
3224
3471
|
readonly actor: "_member";
|
|
3225
3472
|
}];
|
|
3226
3473
|
/**
|
|
3227
3474
|
* Имя действия
|
|
3228
3475
|
*/
|
|
3229
|
-
declare const actionName$
|
|
3476
|
+
declare const actionName$1p = "voteagainst";
|
|
3230
3477
|
/**
|
|
3231
3478
|
* @interface
|
|
3232
3479
|
* Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
|
|
@@ -3234,20 +3481,20 @@ declare const actionName$1n = "voteagainst";
|
|
|
3234
3481
|
type IVoteAgainstDecision$1 = IVoteagainst;
|
|
3235
3482
|
|
|
3236
3483
|
declare namespace voteAgainst {
|
|
3237
|
-
export { type IVoteAgainstDecision$1 as IVoteAgainstDecision, actionName$
|
|
3484
|
+
export { type IVoteAgainstDecision$1 as IVoteAgainstDecision, actionName$1p as actionName, authorizations$1p as authorizations };
|
|
3238
3485
|
}
|
|
3239
3486
|
|
|
3240
3487
|
/**
|
|
3241
3488
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3242
3489
|
*/
|
|
3243
|
-
declare const authorizations$
|
|
3490
|
+
declare const authorizations$1o: readonly [{
|
|
3244
3491
|
readonly permissions: readonly ["active"];
|
|
3245
3492
|
readonly actor: "_member";
|
|
3246
3493
|
}];
|
|
3247
3494
|
/**
|
|
3248
3495
|
* Имя действия
|
|
3249
3496
|
*/
|
|
3250
|
-
declare const actionName$
|
|
3497
|
+
declare const actionName$1o = "votefor";
|
|
3251
3498
|
/**
|
|
3252
3499
|
* @interface
|
|
3253
3500
|
* Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
|
|
@@ -3256,20 +3503,20 @@ type IVoteForDecision = IVotefor;
|
|
|
3256
3503
|
|
|
3257
3504
|
type voteFor_IVoteForDecision = IVoteForDecision;
|
|
3258
3505
|
declare namespace voteFor {
|
|
3259
|
-
export { type voteFor_IVoteForDecision as IVoteForDecision, actionName$
|
|
3506
|
+
export { type voteFor_IVoteForDecision as IVoteForDecision, actionName$1o as actionName, authorizations$1o as authorizations };
|
|
3260
3507
|
}
|
|
3261
3508
|
|
|
3262
3509
|
/**
|
|
3263
3510
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3264
3511
|
*/
|
|
3265
|
-
declare const authorizations$
|
|
3512
|
+
declare const authorizations$1n: readonly [{
|
|
3266
3513
|
readonly permissions: readonly ["active"];
|
|
3267
3514
|
readonly actor: "_member";
|
|
3268
3515
|
}];
|
|
3269
3516
|
/**
|
|
3270
3517
|
* Имя действия
|
|
3271
3518
|
*/
|
|
3272
|
-
declare const actionName$
|
|
3519
|
+
declare const actionName$1n = "cancelvote";
|
|
3273
3520
|
/**
|
|
3274
3521
|
* @interface
|
|
3275
3522
|
* Принимает отмену голоса. Метод позволяет члену совета отменить свой голос, если решение еще не принято.
|
|
@@ -3278,20 +3525,20 @@ type IVoteAgainstDecision = IVoteagainst;
|
|
|
3278
3525
|
|
|
3279
3526
|
type cancelVote_IVoteAgainstDecision = IVoteAgainstDecision;
|
|
3280
3527
|
declare namespace cancelVote {
|
|
3281
|
-
export { type cancelVote_IVoteAgainstDecision as IVoteAgainstDecision, actionName$
|
|
3528
|
+
export { type cancelVote_IVoteAgainstDecision as IVoteAgainstDecision, actionName$1n as actionName, authorizations$1n as authorizations };
|
|
3282
3529
|
}
|
|
3283
3530
|
|
|
3284
3531
|
/**
|
|
3285
3532
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3286
3533
|
*/
|
|
3287
|
-
declare const authorizations$
|
|
3534
|
+
declare const authorizations$1m: readonly [{
|
|
3288
3535
|
readonly permissions: readonly ["active"];
|
|
3289
3536
|
readonly actor: "_chairman";
|
|
3290
3537
|
}];
|
|
3291
3538
|
/**
|
|
3292
3539
|
* Имя действия
|
|
3293
3540
|
*/
|
|
3294
|
-
declare const actionName$
|
|
3541
|
+
declare const actionName$1m = "authorize";
|
|
3295
3542
|
/**
|
|
3296
3543
|
* @interface
|
|
3297
3544
|
* Действие утверждения принятого советом решения.
|
|
@@ -3299,20 +3546,20 @@ declare const actionName$1k = "authorize";
|
|
|
3299
3546
|
type IAuthorize$2 = IAuthorize$3;
|
|
3300
3547
|
|
|
3301
3548
|
declare namespace authorize$1 {
|
|
3302
|
-
export { type IAuthorize$2 as IAuthorize, actionName$
|
|
3549
|
+
export { type IAuthorize$2 as IAuthorize, actionName$1m as actionName, authorizations$1m as authorizations };
|
|
3303
3550
|
}
|
|
3304
3551
|
|
|
3305
3552
|
/**
|
|
3306
3553
|
* Действие выполняется за подписью любого {@link Actors._username | пользователя}.
|
|
3307
3554
|
*/
|
|
3308
|
-
declare const authorizations$
|
|
3555
|
+
declare const authorizations$1l: readonly [{
|
|
3309
3556
|
readonly permissions: readonly ["active"];
|
|
3310
3557
|
readonly actor: "_username";
|
|
3311
3558
|
}];
|
|
3312
3559
|
/**
|
|
3313
3560
|
* Имя действия
|
|
3314
3561
|
*/
|
|
3315
|
-
declare const actionName$
|
|
3562
|
+
declare const actionName$1l = "exec";
|
|
3316
3563
|
/**
|
|
3317
3564
|
* @interface
|
|
3318
3565
|
* Действие исполнения принятого решения.
|
|
@@ -3324,13 +3571,13 @@ declare const actionName$1j = "exec";
|
|
|
3324
3571
|
type IExec$3 = IExec$4;
|
|
3325
3572
|
|
|
3326
3573
|
declare namespace exec$1 {
|
|
3327
|
-
export { type IExec$3 as IExec, actionName$
|
|
3574
|
+
export { type IExec$3 as IExec, actionName$1l as actionName, authorizations$1l as authorizations };
|
|
3328
3575
|
}
|
|
3329
3576
|
|
|
3330
3577
|
/**
|
|
3331
3578
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._marketplace | маркетплейса}.
|
|
3332
3579
|
*/
|
|
3333
|
-
declare const authorizations$
|
|
3580
|
+
declare const authorizations$1k: readonly [{
|
|
3334
3581
|
readonly permissions: readonly ["active"];
|
|
3335
3582
|
readonly actor: {
|
|
3336
3583
|
readonly production: "marketplace";
|
|
@@ -3340,7 +3587,7 @@ declare const authorizations$1i: readonly [{
|
|
|
3340
3587
|
/**
|
|
3341
3588
|
* Имя действия
|
|
3342
3589
|
*/
|
|
3343
|
-
declare const actionName$
|
|
3590
|
+
declare const actionName$1k = "change";
|
|
3344
3591
|
/**
|
|
3345
3592
|
* @interface
|
|
3346
3593
|
* Действие поставляет в совет на голосование заявления на взнос и возврат взноса двух пайщиков целевой потребительской программы маркетплейса.
|
|
@@ -3350,13 +3597,13 @@ type IMarketDecision = IChange;
|
|
|
3350
3597
|
|
|
3351
3598
|
type marketDecision_IMarketDecision = IMarketDecision;
|
|
3352
3599
|
declare namespace marketDecision {
|
|
3353
|
-
export { type marketDecision_IMarketDecision as IMarketDecision, actionName$
|
|
3600
|
+
export { type marketDecision_IMarketDecision as IMarketDecision, actionName$1k as actionName, authorizations$1k as authorizations };
|
|
3354
3601
|
}
|
|
3355
3602
|
|
|
3356
3603
|
/**
|
|
3357
3604
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._gateway | шлюза}.
|
|
3358
3605
|
*/
|
|
3359
|
-
declare const authorizations$
|
|
3606
|
+
declare const authorizations$1j: readonly [{
|
|
3360
3607
|
readonly permissions: readonly ["active"];
|
|
3361
3608
|
readonly actor: {
|
|
3362
3609
|
readonly production: "gateway";
|
|
@@ -3366,7 +3613,7 @@ declare const authorizations$1h: readonly [{
|
|
|
3366
3613
|
/**
|
|
3367
3614
|
* Имя действия
|
|
3368
3615
|
*/
|
|
3369
|
-
declare const actionName$
|
|
3616
|
+
declare const actionName$1j = "withdraw";
|
|
3370
3617
|
/**
|
|
3371
3618
|
* @interface
|
|
3372
3619
|
* Действие поставляет в совет на голосование заявление на возврат паевого взноса.
|
|
@@ -3376,13 +3623,13 @@ type IWithdrawDecision = IWithdraw;
|
|
|
3376
3623
|
|
|
3377
3624
|
type withdrawDecision_IWithdrawDecision = IWithdrawDecision;
|
|
3378
3625
|
declare namespace withdrawDecision {
|
|
3379
|
-
export { type withdrawDecision_IWithdrawDecision as IWithdrawDecision, actionName$
|
|
3626
|
+
export { type withdrawDecision_IWithdrawDecision as IWithdrawDecision, actionName$1j as actionName, authorizations$1j as authorizations };
|
|
3380
3627
|
}
|
|
3381
3628
|
|
|
3382
3629
|
/**
|
|
3383
3630
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._fund | фондов}.
|
|
3384
3631
|
*/
|
|
3385
|
-
declare const authorizations$
|
|
3632
|
+
declare const authorizations$1i: readonly [{
|
|
3386
3633
|
readonly permissions: readonly ["active"];
|
|
3387
3634
|
readonly actor: {
|
|
3388
3635
|
readonly production: "fund";
|
|
@@ -3392,7 +3639,7 @@ declare const authorizations$1g: readonly [{
|
|
|
3392
3639
|
/**
|
|
3393
3640
|
* Имя действия
|
|
3394
3641
|
*/
|
|
3395
|
-
declare const actionName$
|
|
3642
|
+
declare const actionName$1i = "fundwithdraw";
|
|
3396
3643
|
/**
|
|
3397
3644
|
* @interface
|
|
3398
3645
|
* Действие поставляет в совет на голосование документ о необходимости использования средств фондов кооператива (кроме паевого).
|
|
@@ -3402,13 +3649,13 @@ type IFundWithdrawDecision = IFundwithdraw;
|
|
|
3402
3649
|
|
|
3403
3650
|
type fundWithdrawDecision_IFundWithdrawDecision = IFundWithdrawDecision;
|
|
3404
3651
|
declare namespace fundWithdrawDecision {
|
|
3405
|
-
export { type fundWithdrawDecision_IFundWithdrawDecision as IFundWithdrawDecision, actionName$
|
|
3652
|
+
export { type fundWithdrawDecision_IFundWithdrawDecision as IFundWithdrawDecision, actionName$1i as actionName, authorizations$1i as authorizations };
|
|
3406
3653
|
}
|
|
3407
3654
|
|
|
3408
3655
|
/**
|
|
3409
3656
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._registrator | шлюза}.
|
|
3410
3657
|
*/
|
|
3411
|
-
declare const authorizations$
|
|
3658
|
+
declare const authorizations$1h: readonly [{
|
|
3412
3659
|
readonly permissions: readonly ["active"];
|
|
3413
3660
|
readonly actor: {
|
|
3414
3661
|
readonly production: "registrator";
|
|
@@ -3418,7 +3665,7 @@ declare const authorizations$1f: readonly [{
|
|
|
3418
3665
|
/**
|
|
3419
3666
|
* Имя действия
|
|
3420
3667
|
*/
|
|
3421
|
-
declare const actionName$
|
|
3668
|
+
declare const actionName$1h = "joincoop";
|
|
3422
3669
|
/**
|
|
3423
3670
|
* @interface
|
|
3424
3671
|
* Действие поставляет в совет на голосование заявление на вступление в кооператив.
|
|
@@ -3428,13 +3675,13 @@ type IJoinCoopDecision = IJoincoop;
|
|
|
3428
3675
|
|
|
3429
3676
|
type joinCoopDecision_IJoinCoopDecision = IJoinCoopDecision;
|
|
3430
3677
|
declare namespace joinCoopDecision {
|
|
3431
|
-
export { type joinCoopDecision_IJoinCoopDecision as IJoinCoopDecision, actionName$
|
|
3678
|
+
export { type joinCoopDecision_IJoinCoopDecision as IJoinCoopDecision, actionName$1h as actionName, authorizations$1h as authorizations };
|
|
3432
3679
|
}
|
|
3433
3680
|
|
|
3434
3681
|
/**
|
|
3435
3682
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._marketplace | маркетплейса}.
|
|
3436
3683
|
*/
|
|
3437
|
-
declare const authorizations$
|
|
3684
|
+
declare const authorizations$1g: readonly [{
|
|
3438
3685
|
readonly permissions: readonly ["active"];
|
|
3439
3686
|
readonly actor: {
|
|
3440
3687
|
readonly production: "marketplace";
|
|
@@ -3444,7 +3691,7 @@ declare const authorizations$1e: readonly [{
|
|
|
3444
3691
|
/**
|
|
3445
3692
|
* Имя действия
|
|
3446
3693
|
*/
|
|
3447
|
-
declare const actionName$
|
|
3694
|
+
declare const actionName$1g = "recieved";
|
|
3448
3695
|
/**
|
|
3449
3696
|
* @interface
|
|
3450
3697
|
* Действие поставляет в совет информацию о завершении процесса клиринга и инициирует выпуск закрывающих документов в реестр.
|
|
@@ -3454,13 +3701,13 @@ type IProductRecieved = IRecieved;
|
|
|
3454
3701
|
|
|
3455
3702
|
type productRecieved_IProductRecieved = IProductRecieved;
|
|
3456
3703
|
declare namespace productRecieved {
|
|
3457
|
-
export { type productRecieved_IProductRecieved as IProductRecieved, actionName$
|
|
3704
|
+
export { type productRecieved_IProductRecieved as IProductRecieved, actionName$1g as actionName, authorizations$1g as authorizations };
|
|
3458
3705
|
}
|
|
3459
3706
|
|
|
3460
3707
|
/**
|
|
3461
3708
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3462
3709
|
*/
|
|
3463
|
-
declare const authorizations$
|
|
3710
|
+
declare const authorizations$1f: readonly [{
|
|
3464
3711
|
readonly permissions: readonly ["active", {
|
|
3465
3712
|
readonly contract: "_contract";
|
|
3466
3713
|
readonly action: "actionName";
|
|
@@ -3470,7 +3717,7 @@ declare const authorizations$1d: readonly [{
|
|
|
3470
3717
|
/**
|
|
3471
3718
|
* Имя действия
|
|
3472
3719
|
*/
|
|
3473
|
-
declare const actionName$
|
|
3720
|
+
declare const actionName$1f = "validated";
|
|
3474
3721
|
/**
|
|
3475
3722
|
* @interface
|
|
3476
3723
|
* Действие валидации документов, поданных на голосование в совет.
|
|
@@ -3479,20 +3726,20 @@ type IValidate = IValidate$1;
|
|
|
3479
3726
|
|
|
3480
3727
|
type validate_IValidate = IValidate;
|
|
3481
3728
|
declare namespace validate {
|
|
3482
|
-
export { type validate_IValidate as IValidate, actionName$
|
|
3729
|
+
export { type validate_IValidate as IValidate, actionName$1f as actionName, authorizations$1f as authorizations };
|
|
3483
3730
|
}
|
|
3484
3731
|
|
|
3485
3732
|
/**
|
|
3486
3733
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3487
3734
|
*/
|
|
3488
|
-
declare const authorizations$
|
|
3735
|
+
declare const authorizations$1e: readonly [{
|
|
3489
3736
|
readonly permissions: readonly ["active"];
|
|
3490
3737
|
readonly actor: "_member";
|
|
3491
3738
|
}];
|
|
3492
3739
|
/**
|
|
3493
3740
|
* Имя действия
|
|
3494
3741
|
*/
|
|
3495
|
-
declare const actionName$
|
|
3742
|
+
declare const actionName$1e = "automate";
|
|
3496
3743
|
/**
|
|
3497
3744
|
* @interface
|
|
3498
3745
|
* Подключает автоматизацию принятия решений по указанным типам вопросов на повестке для члена совета.
|
|
@@ -3501,20 +3748,20 @@ type IAutomate = IAutomate$1;
|
|
|
3501
3748
|
|
|
3502
3749
|
type automate_IAutomate = IAutomate;
|
|
3503
3750
|
declare namespace automate {
|
|
3504
|
-
export { type automate_IAutomate as IAutomate, actionName$
|
|
3751
|
+
export { type automate_IAutomate as IAutomate, actionName$1e as actionName, authorizations$1e as authorizations };
|
|
3505
3752
|
}
|
|
3506
3753
|
|
|
3507
3754
|
/**
|
|
3508
3755
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3509
3756
|
*/
|
|
3510
|
-
declare const authorizations$
|
|
3757
|
+
declare const authorizations$1d: readonly [{
|
|
3511
3758
|
readonly permissions: readonly ["active"];
|
|
3512
3759
|
readonly actor: "_member";
|
|
3513
3760
|
}];
|
|
3514
3761
|
/**
|
|
3515
3762
|
* Имя действия
|
|
3516
3763
|
*/
|
|
3517
|
-
declare const actionName$
|
|
3764
|
+
declare const actionName$1d = "disautomate";
|
|
3518
3765
|
/**
|
|
3519
3766
|
* @interface
|
|
3520
3767
|
* Отключает автоматизацию принятия решений по указанным типам вопросов на повестке для члена совета.
|
|
@@ -3523,25 +3770,47 @@ type IDisautomate = IDisautomate$1;
|
|
|
3523
3770
|
|
|
3524
3771
|
type disautomate_IDisautomate = IDisautomate;
|
|
3525
3772
|
declare namespace disautomate {
|
|
3526
|
-
export { type disautomate_IDisautomate as IDisautomate, actionName$
|
|
3773
|
+
export { type disautomate_IDisautomate as IDisautomate, actionName$1d as actionName, authorizations$1d as authorizations };
|
|
3774
|
+
}
|
|
3775
|
+
|
|
3776
|
+
/**
|
|
3777
|
+
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3778
|
+
*/
|
|
3779
|
+
declare const authorizations$1c: readonly [{
|
|
3780
|
+
readonly permissions: readonly ["active"];
|
|
3781
|
+
readonly actor: "_chairman";
|
|
3782
|
+
}];
|
|
3783
|
+
/**
|
|
3784
|
+
* Имя действия
|
|
3785
|
+
*/
|
|
3786
|
+
declare const actionName$1c = "freedecision";
|
|
3787
|
+
/**
|
|
3788
|
+
* @interface
|
|
3789
|
+
* Действие создания проекта решения
|
|
3790
|
+
*/
|
|
3791
|
+
type ICreateFreeDecision = IFreedecision;
|
|
3792
|
+
|
|
3793
|
+
type freeDecision_ICreateFreeDecision = ICreateFreeDecision;
|
|
3794
|
+
declare namespace freeDecision {
|
|
3795
|
+
export { type freeDecision_ICreateFreeDecision as ICreateFreeDecision, actionName$1c as actionName, authorizations$1c as authorizations };
|
|
3527
3796
|
}
|
|
3528
3797
|
|
|
3529
3798
|
/**
|
|
3530
3799
|
* Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
|
|
3531
3800
|
*/
|
|
3532
3801
|
|
|
3533
|
-
declare namespace index$
|
|
3534
|
-
export { authorize$1 as Authorize, automate as Automate, cancelVote as CancelVote, disautomate as Disautomate, exec$1 as Exec, fundWithdrawDecision as FundWithdrawDecision, joinCoopDecision as JoinCoopDecision, marketDecision as MarketDecision, productRecieved as ProductRecieved, validate as Validate, voteAgainst as VoteAgainst, voteFor as VoteFor, withdrawDecision as WithdrawDecision };
|
|
3802
|
+
declare namespace index$z {
|
|
3803
|
+
export { authorize$1 as Authorize, automate as Automate, cancelVote as CancelVote, freeDecision as CreateFreeDecision, disautomate as Disautomate, exec$1 as Exec, fundWithdrawDecision as FundWithdrawDecision, joinCoopDecision as JoinCoopDecision, marketDecision as MarketDecision, productRecieved as ProductRecieved, validate as Validate, voteAgainst as VoteAgainst, voteFor as VoteFor, withdrawDecision as WithdrawDecision };
|
|
3535
3804
|
}
|
|
3536
3805
|
|
|
3537
|
-
declare const authorizations$
|
|
3806
|
+
declare const authorizations$1b: readonly [{
|
|
3538
3807
|
readonly permissions: readonly ["active"];
|
|
3539
3808
|
readonly actor: "_chairman";
|
|
3540
3809
|
}];
|
|
3541
3810
|
/**
|
|
3542
3811
|
* Имя действия
|
|
3543
3812
|
*/
|
|
3544
|
-
declare const actionName$
|
|
3813
|
+
declare const actionName$1b = "createboard";
|
|
3545
3814
|
/**
|
|
3546
3815
|
* @interface
|
|
3547
3816
|
*/
|
|
@@ -3549,17 +3818,17 @@ type ICreateboard = ICreateboard$1;
|
|
|
3549
3818
|
|
|
3550
3819
|
type createBoard_ICreateboard = ICreateboard;
|
|
3551
3820
|
declare namespace createBoard {
|
|
3552
|
-
export { type createBoard_ICreateboard as ICreateboard, actionName$
|
|
3821
|
+
export { type createBoard_ICreateboard as ICreateboard, actionName$1b as actionName, authorizations$1b as authorizations };
|
|
3553
3822
|
}
|
|
3554
3823
|
|
|
3555
|
-
declare const authorizations$
|
|
3824
|
+
declare const authorizations$1a: readonly [{
|
|
3556
3825
|
readonly permissions: readonly ["active"];
|
|
3557
3826
|
readonly actor: "_chairman";
|
|
3558
3827
|
}];
|
|
3559
3828
|
/**
|
|
3560
3829
|
* Имя действия
|
|
3561
3830
|
*/
|
|
3562
|
-
declare const actionName$
|
|
3831
|
+
declare const actionName$1a = "updateboard";
|
|
3563
3832
|
/**
|
|
3564
3833
|
* @interface
|
|
3565
3834
|
* Действие изменения данных доски совета.
|
|
@@ -3568,24 +3837,24 @@ type IUpdateBoard = IUpdateboard;
|
|
|
3568
3837
|
|
|
3569
3838
|
type updateBoard_IUpdateBoard = IUpdateBoard;
|
|
3570
3839
|
declare namespace updateBoard {
|
|
3571
|
-
export { type updateBoard_IUpdateBoard as IUpdateBoard, actionName$
|
|
3840
|
+
export { type updateBoard_IUpdateBoard as IUpdateBoard, actionName$1a as actionName, authorizations$1a as authorizations };
|
|
3572
3841
|
}
|
|
3573
3842
|
|
|
3574
|
-
declare namespace index$
|
|
3843
|
+
declare namespace index$y {
|
|
3575
3844
|
export { createBoard as CreateBoard, updateBoard as UpdateBoard };
|
|
3576
3845
|
}
|
|
3577
3846
|
|
|
3578
3847
|
/**
|
|
3579
3848
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3580
3849
|
*/
|
|
3581
|
-
declare const authorizations$
|
|
3850
|
+
declare const authorizations$19: readonly [{
|
|
3582
3851
|
readonly permissions: readonly ["active"];
|
|
3583
3852
|
readonly actor: "_chairman";
|
|
3584
3853
|
}];
|
|
3585
3854
|
/**
|
|
3586
3855
|
* Имя действия
|
|
3587
3856
|
*/
|
|
3588
|
-
declare const actionName$
|
|
3857
|
+
declare const actionName$19 = "addstaff";
|
|
3589
3858
|
/**
|
|
3590
3859
|
* @interface
|
|
3591
3860
|
* Действие добавления администратора.
|
|
@@ -3594,20 +3863,20 @@ type IAddAdmin = IAddstaff;
|
|
|
3594
3863
|
|
|
3595
3864
|
type addAdmin_IAddAdmin = IAddAdmin;
|
|
3596
3865
|
declare namespace addAdmin {
|
|
3597
|
-
export { type addAdmin_IAddAdmin as IAddAdmin, actionName$
|
|
3866
|
+
export { type addAdmin_IAddAdmin as IAddAdmin, actionName$19 as actionName, authorizations$19 as authorizations };
|
|
3598
3867
|
}
|
|
3599
3868
|
|
|
3600
3869
|
/**
|
|
3601
3870
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3602
3871
|
*/
|
|
3603
|
-
declare const authorizations$
|
|
3872
|
+
declare const authorizations$18: readonly [{
|
|
3604
3873
|
readonly permissions: readonly ["active"];
|
|
3605
3874
|
readonly actor: "_chairman";
|
|
3606
3875
|
}];
|
|
3607
3876
|
/**
|
|
3608
3877
|
* Имя действия
|
|
3609
3878
|
*/
|
|
3610
|
-
declare const actionName$
|
|
3879
|
+
declare const actionName$18 = "rmstaff";
|
|
3611
3880
|
/**
|
|
3612
3881
|
* @interface
|
|
3613
3882
|
* Действие удаления администратора.
|
|
@@ -3616,13 +3885,13 @@ type IDeleteAdmin = IRmstaff;
|
|
|
3616
3885
|
|
|
3617
3886
|
type deleteAdmin_IDeleteAdmin = IDeleteAdmin;
|
|
3618
3887
|
declare namespace deleteAdmin {
|
|
3619
|
-
export { type deleteAdmin_IDeleteAdmin as IDeleteAdmin, actionName$
|
|
3888
|
+
export { type deleteAdmin_IDeleteAdmin as IDeleteAdmin, actionName$18 as actionName, authorizations$18 as authorizations };
|
|
3620
3889
|
}
|
|
3621
3890
|
|
|
3622
3891
|
/**
|
|
3623
3892
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3624
3893
|
*/
|
|
3625
|
-
declare const authorizations$
|
|
3894
|
+
declare const authorizations$17: readonly [{
|
|
3626
3895
|
readonly permissions: readonly ["active", {
|
|
3627
3896
|
readonly contract: "_contract";
|
|
3628
3897
|
readonly action: "actionName";
|
|
@@ -3632,7 +3901,7 @@ declare const authorizations$16: readonly [{
|
|
|
3632
3901
|
/**
|
|
3633
3902
|
* Имя действия
|
|
3634
3903
|
*/
|
|
3635
|
-
declare const actionName$
|
|
3904
|
+
declare const actionName$17 = "regpaid";
|
|
3636
3905
|
/**
|
|
3637
3906
|
* @interface
|
|
3638
3907
|
* Действие регистрации получения оплаты вступительного взноса.
|
|
@@ -3641,20 +3910,20 @@ type IRegisterPayment = IRegpaid;
|
|
|
3641
3910
|
|
|
3642
3911
|
type registerPayment_IRegisterPayment = IRegisterPayment;
|
|
3643
3912
|
declare namespace registerPayment {
|
|
3644
|
-
export { type registerPayment_IRegisterPayment as IRegisterPayment, actionName$
|
|
3913
|
+
export { type registerPayment_IRegisterPayment as IRegisterPayment, actionName$17 as actionName, authorizations$17 as authorizations };
|
|
3645
3914
|
}
|
|
3646
3915
|
|
|
3647
3916
|
/**
|
|
3648
3917
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3649
3918
|
*/
|
|
3650
|
-
declare const authorizations$
|
|
3919
|
+
declare const authorizations$16: readonly [{
|
|
3651
3920
|
readonly permissions: readonly ["active"];
|
|
3652
3921
|
readonly actor: "_chairman";
|
|
3653
3922
|
}];
|
|
3654
3923
|
/**
|
|
3655
3924
|
* Имя действия
|
|
3656
3925
|
*/
|
|
3657
|
-
declare const actionName$
|
|
3926
|
+
declare const actionName$16 = "setrights";
|
|
3658
3927
|
/**
|
|
3659
3928
|
* @interface
|
|
3660
3929
|
* Действие изменений прав доступа администратора.
|
|
@@ -3663,20 +3932,20 @@ type ISetRights = ISetrights;
|
|
|
3663
3932
|
|
|
3664
3933
|
type setRights_ISetRights = ISetRights;
|
|
3665
3934
|
declare namespace setRights {
|
|
3666
|
-
export { type setRights_ISetRights as ISetRights, actionName$
|
|
3935
|
+
export { type setRights_ISetRights as ISetRights, actionName$16 as actionName, authorizations$16 as authorizations };
|
|
3667
3936
|
}
|
|
3668
3937
|
|
|
3669
3938
|
/**
|
|
3670
3939
|
* Действие выполняется за подписью {@link Actors._system | системного контракта}.
|
|
3671
3940
|
*/
|
|
3672
|
-
declare const authorizations$
|
|
3941
|
+
declare const authorizations$15: readonly [{
|
|
3673
3942
|
readonly permissions: readonly ["active"];
|
|
3674
3943
|
readonly actor: "_system";
|
|
3675
3944
|
}];
|
|
3676
3945
|
/**
|
|
3677
3946
|
* Имя действия
|
|
3678
3947
|
*/
|
|
3679
|
-
declare const actionName$
|
|
3948
|
+
declare const actionName$15 = "init";
|
|
3680
3949
|
/**
|
|
3681
3950
|
* @interface
|
|
3682
3951
|
* Действие добавления администратора.
|
|
@@ -3684,21 +3953,21 @@ declare const actionName$14 = "init";
|
|
|
3684
3953
|
type IInit$2 = IInit$3;
|
|
3685
3954
|
|
|
3686
3955
|
declare namespace init$1 {
|
|
3687
|
-
export { type IInit$2 as IInit, actionName$
|
|
3956
|
+
export { type IInit$2 as IInit, actionName$15 as actionName, authorizations$15 as authorizations };
|
|
3688
3957
|
}
|
|
3689
3958
|
|
|
3690
3959
|
/**
|
|
3691
3960
|
* Действие добавления администратора.
|
|
3692
3961
|
*/
|
|
3693
3962
|
|
|
3694
|
-
declare namespace index$
|
|
3963
|
+
declare namespace index$x {
|
|
3695
3964
|
export { addAdmin as AddAdmin, deleteAdmin as DeleteAdmin, init$1 as Init, registerPayment as RegisterPayment, setRights as SetRights };
|
|
3696
3965
|
}
|
|
3697
3966
|
|
|
3698
3967
|
/**
|
|
3699
3968
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3700
3969
|
*/
|
|
3701
|
-
declare const authorizations$
|
|
3970
|
+
declare const authorizations$14: readonly [{
|
|
3702
3971
|
readonly permissions: readonly ["active", {
|
|
3703
3972
|
readonly contract: "_contract";
|
|
3704
3973
|
readonly action: "actionName";
|
|
@@ -3708,7 +3977,7 @@ declare const authorizations$13: readonly [{
|
|
|
3708
3977
|
/**
|
|
3709
3978
|
* Имя действия
|
|
3710
3979
|
*/
|
|
3711
|
-
declare const actionName$
|
|
3980
|
+
declare const actionName$14 = "confirmagree";
|
|
3712
3981
|
/**
|
|
3713
3982
|
* @interface
|
|
3714
3983
|
* Действие подтверждает приём заявления администратором
|
|
@@ -3717,13 +3986,13 @@ type IConfirmAgreement = IConfirmagree;
|
|
|
3717
3986
|
|
|
3718
3987
|
type confirmAgreement_IConfirmAgreement = IConfirmAgreement;
|
|
3719
3988
|
declare namespace confirmAgreement {
|
|
3720
|
-
export { type confirmAgreement_IConfirmAgreement as IConfirmAgreement, actionName$
|
|
3989
|
+
export { type confirmAgreement_IConfirmAgreement as IConfirmAgreement, actionName$14 as actionName, authorizations$14 as authorizations };
|
|
3721
3990
|
}
|
|
3722
3991
|
|
|
3723
3992
|
/**
|
|
3724
3993
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3725
3994
|
*/
|
|
3726
|
-
declare const authorizations$
|
|
3995
|
+
declare const authorizations$13: readonly [{
|
|
3727
3996
|
readonly permissions: readonly ["active", {
|
|
3728
3997
|
readonly contract: "_contract";
|
|
3729
3998
|
readonly action: "actionName";
|
|
@@ -3733,7 +4002,7 @@ declare const authorizations$12: readonly [{
|
|
|
3733
4002
|
/**
|
|
3734
4003
|
* Имя действия
|
|
3735
4004
|
*/
|
|
3736
|
-
declare const actionName$
|
|
4005
|
+
declare const actionName$13 = "declineagree";
|
|
3737
4006
|
/**
|
|
3738
4007
|
* @interface
|
|
3739
4008
|
* Действие отклоняет заявление пайщика администратором
|
|
@@ -3742,20 +4011,20 @@ type IDeclineAgreement = IDeclineagree;
|
|
|
3742
4011
|
|
|
3743
4012
|
type declineAgreement_IDeclineAgreement = IDeclineAgreement;
|
|
3744
4013
|
declare namespace declineAgreement {
|
|
3745
|
-
export { type declineAgreement_IDeclineAgreement as IDeclineAgreement, actionName$
|
|
4014
|
+
export { type declineAgreement_IDeclineAgreement as IDeclineAgreement, actionName$13 as actionName, authorizations$13 as authorizations };
|
|
3746
4015
|
}
|
|
3747
4016
|
|
|
3748
4017
|
/**
|
|
3749
4018
|
* Действие выполняется за подписью любого {@link Actors._username | пользователя}.
|
|
3750
4019
|
*/
|
|
3751
|
-
declare const authorizations$
|
|
4020
|
+
declare const authorizations$12: readonly [{
|
|
3752
4021
|
readonly permissions: readonly ["active"];
|
|
3753
4022
|
readonly actor: "_username";
|
|
3754
4023
|
}];
|
|
3755
4024
|
/**
|
|
3756
4025
|
* Имя действия
|
|
3757
4026
|
*/
|
|
3758
|
-
declare const actionName$
|
|
4027
|
+
declare const actionName$12 = "sndagreement";
|
|
3759
4028
|
/**
|
|
3760
4029
|
* Действие отправки заявления на присоединение к ЦПП кооператива
|
|
3761
4030
|
*/
|
|
@@ -3763,13 +4032,13 @@ type ISendAgreement = ISndagreement;
|
|
|
3763
4032
|
|
|
3764
4033
|
type sendAgreement_ISendAgreement = ISendAgreement;
|
|
3765
4034
|
declare namespace sendAgreement {
|
|
3766
|
-
export { type sendAgreement_ISendAgreement as ISendAgreement, actionName$
|
|
4035
|
+
export { type sendAgreement_ISendAgreement as ISendAgreement, actionName$12 as actionName, authorizations$12 as authorizations };
|
|
3767
4036
|
}
|
|
3768
4037
|
|
|
3769
4038
|
/**
|
|
3770
4039
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3771
4040
|
*/
|
|
3772
|
-
declare const authorizations$
|
|
4041
|
+
declare const authorizations$11: readonly [{
|
|
3773
4042
|
readonly permissions: readonly ["active", {
|
|
3774
4043
|
readonly contract: "_contract";
|
|
3775
4044
|
readonly action: "actionName";
|
|
@@ -3779,7 +4048,7 @@ declare const authorizations$10: readonly [{
|
|
|
3779
4048
|
/**
|
|
3780
4049
|
* Имя действия
|
|
3781
4050
|
*/
|
|
3782
|
-
declare const actionName$
|
|
4051
|
+
declare const actionName$11 = "makecoagreem";
|
|
3783
4052
|
/**
|
|
3784
4053
|
* Действие отправки заявления на присоединение к ЦПП кооператива
|
|
3785
4054
|
*/
|
|
@@ -3787,24 +4056,46 @@ type IMakeCoagreement = IMakecoagreem;
|
|
|
3787
4056
|
|
|
3788
4057
|
type makeCoagreement_IMakeCoagreement = IMakeCoagreement;
|
|
3789
4058
|
declare namespace makeCoagreement {
|
|
3790
|
-
export { type makeCoagreement_IMakeCoagreement as IMakeCoagreement, actionName$
|
|
4059
|
+
export { type makeCoagreement_IMakeCoagreement as IMakeCoagreement, actionName$11 as actionName, authorizations$11 as authorizations };
|
|
3791
4060
|
}
|
|
3792
4061
|
|
|
3793
4062
|
/**
|
|
3794
4063
|
* Действие подтверждения приёма заявления пайщика
|
|
3795
4064
|
*/
|
|
3796
4065
|
|
|
3797
|
-
declare namespace index$
|
|
4066
|
+
declare namespace index$w {
|
|
3798
4067
|
export { confirmAgreement as ConfirmAgreement, declineAgreement as DeclineAgreement, makeCoagreement as MakeCoagreement, sendAgreement as SendAgreement };
|
|
3799
4068
|
}
|
|
3800
4069
|
|
|
4070
|
+
declare const authorizations$10: readonly [{
|
|
4071
|
+
readonly permissions: readonly ["active"];
|
|
4072
|
+
readonly actor: "_coopname";
|
|
4073
|
+
}];
|
|
4074
|
+
/**
|
|
4075
|
+
* Имя действия
|
|
4076
|
+
*/
|
|
4077
|
+
declare const actionName$10 = "selectbranch";
|
|
4078
|
+
/**
|
|
4079
|
+
* @interface
|
|
4080
|
+
*/
|
|
4081
|
+
type ISelectBranch = ISelectbranch;
|
|
4082
|
+
|
|
4083
|
+
type selectBranch_ISelectBranch = ISelectBranch;
|
|
4084
|
+
declare namespace selectBranch {
|
|
4085
|
+
export { type selectBranch_ISelectBranch as ISelectBranch, actionName$10 as actionName, authorizations$10 as authorizations };
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
declare namespace index$v {
|
|
4089
|
+
export { selectBranch as SelectBranch };
|
|
4090
|
+
}
|
|
4091
|
+
|
|
3801
4092
|
/**
|
|
3802
4093
|
* Пространство действий для работы с реестрами.
|
|
3803
4094
|
* @private
|
|
3804
4095
|
*/
|
|
3805
4096
|
|
|
3806
|
-
declare namespace index$
|
|
3807
|
-
export { index$
|
|
4097
|
+
declare namespace index$u {
|
|
4098
|
+
export { index$C as Addresses, index$x as Admins, index$w as Agreements, index$y as Boards, index$v as Branches, index$z as Decisions, index$A as Programs, index$D as Registry, index$B as Wallet };
|
|
3808
4099
|
}
|
|
3809
4100
|
|
|
3810
4101
|
/**
|
|
@@ -4074,7 +4365,7 @@ declare namespace coopAgreements {
|
|
|
4074
4365
|
* Таблица хранит информацию о адресах кооператива.
|
|
4075
4366
|
*/
|
|
4076
4367
|
|
|
4077
|
-
declare namespace index$
|
|
4368
|
+
declare namespace index$t {
|
|
4078
4369
|
export { addresses as Addresses, admins as Admins, agreements as Agreements, automationQueue as AutomationQueue, automations as Automations, boards as Boards, changes as Changes, coopAgreements as CoopAgreements, decisions as Decisions, joinCoops as JoinCoops, participants as Participants, programWallets as ProgramWallets, programs as Programs, wallets as Wallets };
|
|
4079
4370
|
}
|
|
4080
4371
|
|
|
@@ -4083,8 +4374,8 @@ declare const contractName$4: {
|
|
|
4083
4374
|
readonly testnet: "soviettest22";
|
|
4084
4375
|
};
|
|
4085
4376
|
|
|
4086
|
-
declare namespace index$
|
|
4087
|
-
export { index$
|
|
4377
|
+
declare namespace index$s {
|
|
4378
|
+
export { index$u as Actions, soviet as Interfaces, index$t as Tables, contractName$4 as contractName };
|
|
4088
4379
|
}
|
|
4089
4380
|
|
|
4090
4381
|
type IAsset$1 = string;
|
|
@@ -4751,7 +5042,7 @@ declare namespace updateRequest {
|
|
|
4751
5042
|
* Действие для подтверждения готовности выполнить поставку по входящей заявке.
|
|
4752
5043
|
*/
|
|
4753
5044
|
|
|
4754
|
-
declare namespace index$
|
|
5045
|
+
declare namespace index$r {
|
|
4755
5046
|
export { acceptRequest as AcceptRequest, authorize as Authorize, cancelRequest as CancelRequest, completeRequest as CompleteRequest, confirmRecieve as ConfirmRecieve, confirmSupply as ConfirmSupply, createOffer as CreateOffer, createOrder as CreateOrder, declineRequest as DeclineRequest, deliverOnRequest as DeliverOnRequest, moderateRequest as ModerateRequest, newRequestId as NewRequestId, openDispute as OpenDispute, prohibitRequest as ProhibitRequest, publishRequest as PublishRequest, recieveOnRequest as RecieveOnRequest, supplyOnRequest as SupplyOnRequest, unpublishRequest as UnpublishRequest, updateRequest as UpdateRequests };
|
|
4756
5047
|
}
|
|
4757
5048
|
|
|
@@ -4781,7 +5072,7 @@ declare namespace requests {
|
|
|
4781
5072
|
* Таблица с заявками на поставки
|
|
4782
5073
|
*/
|
|
4783
5074
|
|
|
4784
|
-
declare namespace index$
|
|
5075
|
+
declare namespace index$q {
|
|
4785
5076
|
export { requests as Requests };
|
|
4786
5077
|
}
|
|
4787
5078
|
|
|
@@ -4790,8 +5081,8 @@ declare const contractName$3: {
|
|
|
4790
5081
|
readonly testnet: "markettest22";
|
|
4791
5082
|
};
|
|
4792
5083
|
|
|
4793
|
-
declare namespace index$
|
|
4794
|
-
export { index$
|
|
5084
|
+
declare namespace index$p {
|
|
5085
|
+
export { index$r as Actions, marketplace as Interfaces, index$q as Tables, contractName$3 as contractName };
|
|
4795
5086
|
}
|
|
4796
5087
|
|
|
4797
5088
|
type IName$2 = string;
|
|
@@ -5050,7 +5341,7 @@ declare namespace invalidateAccount {
|
|
|
5050
5341
|
* Если такое предложение уже существует, оно будет заменено новым.
|
|
5051
5342
|
*/
|
|
5052
5343
|
|
|
5053
|
-
declare namespace index$
|
|
5344
|
+
declare namespace index$o {
|
|
5054
5345
|
export { approveProposal as ApproveProposal, cancelProposal as CancelProposal, execProposal as ExecProposal, invalidateAccount as InvalidateProposal, proposeTransaction as ProposeTransaction, unapproveProposal as UnapproveProposal };
|
|
5055
5346
|
}
|
|
5056
5347
|
|
|
@@ -5142,7 +5433,7 @@ declare namespace proposals {
|
|
|
5142
5433
|
* @deprecated
|
|
5143
5434
|
*/
|
|
5144
5435
|
|
|
5145
|
-
declare namespace index$
|
|
5436
|
+
declare namespace index$n {
|
|
5146
5437
|
export { approvals as Approvals, approvals2 as Approvals2, invalidations as Invalidations, proposals as Proposals };
|
|
5147
5438
|
}
|
|
5148
5439
|
|
|
@@ -5151,8 +5442,8 @@ declare const contractName$2: {
|
|
|
5151
5442
|
readonly testnet: "eosio.msig";
|
|
5152
5443
|
};
|
|
5153
5444
|
|
|
5154
|
-
declare namespace index$
|
|
5155
|
-
export { index$
|
|
5445
|
+
declare namespace index$m {
|
|
5446
|
+
export { index$o as Actions, msig as Interfaces, index$n as Tables, contractName$2 as contractName };
|
|
5156
5447
|
}
|
|
5157
5448
|
|
|
5158
5449
|
type IName$1 = string;
|
|
@@ -5233,7 +5524,7 @@ declare namespace exec {
|
|
|
5233
5524
|
* Использование RAM отложенной транзакции выставляется аккаунту 'executer'.
|
|
5234
5525
|
*/
|
|
5235
5526
|
|
|
5236
|
-
declare namespace index$
|
|
5527
|
+
declare namespace index$l {
|
|
5237
5528
|
export { exec as Exec };
|
|
5238
5529
|
}
|
|
5239
5530
|
|
|
@@ -5242,8 +5533,8 @@ declare const contractName$1: {
|
|
|
5242
5533
|
readonly testnet: "eosio.wrap";
|
|
5243
5534
|
};
|
|
5244
5535
|
|
|
5245
|
-
declare namespace index$
|
|
5246
|
-
export { index$
|
|
5536
|
+
declare namespace index$k {
|
|
5537
|
+
export { index$l as Actions, wrap as Interfaces, contractName$1 as contractName };
|
|
5247
5538
|
}
|
|
5248
5539
|
|
|
5249
5540
|
type IAsset = string;
|
|
@@ -6491,7 +6782,7 @@ declare namespace cancelDelay {
|
|
|
6491
6782
|
* Действие инициализирует системный контракт после установки.
|
|
6492
6783
|
*/
|
|
6493
6784
|
|
|
6494
|
-
declare namespace index$
|
|
6785
|
+
declare namespace index$j {
|
|
6495
6786
|
export { activateFeature as ActivateFeature, bidName as BidName, bidNameRefund as BidNameRefund, buyRAM as BuyRAM, buyRAMBytes as BuyRAMBytes, cancelDelay as CancelDelay, claimRewards as ClaimRewards, createAccount as CreateAccount, delegateBW as DelegateBW, deleteAuth as DeleteAuth, execPowerup as ExecPowerup, init as Init, initEmission as InitEmission, initPowerup as InitPowerup, linkAuth as LinkAuth, newAccount as NewAccount, powerup as Powerup, refund as Refund, registerProducer as RegisterProducer, registerProducer2 as RegisterProducer2, registerProxy as RegisterProxy, removeProducer as RemoveProducer, setAbi as SetAbi, setAccountLimits as SetAccountLimits, setCPULimits as SetCPULimits, setCode as SetCode, setNETLimits as SetNETLimits, setParams as SetParams, setPrivileged as SetPrivileged, setRAMLimits as SetRAMLimits, setTotalRAM as SetTotalRAM, setTotalRAMRate as SetTotalRAMRate, undelegateBW as UndelegateBW, unregisterProducer as UnregisterProducer, updateAuth as UpdateAuth, updateRevision as UpdateRevision, voteForProducer as VoteForProducer, voteUpdate as VoteUpdate };
|
|
6496
6787
|
}
|
|
6497
6788
|
|
|
@@ -6753,18 +7044,18 @@ declare namespace voters {
|
|
|
6753
7044
|
* Таблица предоставляет информацию о ходе возврата токенов из аукциона имен.
|
|
6754
7045
|
*/
|
|
6755
7046
|
|
|
6756
|
-
declare const index$
|
|
6757
|
-
declare const index$
|
|
6758
|
-
declare const index$
|
|
6759
|
-
declare const index$
|
|
6760
|
-
declare const index$
|
|
6761
|
-
declare const index$
|
|
6762
|
-
declare const index$
|
|
6763
|
-
declare const index$
|
|
6764
|
-
declare const index$
|
|
6765
|
-
declare const index$
|
|
6766
|
-
declare namespace index$
|
|
6767
|
-
export { bidRefunds as BidRefunds, nameBids as NameBids, index$
|
|
7047
|
+
declare const index$i_delegatedBandwith: typeof delegatedBandwith;
|
|
7048
|
+
declare const index$i_emissionState: typeof emissionState;
|
|
7049
|
+
declare const index$i_globalState: typeof globalState;
|
|
7050
|
+
declare const index$i_powerState: typeof powerState;
|
|
7051
|
+
declare const index$i_powerupOrders: typeof powerupOrders;
|
|
7052
|
+
declare const index$i_producers: typeof producers;
|
|
7053
|
+
declare const index$i_ramDebts: typeof ramDebts;
|
|
7054
|
+
declare const index$i_refunds: typeof refunds;
|
|
7055
|
+
declare const index$i_userResources: typeof userResources;
|
|
7056
|
+
declare const index$i_voters: typeof voters;
|
|
7057
|
+
declare namespace index$i {
|
|
7058
|
+
export { bidRefunds as BidRefunds, nameBids as NameBids, index$i_delegatedBandwith as delegatedBandwith, index$i_emissionState as emissionState, index$i_globalState as globalState, index$i_powerState as powerState, index$i_powerupOrders as powerupOrders, index$i_producers as producers, index$i_ramDebts as ramDebts, index$i_refunds as refunds, index$i_userResources as userResources, index$i_voters as voters };
|
|
6768
7059
|
}
|
|
6769
7060
|
|
|
6770
7061
|
declare const contractName: {
|
|
@@ -6772,48 +7063,11 @@ declare const contractName: {
|
|
|
6772
7063
|
readonly testnet: "eosio";
|
|
6773
7064
|
};
|
|
6774
7065
|
|
|
6775
|
-
declare const index$
|
|
6776
|
-
declare namespace index$
|
|
6777
|
-
export { index$
|
|
6778
|
-
}
|
|
6779
|
-
|
|
6780
|
-
type Currency = 'RUB' | 'Other';
|
|
6781
|
-
interface IBankAccount {
|
|
6782
|
-
currency: Currency;
|
|
6783
|
-
card_number?: string;
|
|
6784
|
-
bank_name: string;
|
|
6785
|
-
account_number: string;
|
|
6786
|
-
details: {
|
|
6787
|
-
bik: string;
|
|
6788
|
-
corr: string;
|
|
6789
|
-
kpp: string;
|
|
6790
|
-
};
|
|
6791
|
-
}
|
|
6792
|
-
interface ISbpDetails {
|
|
6793
|
-
phone: string;
|
|
6794
|
-
}
|
|
6795
|
-
type MethodTypes = 'sbp' | 'bank_transfer';
|
|
6796
|
-
interface IPaymentData {
|
|
6797
|
-
username: string;
|
|
6798
|
-
method_id: number;
|
|
6799
|
-
user_type: 'individual' | 'entrepreneur' | 'organization';
|
|
6800
|
-
method_type: MethodTypes;
|
|
6801
|
-
is_default: boolean;
|
|
6802
|
-
data: ISbpDetails | IBankAccount;
|
|
6803
|
-
deleted?: boolean;
|
|
6804
|
-
block_num?: number;
|
|
6805
|
-
}
|
|
6806
|
-
|
|
6807
|
-
type index$d_Currency = Currency;
|
|
6808
|
-
type index$d_IBankAccount = IBankAccount;
|
|
6809
|
-
type index$d_IPaymentData = IPaymentData;
|
|
6810
|
-
type index$d_ISbpDetails = ISbpDetails;
|
|
6811
|
-
type index$d_MethodTypes = MethodTypes;
|
|
6812
|
-
declare namespace index$d {
|
|
6813
|
-
export type { index$d_Currency as Currency, index$d_IBankAccount as IBankAccount, index$d_IPaymentData as IPaymentData, index$d_ISbpDetails as ISbpDetails, index$d_MethodTypes as MethodTypes };
|
|
7066
|
+
declare const index$h_contractName: typeof contractName;
|
|
7067
|
+
declare namespace index$h {
|
|
7068
|
+
export { index$j as Actions, system as Interfaces, index$i as Tables, index$h_contractName as contractName };
|
|
6814
7069
|
}
|
|
6815
7070
|
|
|
6816
|
-
type Country = 'Russia' | 'Other';
|
|
6817
7071
|
interface IPassportData {
|
|
6818
7072
|
series: number;
|
|
6819
7073
|
number: number;
|
|
@@ -6837,7 +7091,6 @@ interface IIndividualData {
|
|
|
6837
7091
|
interface IOrganizationData {
|
|
6838
7092
|
username: string;
|
|
6839
7093
|
type: 'coop' | 'ooo' | 'oao' | 'zao' | 'pao' | 'ao';
|
|
6840
|
-
is_cooperative: boolean;
|
|
6841
7094
|
short_name: string;
|
|
6842
7095
|
full_name: string;
|
|
6843
7096
|
represented_by: {
|
|
@@ -6847,9 +7100,10 @@ interface IOrganizationData {
|
|
|
6847
7100
|
position: string;
|
|
6848
7101
|
based_on: string;
|
|
6849
7102
|
};
|
|
6850
|
-
country:
|
|
7103
|
+
country: string;
|
|
6851
7104
|
city: string;
|
|
6852
7105
|
full_address: string;
|
|
7106
|
+
fact_address: string;
|
|
6853
7107
|
phone: string;
|
|
6854
7108
|
email: string;
|
|
6855
7109
|
details: {
|
|
@@ -6857,7 +7111,6 @@ interface IOrganizationData {
|
|
|
6857
7111
|
ogrn: string;
|
|
6858
7112
|
kpp: string;
|
|
6859
7113
|
};
|
|
6860
|
-
bank_account: IBankAccount;
|
|
6861
7114
|
block_num?: number;
|
|
6862
7115
|
deleted?: boolean;
|
|
6863
7116
|
}
|
|
@@ -6869,14 +7122,13 @@ interface IEntrepreneurData {
|
|
|
6869
7122
|
birthdate: string;
|
|
6870
7123
|
phone: string;
|
|
6871
7124
|
email: string;
|
|
6872
|
-
country:
|
|
7125
|
+
country: string;
|
|
6873
7126
|
city: string;
|
|
6874
7127
|
full_address: string;
|
|
6875
7128
|
details: {
|
|
6876
7129
|
inn: string;
|
|
6877
7130
|
ogrn: string;
|
|
6878
7131
|
};
|
|
6879
|
-
bank_account: IBankAccount;
|
|
6880
7132
|
block_num?: number;
|
|
6881
7133
|
deleted?: boolean;
|
|
6882
7134
|
}
|
|
@@ -6886,15 +7138,14 @@ interface IAccountMeta {
|
|
|
6886
7138
|
email: string;
|
|
6887
7139
|
}
|
|
6888
7140
|
|
|
6889
|
-
type index$
|
|
6890
|
-
type index$
|
|
6891
|
-
type index$
|
|
6892
|
-
type index$
|
|
6893
|
-
type index$
|
|
6894
|
-
type index$
|
|
6895
|
-
|
|
6896
|
-
|
|
6897
|
-
export type { index$c_Country as Country, index$c_IAccountMeta as IAccountMeta, index$c_IEntrepreneurData as IEntrepreneurData, index$c_IIndividualData as IIndividualData, index$c_IOrganizationData as IOrganizationData, index$c_IPassportData as IPassportData, index$c_IUserData as IUserData };
|
|
7141
|
+
type index$g_IAccountMeta = IAccountMeta;
|
|
7142
|
+
type index$g_IEntrepreneurData = IEntrepreneurData;
|
|
7143
|
+
type index$g_IIndividualData = IIndividualData;
|
|
7144
|
+
type index$g_IOrganizationData = IOrganizationData;
|
|
7145
|
+
type index$g_IPassportData = IPassportData;
|
|
7146
|
+
type index$g_IUserData = IUserData;
|
|
7147
|
+
declare namespace index$g {
|
|
7148
|
+
export type { index$g_IAccountMeta as IAccountMeta, index$g_IEntrepreneurData as IEntrepreneurData, index$g_IIndividualData as IIndividualData, index$g_IOrganizationData as IOrganizationData, index$g_IPassportData as IPassportData, index$g_IUserData as IUserData };
|
|
6898
7149
|
}
|
|
6899
7150
|
|
|
6900
7151
|
interface ITable {
|
|
@@ -6960,16 +7211,19 @@ interface IGetTables {
|
|
|
6960
7211
|
limit: number;
|
|
6961
7212
|
}
|
|
6962
7213
|
|
|
6963
|
-
type index$
|
|
6964
|
-
type index$
|
|
6965
|
-
type index$
|
|
6966
|
-
type index$
|
|
6967
|
-
type index$
|
|
6968
|
-
type index$
|
|
6969
|
-
declare namespace index$
|
|
6970
|
-
export type { index$
|
|
7214
|
+
type index$f_IAction = IAction;
|
|
7215
|
+
type index$f_IExtendedAction = IExtendedAction;
|
|
7216
|
+
type index$f_IExtendedTable = IExtendedTable;
|
|
7217
|
+
type index$f_IGetActions = IGetActions;
|
|
7218
|
+
type index$f_IGetTables = IGetTables;
|
|
7219
|
+
type index$f_ITable = ITable;
|
|
7220
|
+
declare namespace index$f {
|
|
7221
|
+
export type { index$f_IAction as IAction, index$f_IExtendedAction as IExtendedAction, index$f_IExtendedTable as IExtendedTable, index$f_IGetActions as IGetActions, index$f_IGetTables as IGetTables, index$f_ITable as ITable };
|
|
6971
7222
|
}
|
|
6972
7223
|
|
|
7224
|
+
interface IGenerationOptions {
|
|
7225
|
+
skip_save?: boolean;
|
|
7226
|
+
}
|
|
6973
7227
|
type LangType = 'ru';
|
|
6974
7228
|
interface IChainDocument {
|
|
6975
7229
|
hash: string;
|
|
@@ -6990,13 +7244,26 @@ interface IMetaDocument {
|
|
|
6990
7244
|
timezone: string;
|
|
6991
7245
|
links: string[];
|
|
6992
7246
|
}
|
|
6993
|
-
interface
|
|
6994
|
-
|
|
7247
|
+
interface ISignedDocument<T = any> {
|
|
7248
|
+
hash: string;
|
|
7249
|
+
public_key: string;
|
|
7250
|
+
signature: string;
|
|
7251
|
+
meta: IMetaDocument & T;
|
|
7252
|
+
}
|
|
7253
|
+
interface IGeneratedDocument<T = any> {
|
|
7254
|
+
full_title: string;
|
|
6995
7255
|
html: string;
|
|
6996
7256
|
hash: string;
|
|
6997
|
-
meta: IMetaDocument;
|
|
7257
|
+
meta: IMetaDocument & T;
|
|
6998
7258
|
binary: Uint8Array;
|
|
6999
7259
|
}
|
|
7260
|
+
interface ZGeneratedDocument<T = any> {
|
|
7261
|
+
full_title: string;
|
|
7262
|
+
html: string;
|
|
7263
|
+
hash: string;
|
|
7264
|
+
meta: IMetaDocument & T;
|
|
7265
|
+
binary: string;
|
|
7266
|
+
}
|
|
7000
7267
|
interface IComplexStatement {
|
|
7001
7268
|
action: IExtendedAction;
|
|
7002
7269
|
document: IGeneratedDocument;
|
|
@@ -7073,30 +7340,35 @@ interface IDecisionData {
|
|
|
7073
7340
|
votes_abstained: number;
|
|
7074
7341
|
voters_percent: number;
|
|
7075
7342
|
}
|
|
7076
|
-
interface
|
|
7077
|
-
|
|
7078
|
-
|
|
7079
|
-
|
|
7080
|
-
|
|
7081
|
-
|
|
7082
|
-
type index$
|
|
7083
|
-
type index$
|
|
7084
|
-
type index$
|
|
7085
|
-
type index$
|
|
7086
|
-
type index$
|
|
7087
|
-
type index$
|
|
7088
|
-
type index$
|
|
7089
|
-
type index$
|
|
7090
|
-
type index$
|
|
7091
|
-
type index$
|
|
7092
|
-
type index$
|
|
7093
|
-
type index$
|
|
7094
|
-
type index$
|
|
7095
|
-
type index$
|
|
7096
|
-
type index$
|
|
7097
|
-
type index$
|
|
7098
|
-
|
|
7099
|
-
|
|
7343
|
+
interface IProjectData {
|
|
7344
|
+
id: string;
|
|
7345
|
+
question: string;
|
|
7346
|
+
decision: string;
|
|
7347
|
+
}
|
|
7348
|
+
|
|
7349
|
+
type index$e_IAgenda = IAgenda;
|
|
7350
|
+
type index$e_IChainDocument = IChainDocument;
|
|
7351
|
+
type index$e_IComplexAct = IComplexAct;
|
|
7352
|
+
type index$e_IComplexAgenda = IComplexAgenda;
|
|
7353
|
+
type index$e_IComplexDecision = IComplexDecision;
|
|
7354
|
+
type index$e_IComplexDocument = IComplexDocument;
|
|
7355
|
+
type index$e_IComplexStatement = IComplexStatement;
|
|
7356
|
+
type index$e_IDecisionData = IDecisionData;
|
|
7357
|
+
type index$e_IGenerate = IGenerate;
|
|
7358
|
+
type index$e_IGenerateJoinCoop = IGenerateJoinCoop;
|
|
7359
|
+
type index$e_IGenerateJoinCoopDecision = IGenerateJoinCoopDecision;
|
|
7360
|
+
type index$e_IGenerateWalletAgreement = IGenerateWalletAgreement;
|
|
7361
|
+
type index$e_IGeneratedDocument<T = any> = IGeneratedDocument<T>;
|
|
7362
|
+
type index$e_IGenerationOptions = IGenerationOptions;
|
|
7363
|
+
type index$e_IGetComplexDocuments = IGetComplexDocuments;
|
|
7364
|
+
type index$e_IGetResponse<T> = IGetResponse<T>;
|
|
7365
|
+
type index$e_IMetaDocument = IMetaDocument;
|
|
7366
|
+
type index$e_IProjectData = IProjectData;
|
|
7367
|
+
type index$e_ISignedDocument<T = any> = ISignedDocument<T>;
|
|
7368
|
+
type index$e_LangType = LangType;
|
|
7369
|
+
type index$e_ZGeneratedDocument<T = any> = ZGeneratedDocument<T>;
|
|
7370
|
+
declare namespace index$e {
|
|
7371
|
+
export type { index$e_IAgenda as IAgenda, index$e_IChainDocument as IChainDocument, index$e_IComplexAct as IComplexAct, index$e_IComplexAgenda as IComplexAgenda, index$e_IComplexDecision as IComplexDecision, index$e_IComplexDocument as IComplexDocument, index$e_IComplexStatement as IComplexStatement, index$e_IDecisionData as IDecisionData, index$e_IGenerate as IGenerate, index$e_IGenerateJoinCoop as IGenerateJoinCoop, index$e_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$e_IGenerateWalletAgreement as IGenerateWalletAgreement, index$e_IGeneratedDocument as IGeneratedDocument, index$e_IGenerationOptions as IGenerationOptions, index$e_IGetComplexDocuments as IGetComplexDocuments, index$e_IGetResponse as IGetResponse, index$e_IMetaDocument as IMetaDocument, index$e_IProjectData as IProjectData, index$e_ISignedDocument as ISignedDocument, index$e_LangType as LangType, index$e_ZGeneratedDocument as ZGeneratedDocument };
|
|
7100
7372
|
}
|
|
7101
7373
|
|
|
7102
7374
|
interface ICooperativeData extends IOrganizationData, ICooperative {
|
|
@@ -7161,30 +7433,67 @@ interface IVars {
|
|
|
7161
7433
|
protocol_number: string;
|
|
7162
7434
|
protocol_day_month_year: string;
|
|
7163
7435
|
};
|
|
7436
|
+
coopenomics_agreement?: {
|
|
7437
|
+
protocol_number: string;
|
|
7438
|
+
protocol_day_month_year: string;
|
|
7439
|
+
};
|
|
7164
7440
|
}
|
|
7165
7441
|
|
|
7166
|
-
type index$
|
|
7167
|
-
type index$
|
|
7168
|
-
type index$
|
|
7169
|
-
type index$
|
|
7170
|
-
type index$
|
|
7171
|
-
declare namespace index$
|
|
7172
|
-
export type { index$
|
|
7442
|
+
type index$d_IAnnounce = IAnnounce;
|
|
7443
|
+
type index$d_IContacts = IContacts;
|
|
7444
|
+
type index$d_ICooperativeData = ICooperativeData;
|
|
7445
|
+
type index$d_IVars = IVars;
|
|
7446
|
+
type index$d_MembersData = MembersData;
|
|
7447
|
+
declare namespace index$d {
|
|
7448
|
+
export type { index$d_IAnnounce as IAnnounce, index$d_IContacts as IContacts, index$d_ICooperativeData as ICooperativeData, index$d_IVars as IVars, index$d_MembersData as MembersData };
|
|
7173
7449
|
}
|
|
7174
7450
|
|
|
7175
|
-
|
|
7176
|
-
|
|
7451
|
+
interface IBankAccount {
|
|
7452
|
+
currency: string;
|
|
7453
|
+
card_number?: string;
|
|
7454
|
+
bank_name: string;
|
|
7455
|
+
account_number: string;
|
|
7456
|
+
details: {
|
|
7457
|
+
bik: string;
|
|
7458
|
+
corr: string;
|
|
7459
|
+
kpp: string;
|
|
7460
|
+
};
|
|
7461
|
+
}
|
|
7462
|
+
interface ISbpDetails {
|
|
7463
|
+
phone: string;
|
|
7464
|
+
}
|
|
7465
|
+
type MethodTypes = 'sbp' | 'bank_transfer';
|
|
7466
|
+
interface IPaymentData {
|
|
7467
|
+
username: string;
|
|
7468
|
+
method_id: string;
|
|
7469
|
+
method_type: MethodTypes;
|
|
7470
|
+
is_default: boolean;
|
|
7471
|
+
data: ISbpDetails | IBankAccount;
|
|
7472
|
+
deleted?: boolean;
|
|
7473
|
+
block_num?: number;
|
|
7474
|
+
}
|
|
7475
|
+
|
|
7476
|
+
type index$c_IBankAccount = IBankAccount;
|
|
7477
|
+
type index$c_IPaymentData = IPaymentData;
|
|
7478
|
+
type index$c_ISbpDetails = ISbpDetails;
|
|
7479
|
+
type index$c_MethodTypes = MethodTypes;
|
|
7480
|
+
declare namespace index$c {
|
|
7481
|
+
export type { index$c_IBankAccount as IBankAccount, index$c_IPaymentData as IPaymentData, index$c_ISbpDetails as ISbpDetails, index$c_MethodTypes as MethodTypes };
|
|
7482
|
+
}
|
|
7483
|
+
|
|
7484
|
+
declare const registry_id$9 = 1;
|
|
7485
|
+
interface Action$9 extends IGenerate {
|
|
7177
7486
|
registry_id: number;
|
|
7178
7487
|
}
|
|
7179
|
-
interface Model$
|
|
7488
|
+
interface Model$9 {
|
|
7180
7489
|
meta: IMetaDocument;
|
|
7181
7490
|
coop: ICooperativeData;
|
|
7182
7491
|
vars: IVars;
|
|
7183
7492
|
}
|
|
7184
|
-
declare const title$
|
|
7185
|
-
declare const description$
|
|
7186
|
-
declare const context$
|
|
7187
|
-
declare const translations$
|
|
7493
|
+
declare const title$9 = "\u0421\u043E\u0433\u043B\u0430\u0441\u0438\u0435 \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u0426\u041F\u041F \u00AB\u0426\u0418\u0424\u0420\u041E\u0412\u041E\u0419 \u041A\u041E\u0428\u0415\u041B\u0415\u041A\u00BB";
|
|
7494
|
+
declare const description$9 = "\u0424\u043E\u0440\u043C\u0430 \u043F\u0440\u0438\u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u044F \u043A \u0446\u0435\u043B\u0435\u0432\u043E\u0439 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u0439 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043C\u0435 \u00AB\u0426\u0418\u0424\u0420\u041E\u0412\u041E\u0419 \u041A\u041E\u0428\u0415\u041B\u0415\u041A\u00BB";
|
|
7495
|
+
declare const context$9 = "<style>* { font-family: Arial, sans-serif;}</style><div class=\"digital-document\"><div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.wallet_agreement.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }} </p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.wallet_agreement.protocol_day_month_year }}</p>\n</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'PROVISION' %}</h1>\n<p class=\"subheader\"> {% trans 'consumer_program_title' %}</p>\n</div>\n<p>{% trans 'consumer_program_provision_intro' %} {{ coop.short_name }} {% trans 'cooperative_hereto' %}</p>\n<p>{% trans 'legal_basis' %}</p>\n<p>{% trans 'program_duration' %}</p>\n<p>{% trans 'program_provision_status' %}</p>\n<div style=\"text-align: center\">\n<h3>{% trans 'terms_program' %}</h3>\n</div>\n<p>{% trans 'consumer_program_terms' %}</p>\n<div style=\"text-align: center\">\n<h3>{% trans 'program_goals' %}</h3>\n</div>\n<p>{% trans 'goal_efficiency' %}</p>\n<p>{% trans 'goal_transparency' %}</p>\n<div style=\"text-align: center\"><h3>{% trans 'program_participation_procedure' %}</h3></div>\n<p>{% trans 'program_participation_terms' %}</p>\n<p>{% trans 'offer_acceptance' %}</p>\n<p>{% trans 'procedure_participation' %}</p>\n<div style=\"text-align: center\"><h3>{% trans 'user_cabinet' %}</h3></div>\n<p>{% trans 'site_access' %}</p>\n<p>{% trans 'unique_code' %}</p>\n<p>{% trans 'digital_signature' %}</p>\n<p>{% trans 'identification' %}</p>\n<p>{% trans 'information_security' %}</p>\n<div style=\"text-align: center\"><h3>{% trans 'program_interaction_mechanism' %}</h3></div>\n<p>{% trans 'program_share_contribution' %}</p>\n<p>{% trans 'share_contribution_procedure' %}</p>\n<p>{% trans 'fund_management' %}</p>\n<p>{% trans 'application_to_council' %}</p>\n<p>{% trans 'share_contribution_return' %}</p>\n<p>{% trans 'claim_return' %}</p>\n<p>{% trans 'payment_confirmation' %}</p>\n<p>{% trans 'novation_agreement' %}</p>\n<p>{% trans 'novation_agreement_terms' %}</p>\n<div style=\"text-align: center\"><h3>{% trans 'program_rights_obligations' %}</h3></div>\n<p>{% trans 'participant_rights' %}</p>\n<p>{% trans 'participant_obligations' %}</p>\n<p>{% trans 'cooperative_obligations' %}</p>\n<p>{% trans 'cooperative_rights' %}</p>\n<div style=\"text-align: center\"><h3>{% trans 'force_majeure' %}</h3></div>\n<p>{% trans 'legal_changes' %}</p>\n<p>{% trans 'program_modification' %}</p>\n<p>{% trans 'force_majeure_cases' %}</p>\n<div style=\"text-align: center\"><h3>{% trans 'program_communication' %}</h3></div>\n<p>{% trans 'communication_channels' %}</p>\n<p>{% trans 'alternative_methods' %}</p>\n<p>{% trans 'program_additional_conditions' %}</p>\n<p>{% trans 'governing_documents' %}</p>\n<p>{% trans 'changes_amendments' %}</p>\n<div class=\"digital-signature\">\n{% trans 'acceptance_agreement' %}</div></div>\n\n<style>\n.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}\n.subheader{\npadding-bottom: 20px;\n}\n</style>";
|
|
7496
|
+
declare const translations$9: {
|
|
7188
7497
|
ru: {
|
|
7189
7498
|
APPROVED: string;
|
|
7190
7499
|
protocol: string;
|
|
@@ -7240,23 +7549,23 @@ declare const translations$6: {
|
|
|
7240
7549
|
};
|
|
7241
7550
|
};
|
|
7242
7551
|
|
|
7243
|
-
declare namespace index$
|
|
7244
|
-
export { type Action$
|
|
7552
|
+
declare namespace index$b {
|
|
7553
|
+
export { type Action$9 as Action, type Model$9 as Model, context$9 as context, description$9 as description, registry_id$9 as registry_id, title$9 as title, translations$9 as translations };
|
|
7245
7554
|
}
|
|
7246
7555
|
|
|
7247
|
-
declare const registry_id$
|
|
7248
|
-
interface Action$
|
|
7556
|
+
declare const registry_id$8 = 2;
|
|
7557
|
+
interface Action$8 extends IGenerate {
|
|
7249
7558
|
registry_id: number;
|
|
7250
7559
|
}
|
|
7251
|
-
interface Model$
|
|
7560
|
+
interface Model$8 {
|
|
7252
7561
|
meta: IMetaDocument;
|
|
7253
7562
|
coop: ICooperativeData;
|
|
7254
7563
|
vars: IVars;
|
|
7255
7564
|
}
|
|
7256
|
-
declare const title$
|
|
7257
|
-
declare const description$
|
|
7258
|
-
declare const context$
|
|
7259
|
-
declare const translations$
|
|
7565
|
+
declare const title$8 = "\u0421\u043E\u0433\u043B\u0430\u0441\u0438\u0435 \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u043E \u043F\u0440\u043E\u0441\u0442\u043E\u0439 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0434\u043F\u0438\u0441\u0438";
|
|
7566
|
+
declare const description$8 = "\u0424\u043E\u0440\u043C\u0430 \u0441\u043E\u0433\u043B\u0430\u0441\u0438\u044F \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u043F\u043E\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u043E \u043F\u0440\u043E\u0441\u0442\u043E\u0439 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0434\u043F\u0438\u0441\u0438";
|
|
7567
|
+
declare const context$8 = "<div class=\"digital-document\"><div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.signature_agreement.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }} </p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.signature_agreement.protocol_day_month_year }}</p>\n</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'PROVISION' %}</h1>\n<p class=\"subheader\">{% trans 'PROVISION2' %} {{vars.full_abbr_genitive}} \"{{vars.name}}\"</p>\n</div>\n<div style=\"text-align: left\">\n<h3>{% trans 'regulation_pep_title_1' %}</h3>\n</div>\n<p> {% trans 'regulation_text_1_1' %} {{vars.website}}. {% trans 'regulation_text_1_2' %} {{vars.full_abbr_genitive}} \"{{vars.name}}\" {% trans 'regulation_text_1_4' %} {{vars.short_abbr}} \"{{vars.name}}\" {% trans 'regulation_text_1_6' %} {{vars.short_abbr}} \"{{vars.name}}\" {% trans 'regulation_text_1_8' %} {{vars.short_abbr}} \"{{vars.name}}\".{% trans 'regulation_text_1_10' %} </p>\n<div style=\"text-align: left\">\n<h3>{% trans 'regulation_pep_title_2' %}</h3>\n</div>\n<p>{% trans 'regulation_text_2_1' %} {{vars.short_abbr}} \"{{vars.name}}\", {% trans 'regulation_text_2_3' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'regulation_pep_title_3' %} </h3>\n</div>\n<p>{% trans 'regulation_text_3_1' %} {{vars.website}} {% trans 'regulation_text_3_2' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'regulation_pep_title_4' %}</h3>\n</div>\n<p>{% trans 'regulation_pep_text_4' %} </p>\n<div style=\"text-align: left\">\n<h3>{% trans 'regulation_pep_title_5' %}</h3>\n</div>\n<p>{% trans 'regulation_pep_text_5' %} </p>\n<div class=\"signature\">\n{% trans 'acceptance_agreement' %}</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'PRIL_PROVISION' %} </h1>\n</div>\n<p>{% trans 'PRIL_PROVISION_TEXT' %}</p>\n</div>\n<style>.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}</style>";
|
|
7568
|
+
declare const translations$8: {
|
|
7260
7569
|
ru: {
|
|
7261
7570
|
APPROVED: string;
|
|
7262
7571
|
protocol: string;
|
|
@@ -7286,23 +7595,23 @@ declare const translations$5: {
|
|
|
7286
7595
|
};
|
|
7287
7596
|
};
|
|
7288
7597
|
|
|
7289
|
-
declare namespace index$
|
|
7290
|
-
export { type Action$
|
|
7598
|
+
declare namespace index$a {
|
|
7599
|
+
export { type Action$8 as Action, type Model$8 as Model, context$8 as context, description$8 as description, registry_id$8 as registry_id, title$8 as title, translations$8 as translations };
|
|
7291
7600
|
}
|
|
7292
7601
|
|
|
7293
|
-
declare const registry_id$
|
|
7294
|
-
interface Action$
|
|
7602
|
+
declare const registry_id$7 = 3;
|
|
7603
|
+
interface Action$7 extends IGenerate {
|
|
7295
7604
|
registry_id: number;
|
|
7296
7605
|
}
|
|
7297
|
-
interface Model$
|
|
7606
|
+
interface Model$7 {
|
|
7298
7607
|
meta: IMetaDocument;
|
|
7299
7608
|
coop: ICooperativeData;
|
|
7300
7609
|
vars: IVars;
|
|
7301
7610
|
}
|
|
7302
|
-
declare const title$
|
|
7303
|
-
declare const description$
|
|
7304
|
-
declare const context$
|
|
7305
|
-
declare const translations$
|
|
7611
|
+
declare const title$7 = "\u0421\u043E\u0433\u043B\u0430\u0441\u0438\u0435 \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u043F\u043E\u043B\u0438\u0442\u0438\u043A\u0438 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0438 \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0445 \u0434\u0430\u043D\u043D\u044B\u0445";
|
|
7612
|
+
declare const description$7 = "\u0424\u043E\u0440\u043C\u0430 \u0441\u043E\u0433\u043B\u0430\u0441\u0438\u044F \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u043F\u043E\u043B\u0438\u0442\u0438\u043A\u0438 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0438 \u043A\u043E\u043D\u0444\u0438\u0434\u0435\u043D\u0446\u0438\u0430\u043B\u044C\u043D\u044B\u0445 \u0434\u0430\u043D\u043D\u044B\u0445";
|
|
7613
|
+
declare const context$7 = "<div class=\"digital-document\"><div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.privacy_agreement.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }} </p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.privacy_agreement.protocol_day_month_year }}</p>\n</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'PRIVACY_POLICY' %}</h1>\n</div>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_1' %}</b>\n</div>\n<p> {% trans 'privacy_policy_text_1_1' %} {{vars.full_abbr_dative}} {% trans 'privacy_policy_text_1_2' %} \"{{ vars.name}}\" {{vars.website}}.</p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_2' %}</b>\n</div>\n<p>{% trans 'privacy_policy_text_2_1' %} {{vars.website}}; {% trans 'privacy_policy_text_2_2' %} {{vars.website}}; {% trans 'privacy_policy_text_2_3' %} {{vars.website}}; {% trans 'privacy_policy_text_2_4' %}</p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_3_1' %} {{vars.short_abbr}} \"{{vars.name}}\":</b>\n</div>\n<p>{% trans 'privacy_policy_text_3' %}</p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_4' %}</b>\n</div>\n<p>{% trans 'privacy_policy_text_4_1' %} {{vars.short_abbr}} \"{{vars.name}}\"{% trans 'privacy_policy_text_4_2' %} {{vars.confidential_email}} {% trans 'privacy_policy_text_4_3' %}</p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_5' %}</b>\n</div>\n<p>{% trans 'privacy_policy_text_5_1' %} {{vars.website}} {% trans 'privacy_policy_text_5_2' %} </p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_6' %}</b>\n</div>\n<p>{% trans 'privacy_policy_text_6_1' %} {{vars.confidential_email}} {% trans 'privacy_policy_text_6_2' %} {{vars.confidential_email}} {% trans 'privacy_policy_text_6_3' %}</p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_7' %}</b>\n</div>\n<p>{% trans 'privacy_policy_text_7' %}</p>\n<div style=\"text-align: left\">\n<b>{% trans 'privacy_policy_title_8' %}</b>\n</div>\n<p>{% trans 'privacy_policy_text_8_1' %} {{vars.confidential_email}}. {% trans 'privacy_policy_text_8_2' %} {{vars.confidential_link}}.</p>\n</div>\n<style>\n.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n};\n</style>\n\n";
|
|
7614
|
+
declare const translations$7: {
|
|
7306
7615
|
ru: {
|
|
7307
7616
|
APPROVED: string;
|
|
7308
7617
|
protocol: string;
|
|
@@ -7337,15 +7646,15 @@ declare const translations$4: {
|
|
|
7337
7646
|
};
|
|
7338
7647
|
};
|
|
7339
7648
|
|
|
7340
|
-
declare namespace index$
|
|
7341
|
-
export { type Action$
|
|
7649
|
+
declare namespace index$9 {
|
|
7650
|
+
export { type Action$7 as Action, type Model$7 as Model, context$7 as context, description$7 as description, registry_id$7 as registry_id, title$7 as title, translations$7 as translations };
|
|
7342
7651
|
}
|
|
7343
7652
|
|
|
7344
|
-
declare const registry_id$
|
|
7345
|
-
interface Action$
|
|
7653
|
+
declare const registry_id$6 = 4;
|
|
7654
|
+
interface Action$6 extends IGenerate {
|
|
7346
7655
|
registry_id: number;
|
|
7347
7656
|
}
|
|
7348
|
-
interface Model$
|
|
7657
|
+
interface Model$6 {
|
|
7349
7658
|
meta: IMetaDocument;
|
|
7350
7659
|
coop: ICooperativeData;
|
|
7351
7660
|
user: {
|
|
@@ -7353,10 +7662,10 @@ interface Model$3 {
|
|
|
7353
7662
|
};
|
|
7354
7663
|
vars: IVars;
|
|
7355
7664
|
}
|
|
7356
|
-
declare const title$
|
|
7357
|
-
declare const description$
|
|
7358
|
-
declare const context$
|
|
7359
|
-
declare const translations$
|
|
7665
|
+
declare const title$6 = "\u0421\u043E\u0433\u043B\u0430\u0441\u0438\u0435 \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u0433\u043E \u0441\u043E\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u044F";
|
|
7666
|
+
declare const description$6 = "\u0424\u043E\u0440\u043C\u0430 \u0441\u043E\u0433\u043B\u0430\u0441\u0438\u044F \u0441 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C\u0438 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u0433\u043E \u0441\u043E\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u044F";
|
|
7667
|
+
declare const context$6 = "<div class=\"digital-document\"><div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.user_agreement.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ vars.full_abbr_genitive }} {{vars.name}}</p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.user_agreement.protocol_day_month_year }}</p>\n</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'USER_AGREEMENT' %}</h1>\n<p class=\"subheader\">{% trans 'USER_AGREEMENT2' %} {{vars.full_abbr_genitive}} \"{{vars.name}}\"</p>\n</div>\n<div style=\"text-align: left\">\n<p>{{vars.full_abbr}} \"{{vars.name}}\" {% trans 'user_agreement_text_2' %} {{coop.chairman.last_name}} {{coop.chairman.first_name}} {{coop.chairman.middle_name}} {% trans 'user_agreement_text_3' %} {{vars.website}} {% trans 'user_agreement_text_4' %} </p>\n<p> {% trans 'user_agreement_text_5' %} {{user.full_name}}</p>\n<p> {% trans 'user_agreement_text_6' %} {{vars.full_abbr_genitive}} \"{{vars.name}}\" {{coop.chairman.last_name}} {{coop.chairman.first_name}} {{coop.chairman.middle_name}}.</p>\n<p>{{meta.created_at}}</p></div>\n\n<style>.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}\n.subheader {padding-bottom: 20px;}\n</style>";
|
|
7668
|
+
declare const translations$6: {
|
|
7360
7669
|
ru: {
|
|
7361
7670
|
APPROVED: string;
|
|
7362
7671
|
protocol: string;
|
|
@@ -7371,24 +7680,24 @@ declare const translations$3: {
|
|
|
7371
7680
|
};
|
|
7372
7681
|
};
|
|
7373
7682
|
|
|
7374
|
-
declare namespace index$
|
|
7375
|
-
export { type Action$
|
|
7683
|
+
declare namespace index$8 {
|
|
7684
|
+
export { type Action$6 as Action, type Model$6 as Model, context$6 as context, description$6 as description, registry_id$6 as registry_id, title$6 as title, translations$6 as translations };
|
|
7376
7685
|
}
|
|
7377
7686
|
|
|
7378
|
-
declare const registry_id$
|
|
7379
|
-
interface Action$
|
|
7687
|
+
declare const registry_id$5 = 50;
|
|
7688
|
+
interface Action$5 extends IGenerate {
|
|
7380
7689
|
registry_id: number;
|
|
7381
7690
|
}
|
|
7382
|
-
interface Model$
|
|
7691
|
+
interface Model$5 {
|
|
7383
7692
|
meta: IMetaDocument;
|
|
7384
7693
|
coop: ICooperativeData;
|
|
7385
7694
|
partner: IOrganizationData;
|
|
7386
7695
|
vars: IVars;
|
|
7387
7696
|
}
|
|
7388
|
-
declare const title$
|
|
7389
|
-
declare const description$
|
|
7390
|
-
declare const context$
|
|
7391
|
-
declare const translations$
|
|
7697
|
+
declare const title$5 = "\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u0435 \u0441\u043E\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u0435 (\u043E\u0444\u0435\u0440\u0442\u0430) \u043E \u043F\u0440\u0438\u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0438 \u043A \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0435 \"\u041A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\u0430\u044F \u042D\u043A\u043E\u043D\u043E\u043C\u0438\u043A\u0430\"";
|
|
7698
|
+
declare const description$5 = "\u0424\u043E\u0440\u043C\u0430 \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u0433\u043E \u0441\u043E\u0433\u043B\u0430\u0448\u0435\u043D\u0438\u044F (\u043E\u0444\u0435\u0440\u0442\u0430) \u043E \u043F\u0440\u0438\u0441\u043E\u0435\u0434\u0438\u043D\u0435\u043D\u0438\u0438 \u043A \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0435 \"\u041A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\u0430\u044F \u042D\u043A\u043E\u043D\u043E\u043C\u0438\u043A\u0430\"";
|
|
7699
|
+
declare const context$5 = "<div class=\"digital-document\"><div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.coopenomics_agreement.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }}</p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.coopenomics_agreement.protocol_day_month_year }}</p>\n</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'PROVISION' %}</h1>\n<p class=\"subheader\">{% trans 'consumer_program_title' %}</p>\n</div>\n<p>{% trans 'coop_agreement_intro_1' %} {{coop.chairman.last_name}} {{coop.chairman.first_name}} {{coop.chairman.middle_name}}{% trans 'coop_agreement_intro_2' %} {{ partner.short_name}} {% trans 'coop_agreement_intro_3' %}{{partner.represented_by.last_name}} {{partner.represented_by.first_name}} {{partner.represented_by.middle_name}}{% trans 'coop_agreement_intro_4' %} </p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_1' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_1_text' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_2' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_2_text' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_3' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_3_text' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_4' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_4_text' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_5' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_5_text' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_6' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_6_text' %}</p>\n<div style=\"text-align: left\">\n<h3>{% trans 'coop_agreement_7' %}</h3>\n</div>\n<p>{% trans 'coop_agreement_7_text', vars.contact_email %}</p>\n<div class=\"signature\">\n{% trans 'acceptance_agreement' %}</div></div>\n<style>\n.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}\n.subheader {padding-bottom: 20px;}\n</style>\n";
|
|
7700
|
+
declare const translations$5: {
|
|
7392
7701
|
ru: {
|
|
7393
7702
|
APPROVED: string;
|
|
7394
7703
|
protocol: string;
|
|
@@ -7417,32 +7726,36 @@ declare const translations$2: {
|
|
|
7417
7726
|
};
|
|
7418
7727
|
};
|
|
7419
7728
|
|
|
7420
|
-
declare namespace index$
|
|
7421
|
-
export { type Action$
|
|
7729
|
+
declare namespace index$7 {
|
|
7730
|
+
export { type Action$5 as Action, type Model$5 as Model, context$5 as context, description$5 as description, registry_id$5 as registry_id, title$5 as title, translations$5 as translations };
|
|
7422
7731
|
}
|
|
7423
7732
|
|
|
7424
|
-
declare const registry_id$
|
|
7733
|
+
declare const registry_id$4 = 100;
|
|
7425
7734
|
/**
|
|
7426
7735
|
* Интерфейс генерации заявления на вступление в кооператив
|
|
7427
7736
|
*/
|
|
7428
|
-
interface Action$
|
|
7737
|
+
interface Action$4 extends IGenerate {
|
|
7738
|
+
braname?: string;
|
|
7429
7739
|
signature: string;
|
|
7430
7740
|
skip_save: boolean;
|
|
7431
7741
|
}
|
|
7432
|
-
interface Model$
|
|
7742
|
+
interface Model$4 {
|
|
7433
7743
|
type: string;
|
|
7434
7744
|
individual?: IIndividualData;
|
|
7435
|
-
organization?: IOrganizationData
|
|
7745
|
+
organization?: IOrganizationData & {
|
|
7746
|
+
bank_account: IBankAccount;
|
|
7747
|
+
};
|
|
7436
7748
|
entrepreneur?: IEntrepreneurData;
|
|
7437
7749
|
coop: ICooperativeData;
|
|
7750
|
+
branch?: IOrganizationData;
|
|
7438
7751
|
meta: IMetaDocument;
|
|
7439
7752
|
vars: IVars;
|
|
7440
7753
|
signature: string;
|
|
7441
7754
|
}
|
|
7442
|
-
declare const title$
|
|
7443
|
-
declare const description$
|
|
7444
|
-
declare const context$
|
|
7445
|
-
declare const translations$
|
|
7755
|
+
declare const title$4 = "\u0417\u0430\u044F\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 \u0432\u0441\u0442\u0443\u043F\u043B\u0435\u043D\u0438\u0435 \u0432 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
7756
|
+
declare const description$4 = "\u0424\u043E\u0440\u043C\u0430 \u0437\u0430\u044F\u0432\u043B\u0435\u043D\u0438\u044F \u043D\u0430 \u0432\u0441\u0442\u0443\u043F\u043B\u0435\u043D\u0438\u0435 \u0432 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0439 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
7757
|
+
declare const context$4 = "<style>\n.digital-document h1 {\nmargin: 0px;\ntext-align:center;\n}\n.digital-document {padding: 20px;}\n.subheader {\npadding-bottom: 20px;\n}\n</style>\n<div class=\"digital-document\">\n<div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.participant_application.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }}</p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.participant_application.protocol_day_month_year }}</p>\n</div>\n\n{% if type == 'individual' %}\n<h1 class=\"header\">{% trans 'application_individual' %}</h1>\n<p style=\"text-align: center\" class=\"subheader\">{% trans 'in' %} {{ coop.full_name }}<p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n<p>{% trans 'to_council_of' %} {{ coop.short_name }} {% trans 'from' %} {{ individual.last_name }} {{ individual.first_name }} {{ individual.middle_name }}, {% trans 'birthdate' %} {{ individual.birthdate }}, {% trans 'registration_address' %} {{ individual.full_address }}, {% trans 'phone_and_email_notice', individual.phone, individual.email %}{% if vars.passport_request == 'yes' %} {% trans 'passport' %} \u2116 {{individual.passport.series}} {{individual.passport.number}}, \n{% trans 'passport_code' %} {{individual.passport.code}}, {% trans 'passport_issued' %} {{individual.passport.issued_by}} {% trans 'passport_from' %} {{individual.passport.issued_at}}. {% endif %}</p>\n<p>{% trans 'request_to_join' %} {{ coop.full_name }}. {% trans 'acknowledge_documents_individual' %} {% if coop.is_branched %}</p> \n<p>{% trans 'authorize_chairman_branch', branch.short_name %} {% endif %} </p>\n<p>{% trans 'obligation_to_pay_individual', coop.initial, coop.minimum %}</p>\n<p>{% trans 'agreement_on_sms_email_notice_individual' %}</p>\n<div class=\"signature\">\n<img style=\"max-width: 150px;\" src=\"{{ signature }}\"/>\n<p>{% trans 'signature' %} </p>\n<p style=\"text-align: right;\">{{ individual.last_name }} {{ individual.first_name }} {{ individual.middle_name }}</p>\n</div>\n\n{% elif type == 'entrepreneur' %}\n<h1 class=\"header\">{% trans 'application_entrepreneur' %}</h1>\n<p style=\"text-align: center\">{% trans 'in' %} {{ coop.full_name }}<p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p> <p>{% trans 'to_council_of' %} {{ coop.short_name }} {% trans 'from_entrepreneur' %} {{ entrepreneur.last_name }} {{ entrepreneur.first_name }} {{ entrepreneur.middle_name }}, {% trans 'birthdate' %} {{ entrepreneur.birthdate }}, {% trans 'registration_address' %} {{ entrepreneur.full_address }}, {% trans 'entrepreneur_details', entrepreneur.details.inn, entrepreneur.details.ogrn, entrepreneur.bank_account.account_number, entrepreneur.bank_account.details.kpp, entrepreneur.bank_account.details.corr, entrepreneur.bank_account.details.bik, entrepreneur.bank_account.bank_name %}, {% trans 'phone_and_email_notice', entrepreneur.phone, entrepreneur.email %}</p>\n<p>{% trans 'request_to_join' %} {{ coop.full_name }}. {% trans 'acknowledge_documents_entrepreneur' %}</p> \n<p>{% if coop.is_branched %}{% trans 'authorize_chairman_branch', branch.short_name %} {% endif %} </p>\n<p>{% trans 'obligation_to_pay_entrepreneur', coop.initial, coop.minimum %} </p>\n<p>{% trans 'agreement_on_sms_email_notice_entrepreneur' %}</p>\n<div class=\"signature\">\n<img style=\"max-width: 150px;\" src=\"{{ signature }}\"/>\n<p>{% trans 'signature' %} </p>\n<p style=\"text-align: right;\">{{ entrepreneur.last_name }} {{ entrepreneur.first_name }} {{ entrepreneur.middle_name }}</p>\n</div>\n\n{% elif type == 'organization' %}\n<h1 class=\"header\">{% trans 'application_legal_entity' %}</h1>\n<p style=\"text-align: center\">{% trans 'in' %} {{ coop.full_name }}<p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n<p>{% trans 'to_council_of' %} \u00AB{{ coop.full_name }}\u00BB {% trans 'from_legal_entity' %} {{ organization.full_name }}, {% trans 'legal_address' %}: {{ organization.full_address }}, {% trans 'fact_address' %}: {{organization.fact_address}}, {% trans 'legal_entity_details', organization.details.inn, organization.details.ogrn, organization.bank_account.account_number, organization.bank_account.details.kpp, organization.bank_account.details.corr, organization.bank_account.details.bik, organization.bank_account.bank_name %}, {% trans 'phone_and_email_notice', organization.phone, organization.email %}</p>\n<p>{% trans 'request_to_join_legal_entity', organization.represented_by.position, organization.represented_by.last_name, organization.represented_by.first_name, organization.represented_by.middle_name, organization.represented_by.based_on %} {{ coop.full_name }}.</p>\n<p>{% trans 'acknowledge_documents_legal_entity' %}</p> \n<p>{% if coop.is_branched %}{% trans 'authorize_chairman_branch_organization', branch.short_name %} {% endif %}</p>\n<p>{% trans 'obligation_to_pay_legal_entity', coop.org_initial, coop.org_minimum %}</p>\n<p>{% trans 'agreement_on_sms_email_notice_legal_entity' %}</p>\n<div class=\"signature\">\n<img style=\"max-width: 150px;\" src=\"{{ signature }}\"/>\n<p>{% trans 'signature' %} </p>\n<p style=\"text-align: right;\">{{ organization.represented_by.last_name }} {{ organization.represented_by.first_name }} {{ organization.represented_by.middle_name }}</p>\n</div>\n\n{% endif %}\n</div>\n";
|
|
7758
|
+
declare const translations$4: {
|
|
7446
7759
|
ru: {
|
|
7447
7760
|
from: string;
|
|
7448
7761
|
application_individual: string;
|
|
@@ -7478,21 +7791,22 @@ declare const translations$1: {
|
|
|
7478
7791
|
passport_code: string;
|
|
7479
7792
|
passport_issued: string;
|
|
7480
7793
|
passport_from: string;
|
|
7794
|
+
fact_address: string;
|
|
7481
7795
|
};
|
|
7482
7796
|
};
|
|
7483
7797
|
|
|
7484
|
-
declare namespace index$
|
|
7485
|
-
export { type Action$
|
|
7798
|
+
declare namespace index$6 {
|
|
7799
|
+
export { type Action$4 as Action, type Model$4 as Model, context$4 as context, description$4 as description, registry_id$4 as registry_id, title$4 as title, translations$4 as translations };
|
|
7486
7800
|
}
|
|
7487
7801
|
|
|
7488
|
-
declare const registry_id = 501;
|
|
7802
|
+
declare const registry_id$3 = 501;
|
|
7489
7803
|
/**
|
|
7490
7804
|
* Интерфейс генерации решения совета
|
|
7491
7805
|
*/
|
|
7492
|
-
interface Action extends IGenerate {
|
|
7806
|
+
interface Action$3 extends IGenerate {
|
|
7493
7807
|
decision_id: number;
|
|
7494
7808
|
}
|
|
7495
|
-
interface Model {
|
|
7809
|
+
interface Model$3 {
|
|
7496
7810
|
type: string;
|
|
7497
7811
|
individual?: IIndividualData;
|
|
7498
7812
|
organization?: IOrganizationData;
|
|
@@ -7501,10 +7815,10 @@ interface Model {
|
|
|
7501
7815
|
meta: IMetaDocument;
|
|
7502
7816
|
decision: IDecisionData;
|
|
7503
7817
|
}
|
|
7504
|
-
declare const title = "\u0420\u0435\u0448\u0435\u043D\u0438\u0435 \u0441\u043E\u0432\u0435\u0442\u0430 \u043E \u043F\u0440\u0438\u0451\u043C\u0435 \u043F\u0430\u0439\u0449\u0438\u043A\u0430 \u0432 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
7505
|
-
declare const description = "\u0424\u043E\u0440\u043C\u0430 \u0440\u0435\u0448\u0435\u043D\u0438\u044F \u0441\u043E\u0432\u0435\u0442\u0430 \u043E \u043F\u0440\u0438\u0451\u043C\u0435 \u043F\u0430\u0439\u0449\u0438\u043A\u0430 \u0432 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0439 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
7506
|
-
declare const context = "<style> \nh1 {\nmargin: 0px; \ntext-align:center;\n}\nh3{\nmargin: 0px;\npadding-top: 15px;\n}\n.about {\npadding: 20px;\n}\n.about p{\nmargin: 0px;\n}\n.signature {\npadding-top: 20px;\n}\n.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}\n.subheader {\npadding-bottom: 20px; \n}\n</style>\n\n<div class=\"digital-document\"><h1 class=\"header\">{% trans 'protocol_number', decision.id %}</h1>\n<p style=\"text-align:center\" class=\"subheader\">{% trans 'council_meeting_name' %}\n{{ coop.full_name }}</p>\n<p style=\"text-align: right\"> {{ meta.created_at }}, {{ coop.city }}</p>\n\n<div class=\"about\">\n<p>{% trans 'meeting_format' %}</p>\n<p>{% trans 'meeting_place', coop.full_address %}</p>\n<p>{% trans 'meeting_date', decision.date %}</p>\n<p>{% trans 'opening_time', decision.time %}</p>\n</div>\n\n<h3>{% trans 'council_members' %}</h3>\n<ol>{% for member in coop.members %}\n<li>{{ member.last_name }} {{ member.first_name }} {{ member.middle_name }}{% if member.is_chairman %} {% trans 'chairman_of_the_council' %}{% endif %}</li>\n{% endfor %}\n</ol>\n\n<h3>{% trans 'meeting_legality' %} </h3>\n<p>{% trans 'voting_results', decision.voters_percent %} {% trans 'quorum' %} {% trans 'chairman_of_the_meeting', coop.chairman.last_name, coop.chairman.first_name, coop.chairman.middle_name %}.</p>\n\n<h3>{% trans 'agenda' %}</h3>\n<ol><li> {% trans 'decision_joincoop1' %}{% if type == 'individual' %} {{individual.last_name}} {{individual.first_name}} {{individual.middle.name}} ({{individual.birthdate}} {% trans 'birthdate' %}) {% endif %}{% if type == 'entrepreneur' %} {% trans 'entrepreneur' %} {{entrepreneur.last_name}} {{entrepreneur.first_name}} {{entrepreneur.middle.name}} ({% trans 'ogrnip' %} {{entrepreneur.details.ogrn}}) {% endif %}{% if type == 'organization' %} {{organization.short_name}} ({% trans 'ogrn' %} {{organization.details.ogrn}}) {% endif %}{% trans 'in_participants' %} {{ coop.short_name }}.\n</li></ol>\n\n<h3>{% trans 'voting' %}</h3>\n<p>{% trans 'vote_results', decision.votes_for, decision.votes_against, decision.votes_abstained %} </p>\n\n<h3>{% trans 'decision_made' %}</h3>\n<p>{% trans 'decision_joincoop2' %}{% if type == 'individual' %} {{individual.last_name}} {{individual.first_name}} {{individual.middle.name}} {{individual.birthdate}} {% trans 'birthdate' %}{% endif %} {% if type == 'entrepreneur' %}{% trans 'entrepreneur' %} {{entrepreneur.last_name}} {{entrepreneur.first_name}} {{entrepreneur.middle.name}}, {% trans 'ogrnip' %} {{entrepreneur.details.ogrn}}{% endif %} {% if type == 'organization' %} {{organization.short_name}}, {% trans 'ogrn' %} {{organization.details.ogrn}} {% endif %}</p>\n<hr>\n<p>{% trans 'closing_time', decision.time %}</p>\n\n<div class=\"signature\"> \n<p>{% trans 'signature' %}<p>\n<p style=\"text-align: right;\">{% trans 'chairman' %} {{ coop.chairman.last_name }} {{ coop.chairman.first_name }} {{ coop.chairman.middle_name }}</p></div></div>";
|
|
7507
|
-
declare const translations: {
|
|
7818
|
+
declare const title$3 = "\u0420\u0435\u0448\u0435\u043D\u0438\u0435 \u0441\u043E\u0432\u0435\u0442\u0430 \u043E \u043F\u0440\u0438\u0451\u043C\u0435 \u043F\u0430\u0439\u0449\u0438\u043A\u0430 \u0432 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
7819
|
+
declare const description$3 = "\u0424\u043E\u0440\u043C\u0430 \u0440\u0435\u0448\u0435\u043D\u0438\u044F \u0441\u043E\u0432\u0435\u0442\u0430 \u043E \u043F\u0440\u0438\u0451\u043C\u0435 \u043F\u0430\u0439\u0449\u0438\u043A\u0430 \u0432 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B\u044C\u0441\u043A\u0438\u0439 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432";
|
|
7820
|
+
declare const context$3 = "<style> \nh1 {\nmargin: 0px; \ntext-align:center;\n}\nh3{\nmargin: 0px;\npadding-top: 15px;\n}\n.about {\npadding: 20px;\n}\n.about p{\nmargin: 0px;\n}\n.signature {\npadding-top: 20px;\n}\n.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}\n.subheader {\npadding-bottom: 20px; \n}\n</style>\n\n<div class=\"digital-document\"><h1 class=\"header\">{% trans 'protocol_number', decision.id %}</h1>\n<p style=\"text-align:center\" class=\"subheader\">{% trans 'council_meeting_name' %}\n{{ coop.full_name }}</p>\n<p style=\"text-align: right\"> {{ meta.created_at }}, {{ coop.city }}</p>\n\n<div class=\"about\">\n<p>{% trans 'meeting_format' %}</p>\n<p>{% trans 'meeting_place', coop.full_address %}</p>\n<p>{% trans 'meeting_date', decision.date %}</p>\n<p>{% trans 'opening_time', decision.time %}</p>\n</div>\n\n<h3>{% trans 'council_members' %}</h3>\n<ol>{% for member in coop.members %}\n<li>{{ member.last_name }} {{ member.first_name }} {{ member.middle_name }}{% if member.is_chairman %} {% trans 'chairman_of_the_council' %}{% endif %}</li>\n{% endfor %}\n</ol>\n\n<h3>{% trans 'meeting_legality' %} </h3>\n<p>{% trans 'voting_results', decision.voters_percent %} {% trans 'quorum' %} {% trans 'chairman_of_the_meeting', coop.chairman.last_name, coop.chairman.first_name, coop.chairman.middle_name %}.</p>\n\n<h3>{% trans 'agenda' %}</h3>\n<ol><li> {% trans 'decision_joincoop1' %}{% if type == 'individual' %} {{individual.last_name}} {{individual.first_name}} {{individual.middle.name}} ({{individual.birthdate}} {% trans 'birthdate' %}) {% endif %}{% if type == 'entrepreneur' %} {% trans 'entrepreneur' %} {{entrepreneur.last_name}} {{entrepreneur.first_name}} {{entrepreneur.middle.name}} ({% trans 'ogrnip' %} {{entrepreneur.details.ogrn}}) {% endif %}{% if type == 'organization' %} {{organization.short_name}} ({% trans 'ogrn' %} {{organization.details.ogrn}}) {% endif %}{% trans 'in_participants' %} {{ coop.short_name }}.\n</li></ol>\n\n<h3>{% trans 'voting' %}</h3>\n<p>{% trans 'vote_results', decision.votes_for, decision.votes_against, decision.votes_abstained %} </p>\n\n<h3>{% trans 'decision_made' %}</h3>\n<p>{% trans 'decision_joincoop2' %}{% if type == 'individual' %} {{individual.last_name}} {{individual.first_name}} {{individual.middle.name}} {{individual.birthdate}} {% trans 'birthdate' %}{% endif %} {% if type == 'entrepreneur' %}{% trans 'entrepreneur' %} {{entrepreneur.last_name}} {{entrepreneur.first_name}} {{entrepreneur.middle.name}}, {% trans 'ogrnip' %} {{entrepreneur.details.ogrn}}{% endif %} {% if type == 'organization' %} {{organization.short_name}}, {% trans 'ogrn' %} {{organization.details.ogrn}} {% endif %}</p>\n<hr>\n<p>{% trans 'closing_time', decision.time %}</p>\n\n<div class=\"signature\"> \n<p>{% trans 'signature' %}<p>\n<p style=\"text-align: right;\">{% trans 'chairman' %} {{ coop.chairman.last_name }} {{ coop.chairman.first_name }} {{ coop.chairman.middle_name }}</p></div></div>";
|
|
7821
|
+
declare const translations$3: {
|
|
7508
7822
|
ru: {
|
|
7509
7823
|
meeting_format: string;
|
|
7510
7824
|
meeting_date: string;
|
|
@@ -7535,6 +7849,120 @@ declare const translations: {
|
|
|
7535
7849
|
};
|
|
7536
7850
|
};
|
|
7537
7851
|
|
|
7852
|
+
declare namespace index$5 {
|
|
7853
|
+
export { type Action$3 as Action, type Model$3 as Model, context$3 as context, description$3 as description, registry_id$3 as registry_id, title$3 as title, translations$3 as translations };
|
|
7854
|
+
}
|
|
7855
|
+
|
|
7856
|
+
declare const registry_id$2 = 101;
|
|
7857
|
+
/**
|
|
7858
|
+
* Интерфейс генерации заявления на выбор кооперативного участка
|
|
7859
|
+
*/
|
|
7860
|
+
interface Action$2 extends IGenerate {
|
|
7861
|
+
braname: string;
|
|
7862
|
+
}
|
|
7863
|
+
interface Model$2 {
|
|
7864
|
+
type: string;
|
|
7865
|
+
meta: IMetaDocument;
|
|
7866
|
+
vars: IVars;
|
|
7867
|
+
branch: IOrganizationData;
|
|
7868
|
+
individual?: IIndividualData;
|
|
7869
|
+
organization?: IOrganizationData;
|
|
7870
|
+
entrepreneur?: IEntrepreneurData;
|
|
7871
|
+
}
|
|
7872
|
+
declare const title$2 = "\u0417\u0430\u044F\u0432\u043B\u0435\u043D\u0438\u0435 \u043F\u0430\u0439\u0449\u0438\u043A\u0430 \u043E \u0432\u044B\u0431\u043E\u0440\u0435 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\u043E\u0433\u043E \u0443\u0447\u0430\u0441\u0442\u043A\u0430";
|
|
7873
|
+
declare const description$2 = "\u0424\u043E\u0440\u043C\u0430 \u0437\u0430\u044F\u0432\u043B\u0435\u043D\u0438\u044F \u043F\u0430\u0439\u0449\u0438\u043A\u0430 \u043E \u0432\u044B\u0431\u043E\u0440\u0435 \u043A\u043E\u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\u043D\u043E\u0433\u043E \u0443\u0447\u0430\u0441\u0442\u043A\u0430";
|
|
7874
|
+
declare const context$2 = "<style>\n.digital-document h1 {\nmargin: 0px;\ntext-align:center;\n}\n.digital-document {padding: 20px;}\n.subheader {\npadding-bottom: 20px;\n}\n</style>\n<div class=\"digital-document\">\n<div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.participant_application.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }}</p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.participant_application.protocol_day_month_year }}</p>\n</div>\n\n{% if type == 'individual' %}\n<h1 class=\"header\">{% trans 'participant_application' %}</h1>\n<p style=\"text-align: center\">{{vars.full_abbr_genitive}} \u00AB{{vars.name}}\u00BB</p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n\n<p>{% trans 'to_council_of' %} {{vars.full_abbr_genitive}} \u00AB{{vars.name}}\u00BB {% trans 'from_participant' %} {{ individual.last_name }} {{ individual.first_name }} {{ individual.middle_name }}. {% trans 'authorize_chairman_branch', branch.short_name %}</p>\n<div class=\"signature\">\n<p>{% trans 'signature' %} </p>\n<p>{{ individual.last_name }} {{ individual.first_name }} {{ individual.middle_name }}</p>\n</div>\n\n{% elif type == 'entrepreneur' %}\n<h1 class=\"header\">{% trans 'participant_application' %}</h1>\n<p style=\"text-align: center\">{{vars.full_abbr_genitive}} \u00AB{{vars.name}}\u00BB</p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n\n<p>{% trans 'to_council_of' %} {{vars.full_abbr_genitive}} \u00AB{{vars.name}}\u00BB {% trans 'from_participant' %} {% trans 'ip' %} {{ entrepreneur.last_name }} {{ entrepreneur.first_name }} {{ entrepreneur.middle_name }}. {% trans 'authorize_chairman_branch', branch.short_name %}</p>\n<div class=\"signature\">\n<p>{% trans 'signature' %} </p>\n<p>{{ entrepreneur.last_name }} {{ entrepreneur.first_name }} {{ entrepreneur.middle_name }}</p>\n</div>\n{% elif type == 'organization' %}\n<h1 class=\"header\">{% trans 'participant_application' %}</h1>\n<p style=\"text-align: center\">{{vars.full_abbr_genitive}} \u00AB{{vars.name}}\u00BB</p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n<p>{% trans 'to_council_of' %} {{vars.full_abbr_genitive}} \u00AB{{vars.name}}\u00BB {% trans 'from_participant' %} {{organization.short_name}}. {% trans 'request_to_join_legal_entity', organization.represented_by.position, organization.represented_by.last_name, organization.represented_by.first_name, organization.represented_by.middle_name, organization.represented_by.based_on, branch.short_name %}</p>\n<div class=\"signature\">\n<p>{% trans 'signature' %} </p>\n<p>{{ organization.represented_by.last_name }} {{ organization.represented_by.first_name }} {{ organization.represented_by.middle_name }}</p>\n</div>\n\n{% endif %}\n</div>";
|
|
7875
|
+
declare const translations$2: {
|
|
7876
|
+
ru: {
|
|
7877
|
+
from: string;
|
|
7878
|
+
to_council_of: string;
|
|
7879
|
+
authorize_chairman_branch: string;
|
|
7880
|
+
request_to_join_legal_entity: string;
|
|
7881
|
+
signature: string;
|
|
7882
|
+
APPROVED: string;
|
|
7883
|
+
protocol: string;
|
|
7884
|
+
participant_application: string;
|
|
7885
|
+
from_participant: string;
|
|
7886
|
+
ip: string;
|
|
7887
|
+
};
|
|
7888
|
+
};
|
|
7889
|
+
|
|
7890
|
+
declare namespace index$4 {
|
|
7891
|
+
export { type Action$2 as Action, type Model$2 as Model, context$2 as context, description$2 as description, registry_id$2 as registry_id, title$2 as title, translations$2 as translations };
|
|
7892
|
+
}
|
|
7893
|
+
|
|
7894
|
+
declare const registry_id$1 = 599;
|
|
7895
|
+
/**
|
|
7896
|
+
* Интерфейс генерации решения совета
|
|
7897
|
+
*/
|
|
7898
|
+
interface Action$1 extends IGenerate {
|
|
7899
|
+
project_id: string;
|
|
7900
|
+
}
|
|
7901
|
+
interface Model$1 {
|
|
7902
|
+
coop: ICooperativeData;
|
|
7903
|
+
meta: IMetaDocument;
|
|
7904
|
+
project: IProjectData;
|
|
7905
|
+
suggester_name: string;
|
|
7906
|
+
vars: IVars;
|
|
7907
|
+
}
|
|
7908
|
+
declare const title$1 = "\u041F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u043F\u043E\u0432\u0435\u0441\u0442\u043A\u0438 \u0434\u043D\u044F \u0441\u043E\u0431\u0440\u0430\u043D\u0438\u044F \u0441\u043E\u0432\u0435\u0442\u0430";
|
|
7909
|
+
declare const description$1 = "\u0424\u043E\u0440\u043C\u0430 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F \u043F\u043E\u0432\u0435\u0441\u0442\u043A\u0438 \u0434\u043D\u044F \u0441\u043E\u0431\u0440\u0430\u043D\u0438\u044F \u0441\u043E\u0432\u0435\u0442\u0430";
|
|
7910
|
+
declare const context$1 = "<style> \nh1 {\nmargin: 0px; \ntext-align:center;\n}\nh3{\nmargin: 0px;\npadding-top: 15px;\n}\n.about {\npadding: 20px;\n}\n.about p{\nmargin: 0px;\n}\n.signature {\npadding-top: 20px;\n}\n.digital-document {\npadding: 30px;\nwhite-space: pre-wrap;\n}\n.subheader {\npadding-bottom: 20px; \n}\n</style>\n\n<div class=\"digital-document\"><h1 class=\"header\">{% trans 'suggestion' %}</h1>\n<p style=\"text-align:center\" class=\"subheader\">{% trans 'council_meeting_name', vars.full_abbr_genitive, vars.name %}</p>\n<p style=\"text-align: right\"> {{ meta.created_at }}, {{ coop.city }}</p>\n<h3>{% trans 'agenda' %}</h3>\n<ol><li> {{project.question}}</li></ol>\n<h3>{% trans 'decision_made' %}</h3>\n<ol><li>{{project.decision}}</li></ol>\n<hr>\n\n<div class=\"signature\"><p>{% trans 'signature' %}<p><p>{{ suggester_name}} </p></div></div>";
|
|
7911
|
+
declare const translations$1: {
|
|
7912
|
+
ru: {
|
|
7913
|
+
agenda: string;
|
|
7914
|
+
decision_made: string;
|
|
7915
|
+
signature: string;
|
|
7916
|
+
suggestion: string;
|
|
7917
|
+
council_meeting_name: string;
|
|
7918
|
+
};
|
|
7919
|
+
};
|
|
7920
|
+
|
|
7921
|
+
declare namespace index$3 {
|
|
7922
|
+
export { type Action$1 as Action, type Model$1 as Model, context$1 as context, description$1 as description, registry_id$1 as registry_id, title$1 as title, translations$1 as translations };
|
|
7923
|
+
}
|
|
7924
|
+
|
|
7925
|
+
declare const registry_id = 600;
|
|
7926
|
+
/**
|
|
7927
|
+
* Интерфейс генерации решения совета
|
|
7928
|
+
*/
|
|
7929
|
+
interface Action extends IGenerate {
|
|
7930
|
+
decision_id: number;
|
|
7931
|
+
project_id: string;
|
|
7932
|
+
}
|
|
7933
|
+
interface Model {
|
|
7934
|
+
coop: ICooperativeData;
|
|
7935
|
+
meta: IMetaDocument;
|
|
7936
|
+
decision: IDecisionData;
|
|
7937
|
+
project: IProjectData;
|
|
7938
|
+
}
|
|
7939
|
+
declare const title = "\u041F\u0440\u043E\u0442\u043E\u043A\u043E\u043B\u0430 \u0440\u0435\u0448\u0435\u043D\u0438\u044F \u0441\u043E\u0432\u0435\u0442\u0430";
|
|
7940
|
+
declare const description = "\u0424\u043E\u0440\u043C\u0430 \u043F\u0440\u043E\u0442\u043E\u043A\u043E\u043B\u0430 \u0440\u0435\u0448\u0435\u043D\u0438\u044F \u0441\u043E\u0432\u0435\u0442\u0430";
|
|
7941
|
+
declare const context = "<style> \nh1 {\nmargin: 0px; \ntext-align:center;\n}\nh3{\nmargin: 0px;\npadding-top: 15px;\n}\n.about {\npadding: 20px;\n}\n.about p{\nmargin: 0px;\n}\n.signature {\npadding-top: 20px;\n}\n.digital-document {\npadding: 20px;\nwhite-space: pre-wrap;\n}\n.subheader {\npadding-bottom: 20px; \n}\n</style>\n\n<div class=\"digital-document\"><h1 class=\"header\">{% trans 'protocol_number', decision.id %}</h1>\n<p style=\"text-align:center\" class=\"subheader\">{% trans 'council_meeting_name' %}\n{{ coop.full_name }}</p>\n<p style=\"text-align: right\"> {{ meta.created_at }}, {{ coop.city }}</p>\n<div class=\"about\">\n<p>{% trans 'meeting_format' %}</p>\n<p>{% trans 'meeting_place', coop.full_address %}</p>\n<p>{% trans 'meeting_date', decision.date %}</p>\n<p>{% trans 'opening_time', decision.time %}</p>\n</div>\n<h3>{% trans 'council_members' %}</h3>\n<ol>{% for member in coop.members %}\n<li>{{ member.last_name }} {{ member.first_name }} {{ member.middle_name }}{% if member.is_chairman %} {% trans 'chairman_of_the_council' %}{% endif %}</li>\n{% endfor %}\n</ol>\n<h3>{% trans 'meeting_legality' %} </h3>\n<p>{% trans 'voting_results', decision.voters_percent %} {% trans 'quorum' %} {% trans 'chairman_of_the_meeting', coop.chairman.last_name, coop.chairman.first_name, coop.chairman.middle_name %}.</p>\n<h3>{% trans 'agenda' %}</h3>\n<ol><li> {{project.question}}\n</li></ol>\n<h3>{% trans 'voting' %}</h3>\n<p>{% trans 'vote_results', decision.votes_for, decision.votes_against, decision.votes_abstained %} </p>\n<h3>{% trans 'decision_made' %}</h3>\n<p>{{project.decision}}</p>\n<hr>\n<p>{% trans 'closing_time', decision.time %}</p>\n\n<div class=\"signature\"> \n<p>{% trans 'signature' %}<p>\n<p style=\"text-align: right;\">{% trans 'chairman' %} {{ coop.chairman.last_name }} {{ coop.chairman.first_name }} {{ coop.chairman.middle_name }}</p></div></div>";
|
|
7942
|
+
declare const translations: {
|
|
7943
|
+
ru: {
|
|
7944
|
+
meeting_format: string;
|
|
7945
|
+
meeting_date: string;
|
|
7946
|
+
meeting_place: string;
|
|
7947
|
+
opening_time: string;
|
|
7948
|
+
council_members: string;
|
|
7949
|
+
voting_results: string;
|
|
7950
|
+
meeting_legality: string;
|
|
7951
|
+
chairman_of_the_meeting: string;
|
|
7952
|
+
agenda: string;
|
|
7953
|
+
vote_results: string;
|
|
7954
|
+
decision_made: string;
|
|
7955
|
+
closing_time: string;
|
|
7956
|
+
protocol_number: string;
|
|
7957
|
+
council_meeting_name: string;
|
|
7958
|
+
chairman_of_the_council: string;
|
|
7959
|
+
signature: string;
|
|
7960
|
+
chairman: string;
|
|
7961
|
+
quorum: string;
|
|
7962
|
+
voting: string;
|
|
7963
|
+
};
|
|
7964
|
+
};
|
|
7965
|
+
|
|
7538
7966
|
type index$2_Action = Action;
|
|
7539
7967
|
type index$2_Model = Model;
|
|
7540
7968
|
declare const index$2_context: typeof context;
|
|
@@ -7547,11 +7975,11 @@ declare namespace index$2 {
|
|
|
7547
7975
|
}
|
|
7548
7976
|
|
|
7549
7977
|
declare namespace index$1 {
|
|
7550
|
-
export { index$
|
|
7978
|
+
export { index$7 as CoopenomicsAgreement, index$5 as DecisionOfParticipantApplication, index$2 as FreeDecision, index$6 as ParticipantApplication, index$9 as PrivacyPolicy, index$3 as ProjectFreeDecision, index$a as RegulationElectronicSignature, index$4 as SelectBranchStatement, index$8 as UserAgreement, index$b as WalletAgreement };
|
|
7551
7979
|
}
|
|
7552
7980
|
|
|
7553
7981
|
declare namespace index {
|
|
7554
|
-
export { index$
|
|
7982
|
+
export { index$f as Blockchain, index$e as Document, index$d as Model, index$c as Payments, index$1 as Registry, index$g as Users };
|
|
7555
7983
|
}
|
|
7556
7984
|
|
|
7557
|
-
export { index as Cooperative, index$
|
|
7985
|
+
export { index$Q as BranchContract, index as Cooperative, index$T as DraftContract, index$N as FundContract, index$K as GatewayContract, index$p as MarketContract, index$m as MsigContract, index$H as RegistratorContract, index$s as SovietContract, index$h as SystemContract, index$E as TokenContract, index$k as WrapContract, index$W as _Common };
|