cooptypes 1.0.21 → 1.0.22-alpha.1
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 +773 -408
- package/dist/index.d.cts +776 -491
- package/dist/index.d.mts +776 -491
- package/dist/index.d.ts +776 -491
- package/dist/index.mjs +763 -398
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -27,14 +27,14 @@ declare const _contract = "_contract";
|
|
|
27
27
|
*/
|
|
28
28
|
declare const _system$1 = "_system";
|
|
29
29
|
|
|
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 namespace index$
|
|
37
|
-
export { index$
|
|
30
|
+
declare const index$O__admin: typeof _admin;
|
|
31
|
+
declare const index$O__chairman: typeof _chairman;
|
|
32
|
+
declare const index$O__contract: typeof _contract;
|
|
33
|
+
declare const index$O__coopname: typeof _coopname;
|
|
34
|
+
declare const index$O__member: typeof _member;
|
|
35
|
+
declare const index$O__username: typeof _username;
|
|
36
|
+
declare namespace index$O {
|
|
37
|
+
export { index$O__admin as _admin, index$O__chairman as _chairman, index$O__contract as _contract, index$O__coopname as _coopname, index$O__member as _member, _system$1 as _system, index$O__username as _username };
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
declare const _draft: {
|
|
@@ -78,18 +78,18 @@ declare const _wrap: {
|
|
|
78
78
|
readonly testnet: "eosio.wrap";
|
|
79
79
|
};
|
|
80
80
|
|
|
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 namespace index$
|
|
92
|
-
export { index$
|
|
81
|
+
declare const index$N__draft: typeof _draft;
|
|
82
|
+
declare const index$N__fund: typeof _fund;
|
|
83
|
+
declare const index$N__gateway: typeof _gateway;
|
|
84
|
+
declare const index$N__marketplace: typeof _marketplace;
|
|
85
|
+
declare const index$N__msig: typeof _msig;
|
|
86
|
+
declare const index$N__registrator: typeof _registrator;
|
|
87
|
+
declare const index$N__soviet: typeof _soviet;
|
|
88
|
+
declare const index$N__system: typeof _system;
|
|
89
|
+
declare const index$N__token: typeof _token;
|
|
90
|
+
declare const index$N__wrap: typeof _wrap;
|
|
91
|
+
declare namespace index$N {
|
|
92
|
+
export { index$N__draft as _draft, index$N__fund as _fund, index$N__gateway as _gateway, index$N__marketplace as _marketplace, index$N__msig as _msig, index$N__registrator as _registrator, index$N__soviet as _soviet, index$N__system as _system, index$N__token as _token, index$N__wrap as _wrap };
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
/**
|
|
@@ -118,16 +118,16 @@ interface Authorization {
|
|
|
118
118
|
actor: typeof _username | typeof _chairman | typeof _admin | typeof _contract | typeof _system$1;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
type index$
|
|
122
|
-
declare const index$
|
|
123
|
-
declare const index$
|
|
124
|
-
declare const index$
|
|
125
|
-
declare namespace index$
|
|
126
|
-
export { type index$
|
|
121
|
+
type index$M_Authorization = Authorization;
|
|
122
|
+
declare const index$M_active: typeof active;
|
|
123
|
+
declare const index$M_owner: typeof owner;
|
|
124
|
+
declare const index$M_special: typeof special;
|
|
125
|
+
declare namespace index$M {
|
|
126
|
+
export { type index$M_Authorization as Authorization, index$M_active as active, index$M_owner as owner, index$M_special as special };
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
declare namespace index$
|
|
130
|
-
export { index$
|
|
129
|
+
declare namespace index$L {
|
|
130
|
+
export { index$O as Actors, index$N as ContractNames, index$M as Permissions };
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
type IName$9 = string;
|
|
@@ -153,20 +153,29 @@ interface ICreatedraft {
|
|
|
153
153
|
interface ICreatetrans {
|
|
154
154
|
scope: IName$9;
|
|
155
155
|
username: IName$9;
|
|
156
|
-
|
|
156
|
+
registry_id: IUint64$6;
|
|
157
157
|
lang: IName$9;
|
|
158
158
|
data: string;
|
|
159
159
|
}
|
|
160
160
|
interface IDeldraft {
|
|
161
161
|
scope: IName$9;
|
|
162
162
|
username: IName$9;
|
|
163
|
-
|
|
163
|
+
registry_id: IUint64$6;
|
|
164
164
|
}
|
|
165
165
|
interface IDeltrans {
|
|
166
166
|
scope: IName$9;
|
|
167
167
|
username: IName$9;
|
|
168
168
|
translate_id: IUint64$6;
|
|
169
169
|
}
|
|
170
|
+
interface IEditdraft {
|
|
171
|
+
scope: IName$9;
|
|
172
|
+
username: IName$9;
|
|
173
|
+
registry_id: IUint64$6;
|
|
174
|
+
title: string;
|
|
175
|
+
description: string;
|
|
176
|
+
context: string;
|
|
177
|
+
model: string;
|
|
178
|
+
}
|
|
170
179
|
interface IEdittrans {
|
|
171
180
|
scope: IName$9;
|
|
172
181
|
username: IName$9;
|
|
@@ -180,7 +189,6 @@ interface INewid$1 {
|
|
|
180
189
|
id: IUint64$6;
|
|
181
190
|
}
|
|
182
191
|
interface IOnedraft {
|
|
183
|
-
id: IUint64$6;
|
|
184
192
|
registry_id: IUint64$6;
|
|
185
193
|
version: IUint64$6;
|
|
186
194
|
default_translation_id: IUint64$6;
|
|
@@ -200,13 +208,14 @@ type draft_ICreatedraft = ICreatedraft;
|
|
|
200
208
|
type draft_ICreatetrans = ICreatetrans;
|
|
201
209
|
type draft_IDeldraft = IDeldraft;
|
|
202
210
|
type draft_IDeltrans = IDeltrans;
|
|
211
|
+
type draft_IEditdraft = IEditdraft;
|
|
203
212
|
type draft_IEdittrans = IEdittrans;
|
|
204
213
|
type draft_IOnedraft = IOnedraft;
|
|
205
214
|
declare namespace draft {
|
|
206
|
-
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_IEdittrans as IEdittrans, IMigrate$3 as IMigrate, IName$9 as IName, INewid$1 as INewid, draft_IOnedraft as IOnedraft, ITranslation$1 as ITranslation, IUint64$6 as IUint64 };
|
|
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$3 as IMigrate, IName$9 as IName, INewid$1 as INewid, draft_IOnedraft as IOnedraft, ITranslation$1 as ITranslation, IUint64$6 as IUint64 };
|
|
207
216
|
}
|
|
208
217
|
|
|
209
|
-
declare const authorizations$
|
|
218
|
+
declare const authorizations$2p: readonly [{
|
|
210
219
|
readonly permissions: readonly ["active"];
|
|
211
220
|
readonly actor: {
|
|
212
221
|
readonly production: "eosio";
|
|
@@ -216,18 +225,18 @@ declare const authorizations$2n: readonly [{
|
|
|
216
225
|
/**
|
|
217
226
|
* Имя действия
|
|
218
227
|
*/
|
|
219
|
-
declare const actionName$
|
|
228
|
+
declare const actionName$2p = "createdraft";
|
|
220
229
|
/**
|
|
221
230
|
* @interface
|
|
222
231
|
*/
|
|
223
|
-
type
|
|
232
|
+
type ICreateDraft = ICreatedraft;
|
|
224
233
|
|
|
225
|
-
type
|
|
226
|
-
declare namespace
|
|
227
|
-
export { type
|
|
234
|
+
type createDraft_ICreateDraft = ICreateDraft;
|
|
235
|
+
declare namespace createDraft {
|
|
236
|
+
export { type createDraft_ICreateDraft as ICreateDraft, actionName$2p as actionName, authorizations$2p as authorizations };
|
|
228
237
|
}
|
|
229
238
|
|
|
230
|
-
declare const authorizations$
|
|
239
|
+
declare const authorizations$2o: readonly [{
|
|
231
240
|
readonly permissions: readonly ["active"];
|
|
232
241
|
readonly actor: {
|
|
233
242
|
readonly production: "eosio";
|
|
@@ -237,18 +246,18 @@ declare const authorizations$2m: readonly [{
|
|
|
237
246
|
/**
|
|
238
247
|
* Имя действия
|
|
239
248
|
*/
|
|
240
|
-
declare const actionName$
|
|
249
|
+
declare const actionName$2o = "editdraft";
|
|
241
250
|
/**
|
|
242
251
|
* @interface
|
|
243
252
|
*/
|
|
244
|
-
type
|
|
253
|
+
type IEditDraft = IEditdraft;
|
|
245
254
|
|
|
246
|
-
type
|
|
247
|
-
declare namespace
|
|
248
|
-
export { type
|
|
255
|
+
type editDraft_IEditDraft = IEditDraft;
|
|
256
|
+
declare namespace editDraft {
|
|
257
|
+
export { type editDraft_IEditDraft as IEditDraft, actionName$2o as actionName, authorizations$2o as authorizations };
|
|
249
258
|
}
|
|
250
259
|
|
|
251
|
-
declare const authorizations$
|
|
260
|
+
declare const authorizations$2n: readonly [{
|
|
252
261
|
readonly permissions: readonly ["active"];
|
|
253
262
|
readonly actor: {
|
|
254
263
|
readonly production: "eosio";
|
|
@@ -258,7 +267,7 @@ declare const authorizations$2l: readonly [{
|
|
|
258
267
|
/**
|
|
259
268
|
* Имя действия
|
|
260
269
|
*/
|
|
261
|
-
declare const actionName$
|
|
270
|
+
declare const actionName$2n = "deldraft";
|
|
262
271
|
/**
|
|
263
272
|
* @interface
|
|
264
273
|
*/
|
|
@@ -266,10 +275,10 @@ type IDeleteDraft = IDeldraft;
|
|
|
266
275
|
|
|
267
276
|
type deleteDraft_IDeleteDraft = IDeleteDraft;
|
|
268
277
|
declare namespace deleteDraft {
|
|
269
|
-
export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$
|
|
278
|
+
export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$2n as actionName, authorizations$2n as authorizations };
|
|
270
279
|
}
|
|
271
280
|
|
|
272
|
-
declare const authorizations$
|
|
281
|
+
declare const authorizations$2m: readonly [{
|
|
273
282
|
readonly permissions: readonly ["active"];
|
|
274
283
|
readonly actor: {
|
|
275
284
|
readonly production: "eosio";
|
|
@@ -279,7 +288,28 @@ declare const authorizations$2k: readonly [{
|
|
|
279
288
|
/**
|
|
280
289
|
* Имя действия
|
|
281
290
|
*/
|
|
282
|
-
declare const actionName$
|
|
291
|
+
declare const actionName$2m = "createtrans";
|
|
292
|
+
/**
|
|
293
|
+
* @interface
|
|
294
|
+
*/
|
|
295
|
+
type ICreateTranslation = ICreatetrans;
|
|
296
|
+
|
|
297
|
+
type createTranslation_ICreateTranslation = ICreateTranslation;
|
|
298
|
+
declare namespace createTranslation {
|
|
299
|
+
export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$2m as actionName, authorizations$2m as authorizations };
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
declare const authorizations$2l: readonly [{
|
|
303
|
+
readonly permissions: readonly ["active"];
|
|
304
|
+
readonly actor: {
|
|
305
|
+
readonly production: "eosio";
|
|
306
|
+
readonly testnet: "eosio";
|
|
307
|
+
};
|
|
308
|
+
}];
|
|
309
|
+
/**
|
|
310
|
+
* Имя действия
|
|
311
|
+
*/
|
|
312
|
+
declare const actionName$2l = "edittrans";
|
|
283
313
|
/**
|
|
284
314
|
* @interface
|
|
285
315
|
*/
|
|
@@ -287,10 +317,10 @@ type IEditTranslation = IEdittrans;
|
|
|
287
317
|
|
|
288
318
|
type editTranslation_IEditTranslation = IEditTranslation;
|
|
289
319
|
declare namespace editTranslation {
|
|
290
|
-
export { type editTranslation_IEditTranslation as IEditTranslation, actionName$
|
|
320
|
+
export { type editTranslation_IEditTranslation as IEditTranslation, actionName$2l as actionName, authorizations$2l as authorizations };
|
|
291
321
|
}
|
|
292
322
|
|
|
293
|
-
declare const authorizations$
|
|
323
|
+
declare const authorizations$2k: readonly [{
|
|
294
324
|
readonly permissions: readonly ["active"];
|
|
295
325
|
readonly actor: {
|
|
296
326
|
readonly production: "draft";
|
|
@@ -300,7 +330,7 @@ declare const authorizations$2j: readonly [{
|
|
|
300
330
|
/**
|
|
301
331
|
* Имя действия
|
|
302
332
|
*/
|
|
303
|
-
declare const actionName$
|
|
333
|
+
declare const actionName$2k = "newid";
|
|
304
334
|
/**
|
|
305
335
|
* @interface
|
|
306
336
|
* Действие вызывается контрактом в процессе исполнения для возврата идентификатора черновика.
|
|
@@ -309,12 +339,12 @@ type INewId = INewid$1;
|
|
|
309
339
|
|
|
310
340
|
type newId_INewId = INewId;
|
|
311
341
|
declare namespace newId {
|
|
312
|
-
export { type newId_INewId as INewId, actionName$
|
|
342
|
+
export { type newId_INewId as INewId, actionName$2k as actionName, authorizations$2k as authorizations };
|
|
313
343
|
}
|
|
314
344
|
|
|
315
|
-
declare const index$
|
|
316
|
-
declare namespace index$
|
|
317
|
-
export { createDraft as CreateDraft, createTranslation as CreateTranslation, deleteDraft as DeleteDraft, editTranslation as EditTranslation, index$
|
|
345
|
+
declare const index$K_newId: typeof newId;
|
|
346
|
+
declare namespace index$K {
|
|
347
|
+
export { createDraft as CreateDraft, createTranslation as CreateTranslation, deleteDraft as DeleteDraft, editDraft as EditDraft, editTranslation as EditTranslation, index$K_newId as newId };
|
|
318
348
|
}
|
|
319
349
|
|
|
320
350
|
/**
|
|
@@ -350,13 +380,13 @@ declare const scope$E = "_contract";
|
|
|
350
380
|
*/
|
|
351
381
|
type ITranslation = ITranslation$1;
|
|
352
382
|
|
|
353
|
-
type
|
|
354
|
-
declare namespace translations {
|
|
355
|
-
export { type
|
|
383
|
+
type translations$3_ITranslation = ITranslation;
|
|
384
|
+
declare namespace translations$3 {
|
|
385
|
+
export { type translations$3_ITranslation as ITranslation, scope$E as scope, tableName$E as tableName };
|
|
356
386
|
}
|
|
357
387
|
|
|
358
|
-
declare namespace index$
|
|
359
|
-
export { drafts as Drafts, translations as Translations };
|
|
388
|
+
declare namespace index$J {
|
|
389
|
+
export { drafts as Drafts, translations$3 as Translations };
|
|
360
390
|
}
|
|
361
391
|
|
|
362
392
|
declare const contractName$9: {
|
|
@@ -364,8 +394,8 @@ declare const contractName$9: {
|
|
|
364
394
|
readonly testnet: "drafttest222";
|
|
365
395
|
};
|
|
366
396
|
|
|
367
|
-
declare namespace index$
|
|
368
|
-
export { index$
|
|
397
|
+
declare namespace index$I {
|
|
398
|
+
export { index$K as Actions, draft as Interfaces, index$J as Tables, contractName$9 as contractName };
|
|
369
399
|
}
|
|
370
400
|
|
|
371
401
|
type IAsset$6 = string;
|
|
@@ -553,7 +583,7 @@ declare namespace fund {
|
|
|
553
583
|
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$2 as IMigrate, IName$8 as IName, INewfund$1 as INewfund, fund_INewwithdraw 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$5 as IUint64 };
|
|
554
584
|
}
|
|
555
585
|
|
|
556
|
-
declare const authorizations$
|
|
586
|
+
declare const authorizations$2j: readonly [{
|
|
557
587
|
readonly permissions: readonly ["active"];
|
|
558
588
|
readonly actor: {
|
|
559
589
|
readonly production: "fund";
|
|
@@ -563,7 +593,7 @@ declare const authorizations$2i: readonly [{
|
|
|
563
593
|
/**
|
|
564
594
|
* Имя действия
|
|
565
595
|
*/
|
|
566
|
-
declare const actionName$
|
|
596
|
+
declare const actionName$2j = "addaccum";
|
|
567
597
|
/**
|
|
568
598
|
* @interface
|
|
569
599
|
*/
|
|
@@ -571,10 +601,10 @@ type IAddAccumulation = IAddaccum;
|
|
|
571
601
|
|
|
572
602
|
type addAccumulation_IAddAccumulation = IAddAccumulation;
|
|
573
603
|
declare namespace addAccumulation {
|
|
574
|
-
export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$
|
|
604
|
+
export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$2j as actionName, authorizations$2j as authorizations };
|
|
575
605
|
}
|
|
576
606
|
|
|
577
|
-
declare const authorizations$
|
|
607
|
+
declare const authorizations$2i: readonly [{
|
|
578
608
|
readonly permissions: readonly ["active"];
|
|
579
609
|
readonly actor: {
|
|
580
610
|
readonly production: "fund";
|
|
@@ -584,7 +614,7 @@ declare const authorizations$2h: readonly [{
|
|
|
584
614
|
/**
|
|
585
615
|
* Имя действия
|
|
586
616
|
*/
|
|
587
|
-
declare const actionName$
|
|
617
|
+
declare const actionName$2i = "subaccum";
|
|
588
618
|
/**
|
|
589
619
|
* @interface
|
|
590
620
|
*/
|
|
@@ -592,10 +622,10 @@ type ISubAccumulation = ISubaccum;
|
|
|
592
622
|
|
|
593
623
|
type subAccumulation_ISubAccumulation = ISubAccumulation;
|
|
594
624
|
declare namespace subAccumulation {
|
|
595
|
-
export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$
|
|
625
|
+
export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$2i as actionName, authorizations$2i as authorizations };
|
|
596
626
|
}
|
|
597
627
|
|
|
598
|
-
declare const authorizations$
|
|
628
|
+
declare const authorizations$2h: readonly [{
|
|
599
629
|
readonly permissions: readonly ["active"];
|
|
600
630
|
readonly actor: {
|
|
601
631
|
readonly production: "gateway";
|
|
@@ -605,7 +635,7 @@ declare const authorizations$2g: readonly [{
|
|
|
605
635
|
/**
|
|
606
636
|
* Имя действия
|
|
607
637
|
*/
|
|
608
|
-
declare const actionName$
|
|
638
|
+
declare const actionName$2h = "addcirculate";
|
|
609
639
|
/**
|
|
610
640
|
* @interface
|
|
611
641
|
*/
|
|
@@ -613,10 +643,10 @@ type IAddCirculation = IAddcirculate;
|
|
|
613
643
|
|
|
614
644
|
type addCirculation_IAddCirculation = IAddCirculation;
|
|
615
645
|
declare namespace addCirculation {
|
|
616
|
-
export { type addCirculation_IAddCirculation as IAddCirculation, actionName$
|
|
646
|
+
export { type addCirculation_IAddCirculation as IAddCirculation, actionName$2h as actionName, authorizations$2h as authorizations };
|
|
617
647
|
}
|
|
618
648
|
|
|
619
|
-
declare const authorizations$
|
|
649
|
+
declare const authorizations$2g: readonly [{
|
|
620
650
|
readonly permissions: readonly ["active"];
|
|
621
651
|
readonly actor: {
|
|
622
652
|
readonly production: "fund";
|
|
@@ -626,7 +656,7 @@ declare const authorizations$2f: readonly [{
|
|
|
626
656
|
/**
|
|
627
657
|
* Имя действия
|
|
628
658
|
*/
|
|
629
|
-
declare const actionName$
|
|
659
|
+
declare const actionName$2g = "addexpense";
|
|
630
660
|
/**
|
|
631
661
|
* @interface
|
|
632
662
|
*/
|
|
@@ -634,10 +664,10 @@ type IAddExpense = IAddexpense;
|
|
|
634
664
|
|
|
635
665
|
type addExpense_IAddExpense = IAddExpense;
|
|
636
666
|
declare namespace addExpense {
|
|
637
|
-
export { type addExpense_IAddExpense as IAddExpense, actionName$
|
|
667
|
+
export { type addExpense_IAddExpense as IAddExpense, actionName$2g as actionName, authorizations$2g as authorizations };
|
|
638
668
|
}
|
|
639
669
|
|
|
640
|
-
declare const authorizations$
|
|
670
|
+
declare const authorizations$2f: readonly [{
|
|
641
671
|
readonly permissions: readonly ["active"];
|
|
642
672
|
readonly actor: {
|
|
643
673
|
readonly production: "soviet";
|
|
@@ -647,17 +677,17 @@ declare const authorizations$2e: readonly [{
|
|
|
647
677
|
/**
|
|
648
678
|
* Имя действия
|
|
649
679
|
*/
|
|
650
|
-
declare const actionName$
|
|
680
|
+
declare const actionName$2f = "authorize";
|
|
651
681
|
/**
|
|
652
682
|
* @interface
|
|
653
683
|
*/
|
|
654
684
|
type IAuthorize$4 = IAuthorize$5;
|
|
655
685
|
|
|
656
686
|
declare namespace authorizeWithdraw {
|
|
657
|
-
export { type IAuthorize$4 as IAuthorize, actionName$
|
|
687
|
+
export { type IAuthorize$4 as IAuthorize, actionName$2f as actionName, authorizations$2f as authorizations };
|
|
658
688
|
}
|
|
659
689
|
|
|
660
|
-
declare const authorizations$
|
|
690
|
+
declare const authorizations$2e: readonly [{
|
|
661
691
|
readonly permissions: readonly ["active", {
|
|
662
692
|
readonly contract: "_contract";
|
|
663
693
|
readonly action: "actionName";
|
|
@@ -667,7 +697,7 @@ declare const authorizations$2d: readonly [{
|
|
|
667
697
|
/**
|
|
668
698
|
* Имя действия
|
|
669
699
|
*/
|
|
670
|
-
declare const actionName$
|
|
700
|
+
declare const actionName$2e = "complete";
|
|
671
701
|
/**
|
|
672
702
|
* @interface
|
|
673
703
|
*/
|
|
@@ -675,10 +705,10 @@ type ICompleteWithdraw = IComplete$1;
|
|
|
675
705
|
|
|
676
706
|
type completeWithdraw$1_ICompleteWithdraw = ICompleteWithdraw;
|
|
677
707
|
declare namespace completeWithdraw$1 {
|
|
678
|
-
export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$
|
|
708
|
+
export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$2e as actionName, authorizations$2e as authorizations };
|
|
679
709
|
}
|
|
680
710
|
|
|
681
|
-
declare const authorizations$
|
|
711
|
+
declare const authorizations$2d: readonly [{
|
|
682
712
|
readonly permissions: readonly ["active"];
|
|
683
713
|
readonly actor: {
|
|
684
714
|
readonly production: "fund";
|
|
@@ -688,7 +718,7 @@ declare const authorizations$2c: readonly [{
|
|
|
688
718
|
/**
|
|
689
719
|
* Имя действия
|
|
690
720
|
*/
|
|
691
|
-
declare const actionName$
|
|
721
|
+
declare const actionName$2d = "newfund";
|
|
692
722
|
/**
|
|
693
723
|
* @interface
|
|
694
724
|
*/
|
|
@@ -696,17 +726,17 @@ type INewfund = INewfund$1;
|
|
|
696
726
|
|
|
697
727
|
type newFund_INewfund = INewfund;
|
|
698
728
|
declare namespace newFund {
|
|
699
|
-
export { type newFund_INewfund as INewfund, actionName$
|
|
729
|
+
export { type newFund_INewfund as INewfund, actionName$2d as actionName, authorizations$2d as authorizations };
|
|
700
730
|
}
|
|
701
731
|
|
|
702
|
-
declare const authorizations$
|
|
732
|
+
declare const authorizations$2c: readonly [{
|
|
703
733
|
readonly permissions: readonly ["active"];
|
|
704
734
|
readonly actor: "_chairman";
|
|
705
735
|
}];
|
|
706
736
|
/**
|
|
707
737
|
* Имя действия
|
|
708
738
|
*/
|
|
709
|
-
declare const actionName$
|
|
739
|
+
declare const actionName$2c = "createfund";
|
|
710
740
|
/**
|
|
711
741
|
* @interface
|
|
712
742
|
*/
|
|
@@ -714,17 +744,17 @@ type ICreateFund = ICreatefund;
|
|
|
714
744
|
|
|
715
745
|
type createFund_ICreateFund = ICreateFund;
|
|
716
746
|
declare namespace createFund {
|
|
717
|
-
export { type createFund_ICreateFund as ICreateFund, actionName$
|
|
747
|
+
export { type createFund_ICreateFund as ICreateFund, actionName$2c as actionName, authorizations$2c as authorizations };
|
|
718
748
|
}
|
|
719
749
|
|
|
720
|
-
declare const authorizations$
|
|
750
|
+
declare const authorizations$2b: readonly [{
|
|
721
751
|
readonly permissions: readonly ["active"];
|
|
722
752
|
readonly actor: "_chairman";
|
|
723
753
|
}];
|
|
724
754
|
/**
|
|
725
755
|
* Имя действия
|
|
726
756
|
*/
|
|
727
|
-
declare const actionName$
|
|
757
|
+
declare const actionName$2b = "delfund";
|
|
728
758
|
/**
|
|
729
759
|
* @interface
|
|
730
760
|
*/
|
|
@@ -732,17 +762,17 @@ type IDeleteFund = IDelfund;
|
|
|
732
762
|
|
|
733
763
|
type deleteFund_IDeleteFund = IDeleteFund;
|
|
734
764
|
declare namespace deleteFund {
|
|
735
|
-
export { type deleteFund_IDeleteFund as IDeleteFund, actionName$
|
|
765
|
+
export { type deleteFund_IDeleteFund as IDeleteFund, actionName$2b as actionName, authorizations$2b as authorizations };
|
|
736
766
|
}
|
|
737
767
|
|
|
738
|
-
declare const authorizations$
|
|
768
|
+
declare const authorizations$2a: readonly [{
|
|
739
769
|
readonly permissions: readonly ["active"];
|
|
740
770
|
readonly actor: "_chairman";
|
|
741
771
|
}];
|
|
742
772
|
/**
|
|
743
773
|
* Имя действия
|
|
744
774
|
*/
|
|
745
|
-
declare const actionName$
|
|
775
|
+
declare const actionName$2a = "editfund";
|
|
746
776
|
/**
|
|
747
777
|
* @interface
|
|
748
778
|
*/
|
|
@@ -750,7 +780,7 @@ type IEditFund = IEditfund;
|
|
|
750
780
|
|
|
751
781
|
type editFund_IEditFund = IEditFund;
|
|
752
782
|
declare namespace editFund {
|
|
753
|
-
export { type editFund_IEditFund as IEditFund, actionName$
|
|
783
|
+
export { type editFund_IEditFund as IEditFund, actionName$2a as actionName, authorizations$2a as authorizations };
|
|
754
784
|
}
|
|
755
785
|
|
|
756
786
|
/**
|
|
@@ -759,7 +789,7 @@ declare namespace editFund {
|
|
|
759
789
|
* на совершение действия или авторизация любого {@link Actors._contract | контракта},
|
|
760
790
|
* которому было передано управление фондом накопления или списания.
|
|
761
791
|
*/
|
|
762
|
-
declare const authorizations$
|
|
792
|
+
declare const authorizations$29: readonly [{
|
|
763
793
|
readonly permissions: readonly ["active"];
|
|
764
794
|
readonly actor: "_username";
|
|
765
795
|
}, {
|
|
@@ -775,7 +805,7 @@ declare const authorizations$28: readonly [{
|
|
|
775
805
|
/**
|
|
776
806
|
* Имя действия
|
|
777
807
|
*/
|
|
778
|
-
declare const actionName$
|
|
808
|
+
declare const actionName$29 = "fundwithdraw";
|
|
779
809
|
/**
|
|
780
810
|
* @interface
|
|
781
811
|
*/
|
|
@@ -783,10 +813,10 @@ type ICreateWithdraw = IFundwithdraw$1;
|
|
|
783
813
|
|
|
784
814
|
type createWithdraw$1_ICreateWithdraw = ICreateWithdraw;
|
|
785
815
|
declare namespace createWithdraw$1 {
|
|
786
|
-
export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$
|
|
816
|
+
export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$29 as actionName, authorizations$29 as authorizations };
|
|
787
817
|
}
|
|
788
818
|
|
|
789
|
-
declare const authorizations$
|
|
819
|
+
declare const authorizations$28: readonly [{
|
|
790
820
|
readonly permissions: readonly ["active"];
|
|
791
821
|
readonly actor: {
|
|
792
822
|
readonly production: "soviet";
|
|
@@ -796,17 +826,17 @@ declare const authorizations$27: readonly [{
|
|
|
796
826
|
/**
|
|
797
827
|
* Имя действия
|
|
798
828
|
*/
|
|
799
|
-
declare const actionName$
|
|
829
|
+
declare const actionName$28 = "init";
|
|
800
830
|
/**
|
|
801
831
|
* @interface
|
|
802
832
|
*/
|
|
803
833
|
type IInit$6 = IInit$7;
|
|
804
834
|
|
|
805
835
|
declare namespace init$3 {
|
|
806
|
-
export { type IInit$6 as IInit, actionName$
|
|
836
|
+
export { type IInit$6 as IInit, actionName$28 as actionName, authorizations$28 as authorizations };
|
|
807
837
|
}
|
|
808
838
|
|
|
809
|
-
declare const authorizations$
|
|
839
|
+
declare const authorizations$27: readonly [{
|
|
810
840
|
readonly permissions: readonly ["active"];
|
|
811
841
|
readonly actor: {
|
|
812
842
|
readonly production: "fund";
|
|
@@ -816,7 +846,7 @@ declare const authorizations$26: readonly [{
|
|
|
816
846
|
/**
|
|
817
847
|
* Имя действия
|
|
818
848
|
*/
|
|
819
|
-
declare const actionName$
|
|
849
|
+
declare const actionName$27 = "newwithdraw";
|
|
820
850
|
/**
|
|
821
851
|
* @interface
|
|
822
852
|
*/
|
|
@@ -824,10 +854,10 @@ type INewWithdraw = INewwithdraw;
|
|
|
824
854
|
|
|
825
855
|
type newWithdraw_INewWithdraw = INewWithdraw;
|
|
826
856
|
declare namespace newWithdraw {
|
|
827
|
-
export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$
|
|
857
|
+
export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$27 as actionName, authorizations$27 as authorizations };
|
|
828
858
|
}
|
|
829
859
|
|
|
830
|
-
declare const authorizations$
|
|
860
|
+
declare const authorizations$26: readonly [{
|
|
831
861
|
readonly permissions: readonly ["active"];
|
|
832
862
|
readonly actor: {
|
|
833
863
|
readonly production: "marketplace";
|
|
@@ -843,7 +873,7 @@ declare const authorizations$25: readonly [{
|
|
|
843
873
|
/**
|
|
844
874
|
* Имя действия
|
|
845
875
|
*/
|
|
846
|
-
declare const actionName$
|
|
876
|
+
declare const actionName$26 = "spreadamount";
|
|
847
877
|
/**
|
|
848
878
|
* @interface
|
|
849
879
|
*/
|
|
@@ -851,10 +881,10 @@ type ISpreadAmount = ISpreadamount;
|
|
|
851
881
|
|
|
852
882
|
type spreadAmount_ISpreadAmount = ISpreadAmount;
|
|
853
883
|
declare namespace spreadAmount {
|
|
854
|
-
export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$
|
|
884
|
+
export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$26 as actionName, authorizations$26 as authorizations };
|
|
855
885
|
}
|
|
856
886
|
|
|
857
|
-
declare const authorizations$
|
|
887
|
+
declare const authorizations$25: readonly [{
|
|
858
888
|
readonly permissions: readonly ["active"];
|
|
859
889
|
readonly actor: {
|
|
860
890
|
readonly production: "gateway";
|
|
@@ -864,7 +894,7 @@ declare const authorizations$24: readonly [{
|
|
|
864
894
|
/**
|
|
865
895
|
* Имя действия
|
|
866
896
|
*/
|
|
867
|
-
declare const actionName$
|
|
897
|
+
declare const actionName$25 = "subcirculate";
|
|
868
898
|
/**
|
|
869
899
|
* @interface
|
|
870
900
|
*/
|
|
@@ -872,7 +902,7 @@ type ISubCirculation = ISubcirculate;
|
|
|
872
902
|
|
|
873
903
|
type subCirculation_ISubCirculation = ISubCirculation;
|
|
874
904
|
declare namespace subCirculation {
|
|
875
|
-
export { type subCirculation_ISubCirculation as ISubCirculation, actionName$
|
|
905
|
+
export { type subCirculation_ISubCirculation as ISubCirculation, actionName$25 as actionName, authorizations$25 as authorizations };
|
|
876
906
|
}
|
|
877
907
|
|
|
878
908
|
/**
|
|
@@ -880,7 +910,7 @@ declare namespace subCirculation {
|
|
|
880
910
|
* Вызывается контрактом автоматически по ходу выполнения логики для прозрачного добавления фонда накопления.
|
|
881
911
|
*/
|
|
882
912
|
|
|
883
|
-
declare namespace index$
|
|
913
|
+
declare namespace index$H {
|
|
884
914
|
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 };
|
|
885
915
|
}
|
|
886
916
|
|
|
@@ -974,7 +1004,7 @@ declare namespace fundWithdraws {
|
|
|
974
1004
|
*
|
|
975
1005
|
*/
|
|
976
1006
|
|
|
977
|
-
declare namespace index$
|
|
1007
|
+
declare namespace index$G {
|
|
978
1008
|
export { accumulationFunds as AccumulatedFunds, coopWallet as CoopWallet, expenseFunds as ExpensedFunds, fundWithdraws as FundWithdraws };
|
|
979
1009
|
}
|
|
980
1010
|
|
|
@@ -983,8 +1013,8 @@ declare const contractName$8: {
|
|
|
983
1013
|
readonly testnet: "fundtest2222";
|
|
984
1014
|
};
|
|
985
1015
|
|
|
986
|
-
declare namespace index$
|
|
987
|
-
export { index$
|
|
1016
|
+
declare namespace index$F {
|
|
1017
|
+
export { index$H as Actions, fund as Interfaces, index$G as Tables, contractName$8 as contractName };
|
|
988
1018
|
}
|
|
989
1019
|
|
|
990
1020
|
type IAsset$5 = string;
|
|
@@ -1107,7 +1137,7 @@ declare namespace gateway {
|
|
|
1107
1137
|
* Имя действия
|
|
1108
1138
|
* Требуется авторизация {@link Actors._coopname | технического аккаунта кооператива} со специальным разрешением.
|
|
1109
1139
|
*/
|
|
1110
|
-
declare const authorizations$
|
|
1140
|
+
declare const authorizations$24: readonly [{
|
|
1111
1141
|
readonly permissions: readonly ["active", {
|
|
1112
1142
|
readonly contract: "_contract";
|
|
1113
1143
|
readonly action: "actionName";
|
|
@@ -1117,7 +1147,7 @@ declare const authorizations$23: readonly [{
|
|
|
1117
1147
|
/**
|
|
1118
1148
|
* Имя действия
|
|
1119
1149
|
*/
|
|
1120
|
-
declare const actionName$
|
|
1150
|
+
declare const actionName$24 = "deposit";
|
|
1121
1151
|
/**
|
|
1122
1152
|
* @interface
|
|
1123
1153
|
* Действие для создания заявки на взнос в кошелёк, которое производится уполномоченным аккаунтом от кооператива с бэкенда.
|
|
@@ -1132,14 +1162,14 @@ type ICreateDeposit = IDeposit;
|
|
|
1132
1162
|
|
|
1133
1163
|
type createDeposit_ICreateDeposit = ICreateDeposit;
|
|
1134
1164
|
declare namespace createDeposit {
|
|
1135
|
-
export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$
|
|
1165
|
+
export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$24 as actionName, authorizations$24 as authorizations };
|
|
1136
1166
|
}
|
|
1137
1167
|
|
|
1138
1168
|
/**
|
|
1139
1169
|
* Имя действия
|
|
1140
1170
|
* Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
|
|
1141
1171
|
*/
|
|
1142
|
-
declare const authorizations$
|
|
1172
|
+
declare const authorizations$23: readonly [{
|
|
1143
1173
|
readonly permissions: readonly ["active", {
|
|
1144
1174
|
readonly contract: "_contract";
|
|
1145
1175
|
readonly action: "actionName";
|
|
@@ -1149,7 +1179,7 @@ declare const authorizations$22: readonly [{
|
|
|
1149
1179
|
/**
|
|
1150
1180
|
* Имя действия
|
|
1151
1181
|
*/
|
|
1152
|
-
declare const actionName$
|
|
1182
|
+
declare const actionName$23 = "dpcomplete";
|
|
1153
1183
|
/**
|
|
1154
1184
|
* @interface
|
|
1155
1185
|
*/
|
|
@@ -1157,14 +1187,14 @@ type ICompleteDeposit = IDpcomplete;
|
|
|
1157
1187
|
|
|
1158
1188
|
type completeDeposit_ICompleteDeposit = ICompleteDeposit;
|
|
1159
1189
|
declare namespace completeDeposit {
|
|
1160
|
-
export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$
|
|
1190
|
+
export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$23 as actionName, authorizations$23 as authorizations };
|
|
1161
1191
|
}
|
|
1162
1192
|
|
|
1163
1193
|
/**
|
|
1164
1194
|
* Имя действия
|
|
1165
1195
|
* Требуется авторизация {@link Actors._admin | администратором кооператива} со специальным разрешением.
|
|
1166
1196
|
*/
|
|
1167
|
-
declare const authorizations$
|
|
1197
|
+
declare const authorizations$22: readonly [{
|
|
1168
1198
|
readonly permissions: readonly ["active", {
|
|
1169
1199
|
readonly contract: "_contract";
|
|
1170
1200
|
readonly action: "actionName";
|
|
@@ -1174,21 +1204,21 @@ declare const authorizations$21: readonly [{
|
|
|
1174
1204
|
/**
|
|
1175
1205
|
* Имя действия
|
|
1176
1206
|
*/
|
|
1177
|
-
declare const actionName$
|
|
1207
|
+
declare const actionName$22 = "dpfail";
|
|
1178
1208
|
/**
|
|
1179
1209
|
* @interface
|
|
1180
1210
|
*/
|
|
1181
1211
|
type IFailDeposit$2 = IDpfail;
|
|
1182
1212
|
|
|
1183
1213
|
declare namespace failDeposit {
|
|
1184
|
-
export { type IFailDeposit$2 as IFailDeposit, actionName$
|
|
1214
|
+
export { type IFailDeposit$2 as IFailDeposit, actionName$22 as actionName, authorizations$22 as authorizations };
|
|
1185
1215
|
}
|
|
1186
1216
|
|
|
1187
1217
|
/**
|
|
1188
1218
|
* Имя действия
|
|
1189
1219
|
* Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
|
|
1190
1220
|
*/
|
|
1191
|
-
declare const authorizations$
|
|
1221
|
+
declare const authorizations$21: readonly [{
|
|
1192
1222
|
readonly permissions: readonly ["active"];
|
|
1193
1223
|
readonly actor: {
|
|
1194
1224
|
readonly production: "gateway";
|
|
@@ -1198,7 +1228,7 @@ declare const authorizations$20: readonly [{
|
|
|
1198
1228
|
/**
|
|
1199
1229
|
* Имя действия
|
|
1200
1230
|
*/
|
|
1201
|
-
declare const actionName$
|
|
1231
|
+
declare const actionName$21 = "newdepositid";
|
|
1202
1232
|
/**
|
|
1203
1233
|
* @interface
|
|
1204
1234
|
*/
|
|
@@ -1206,14 +1236,14 @@ type NewDepositId = INewdepositid;
|
|
|
1206
1236
|
|
|
1207
1237
|
type newDepositId_NewDepositId = NewDepositId;
|
|
1208
1238
|
declare namespace newDepositId {
|
|
1209
|
-
export { type newDepositId_NewDepositId as NewDepositId, actionName$
|
|
1239
|
+
export { type newDepositId_NewDepositId as NewDepositId, actionName$21 as actionName, authorizations$21 as authorizations };
|
|
1210
1240
|
}
|
|
1211
1241
|
|
|
1212
1242
|
/**
|
|
1213
1243
|
* Имя действия
|
|
1214
1244
|
* Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
|
|
1215
1245
|
*/
|
|
1216
|
-
declare const authorizations$
|
|
1246
|
+
declare const authorizations$20: readonly [{
|
|
1217
1247
|
readonly permissions: readonly ["active"];
|
|
1218
1248
|
readonly actor: {
|
|
1219
1249
|
readonly production: "gateway";
|
|
@@ -1223,7 +1253,7 @@ declare const authorizations$1$: readonly [{
|
|
|
1223
1253
|
/**
|
|
1224
1254
|
* Имя действия
|
|
1225
1255
|
*/
|
|
1226
|
-
declare const actionName$
|
|
1256
|
+
declare const actionName$20 = "newwithdrid";
|
|
1227
1257
|
/**
|
|
1228
1258
|
* @interface
|
|
1229
1259
|
*/
|
|
@@ -1231,21 +1261,21 @@ type NewWithdrawId = INewwithdrid;
|
|
|
1231
1261
|
|
|
1232
1262
|
type newWithdrawId_NewWithdrawId = NewWithdrawId;
|
|
1233
1263
|
declare namespace newWithdrawId {
|
|
1234
|
-
export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$
|
|
1264
|
+
export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$20 as actionName, authorizations$20 as authorizations };
|
|
1235
1265
|
}
|
|
1236
1266
|
|
|
1237
1267
|
/**
|
|
1238
1268
|
* Имя действия
|
|
1239
1269
|
* Требуется авторизация {@link Actors._username | пользователя}.
|
|
1240
1270
|
*/
|
|
1241
|
-
declare const authorizations$
|
|
1271
|
+
declare const authorizations$1$: readonly [{
|
|
1242
1272
|
readonly permissions: readonly ["active"];
|
|
1243
1273
|
readonly actor: "_username";
|
|
1244
1274
|
}];
|
|
1245
1275
|
/**
|
|
1246
1276
|
* Имя действия
|
|
1247
1277
|
*/
|
|
1248
|
-
declare const actionName$
|
|
1278
|
+
declare const actionName$1$ = "withdraw";
|
|
1249
1279
|
/**
|
|
1250
1280
|
* @interface
|
|
1251
1281
|
* Действие для создания заявки на возврат паевого взноса из кошелька.
|
|
@@ -1253,14 +1283,14 @@ declare const actionName$1_ = "withdraw";
|
|
|
1253
1283
|
type IFailDeposit$1 = IWithdraw$1;
|
|
1254
1284
|
|
|
1255
1285
|
declare namespace createWithdraw {
|
|
1256
|
-
export { type IFailDeposit$1 as IFailDeposit, actionName$
|
|
1286
|
+
export { type IFailDeposit$1 as IFailDeposit, actionName$1$ as actionName, authorizations$1$ as authorizations };
|
|
1257
1287
|
}
|
|
1258
1288
|
|
|
1259
1289
|
/**
|
|
1260
1290
|
* Имя действия
|
|
1261
1291
|
* Требуется авторизация {@link Actors._admin | администратора}.
|
|
1262
1292
|
*/
|
|
1263
|
-
declare const authorizations$
|
|
1293
|
+
declare const authorizations$1_: readonly [{
|
|
1264
1294
|
readonly permissions: readonly ["active", {
|
|
1265
1295
|
readonly contract: "_contract";
|
|
1266
1296
|
readonly action: "actionName";
|
|
@@ -1270,7 +1300,7 @@ declare const authorizations$1Z: readonly [{
|
|
|
1270
1300
|
/**
|
|
1271
1301
|
* Имя действия
|
|
1272
1302
|
*/
|
|
1273
|
-
declare const actionName$
|
|
1303
|
+
declare const actionName$1_ = "wthdcomplete";
|
|
1274
1304
|
/**
|
|
1275
1305
|
* @interface
|
|
1276
1306
|
* Действие для подтверждения платежа по возврату паевого взноса пользователю.
|
|
@@ -1279,14 +1309,14 @@ type IFailDeposit = IWthdcomplete;
|
|
|
1279
1309
|
|
|
1280
1310
|
type completeWithdraw_IFailDeposit = IFailDeposit;
|
|
1281
1311
|
declare namespace completeWithdraw {
|
|
1282
|
-
export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$
|
|
1312
|
+
export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$1_ as actionName, authorizations$1_ as authorizations };
|
|
1283
1313
|
}
|
|
1284
1314
|
|
|
1285
1315
|
/**
|
|
1286
1316
|
* Имя действия
|
|
1287
1317
|
* Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
|
|
1288
1318
|
*/
|
|
1289
|
-
declare const authorizations$
|
|
1319
|
+
declare const authorizations$1Z: readonly [{
|
|
1290
1320
|
readonly permissions: readonly ["active", {
|
|
1291
1321
|
readonly contract: "_contract";
|
|
1292
1322
|
readonly action: "actionName";
|
|
@@ -1296,7 +1326,7 @@ declare const authorizations$1Y: readonly [{
|
|
|
1296
1326
|
/**
|
|
1297
1327
|
* Имя действия
|
|
1298
1328
|
*/
|
|
1299
|
-
declare const actionName$
|
|
1329
|
+
declare const actionName$1Z = "wthdfail";
|
|
1300
1330
|
/**
|
|
1301
1331
|
* @interface
|
|
1302
1332
|
*/
|
|
@@ -1304,14 +1334,14 @@ type IFailWithdraw = IWthdfail;
|
|
|
1304
1334
|
|
|
1305
1335
|
type failWithdraw_IFailWithdraw = IFailWithdraw;
|
|
1306
1336
|
declare namespace failWithdraw {
|
|
1307
|
-
export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$
|
|
1337
|
+
export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$1Z as actionName, authorizations$1Z as authorizations };
|
|
1308
1338
|
}
|
|
1309
1339
|
|
|
1310
1340
|
/**
|
|
1311
1341
|
* Вызывается техническим аккаунтом кооператива для создания объекта депозита со статусом платежа.
|
|
1312
1342
|
*/
|
|
1313
1343
|
|
|
1314
|
-
declare namespace index$
|
|
1344
|
+
declare namespace index$E {
|
|
1315
1345
|
export { completeDeposit as CompleteDeposit, completeWithdraw as CompleteWithdraw, createDeposit as CreateDeposit, createWithdraw as CreateWithdraw, failDeposit as FailDeposit, failWithdraw as FailWithdraw, newDepositId as NewDepositId, newWithdrawId as NewWithdrawId };
|
|
1316
1346
|
}
|
|
1317
1347
|
|
|
@@ -1362,7 +1392,7 @@ declare namespace withdraws {
|
|
|
1362
1392
|
export { type withdraws_IWithdraws as IWithdraws, scope$y as scope, tableName$y as tableName };
|
|
1363
1393
|
}
|
|
1364
1394
|
|
|
1365
|
-
declare namespace index$
|
|
1395
|
+
declare namespace index$D {
|
|
1366
1396
|
export { deposits as Deposits, withdraws as Withdraws };
|
|
1367
1397
|
}
|
|
1368
1398
|
|
|
@@ -1371,8 +1401,8 @@ declare const contractName$7: {
|
|
|
1371
1401
|
readonly testnet: "gateway2222";
|
|
1372
1402
|
};
|
|
1373
1403
|
|
|
1374
|
-
declare namespace index$
|
|
1375
|
-
export { index$
|
|
1404
|
+
declare namespace index$C {
|
|
1405
|
+
export { index$E as Actions, gateway as Interfaces, index$D as Tables, contractName$7 as contractName };
|
|
1376
1406
|
}
|
|
1377
1407
|
|
|
1378
1408
|
type IAsset$4 = string;
|
|
@@ -1537,7 +1567,7 @@ declare namespace registrator {
|
|
|
1537
1567
|
export type { IAccount$2 as IAccount, IAdduser$1 as IAdduser, IAsset$4 as IAsset, IBalances$1 as IBalances, IBalancesBase$1 as IBalancesBase, registrator_IChangekey as IChangekey, IChecksum256$4 as IChecksum256, registrator_IConfirmreg as IConfirmreg, ICooperative$1 as ICooperative, registrator_IDelcoop as IDelcoop, IDocument$2 as IDocument, 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, IUint64$3 as IUint64, registrator_IUpdateaccnt as IUpdateaccnt, registrator_IUpdatecoop as IUpdatecoop, registrator_IVerificate as IVerificate, registrator_IVerification as IVerification };
|
|
1538
1568
|
}
|
|
1539
1569
|
|
|
1540
|
-
declare const authorizations$
|
|
1570
|
+
declare const authorizations$1Y: readonly [{
|
|
1541
1571
|
readonly permissions: readonly ["active"];
|
|
1542
1572
|
readonly actor: {
|
|
1543
1573
|
readonly production: "eosio";
|
|
@@ -1547,7 +1577,7 @@ declare const authorizations$1X: readonly [{
|
|
|
1547
1577
|
/**
|
|
1548
1578
|
* Имя действия
|
|
1549
1579
|
*/
|
|
1550
|
-
declare const actionName$
|
|
1580
|
+
declare const actionName$1Y = "verificate";
|
|
1551
1581
|
/**
|
|
1552
1582
|
* @interface
|
|
1553
1583
|
*/
|
|
@@ -1555,17 +1585,17 @@ type IVerificateAccount = IVerificate;
|
|
|
1555
1585
|
|
|
1556
1586
|
type verificateAccount_IVerificateAccount = IVerificateAccount;
|
|
1557
1587
|
declare namespace verificateAccount {
|
|
1558
|
-
export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$
|
|
1588
|
+
export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$1Y as actionName, authorizations$1Y as authorizations };
|
|
1559
1589
|
}
|
|
1560
1590
|
|
|
1561
|
-
declare const authorizations$
|
|
1591
|
+
declare const authorizations$1X: readonly [{
|
|
1562
1592
|
readonly permissions: readonly ["active"];
|
|
1563
1593
|
readonly actor: "_username";
|
|
1564
1594
|
}];
|
|
1565
1595
|
/**
|
|
1566
1596
|
* Имя действия
|
|
1567
1597
|
*/
|
|
1568
|
-
declare const actionName$
|
|
1598
|
+
declare const actionName$1X = "updateaccnt";
|
|
1569
1599
|
/**
|
|
1570
1600
|
* @interface
|
|
1571
1601
|
*/
|
|
@@ -1573,17 +1603,17 @@ type IUpdateAccount = IUpdateaccnt;
|
|
|
1573
1603
|
|
|
1574
1604
|
type updateAccount_IUpdateAccount = IUpdateAccount;
|
|
1575
1605
|
declare namespace updateAccount {
|
|
1576
|
-
export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$
|
|
1606
|
+
export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$1X as actionName, authorizations$1X as authorizations };
|
|
1577
1607
|
}
|
|
1578
1608
|
|
|
1579
|
-
declare const authorizations$
|
|
1609
|
+
declare const authorizations$1W: readonly [{
|
|
1580
1610
|
readonly permissions: readonly ["active"];
|
|
1581
1611
|
readonly actor: "_username";
|
|
1582
1612
|
}];
|
|
1583
1613
|
/**
|
|
1584
1614
|
* Имя действия
|
|
1585
1615
|
*/
|
|
1586
|
-
declare const actionName$
|
|
1616
|
+
declare const actionName$1W = "updatecoop";
|
|
1587
1617
|
/**
|
|
1588
1618
|
* @interface
|
|
1589
1619
|
*/
|
|
@@ -1591,13 +1621,13 @@ type IUpdateCoop = IUpdatecoop;
|
|
|
1591
1621
|
|
|
1592
1622
|
type updateCoop_IUpdateCoop = IUpdateCoop;
|
|
1593
1623
|
declare namespace updateCoop {
|
|
1594
|
-
export { type updateCoop_IUpdateCoop as IUpdateCoop, actionName$
|
|
1624
|
+
export { type updateCoop_IUpdateCoop as IUpdateCoop, actionName$1W as actionName, authorizations$1W as authorizations };
|
|
1595
1625
|
}
|
|
1596
1626
|
|
|
1597
1627
|
/**
|
|
1598
1628
|
* Требуется авторизация аккаунта {@link Actors._admin | администратора} c позитивным балансом AXON для оплаты аренды ресурсов.
|
|
1599
1629
|
*/
|
|
1600
|
-
declare const authorizations$
|
|
1630
|
+
declare const authorizations$1V: readonly [{
|
|
1601
1631
|
readonly permissions: readonly ["active", {
|
|
1602
1632
|
readonly contract: "_contract";
|
|
1603
1633
|
readonly action: "actionName";
|
|
@@ -1607,17 +1637,17 @@ declare const authorizations$1U: readonly [{
|
|
|
1607
1637
|
/**
|
|
1608
1638
|
* Имя действия
|
|
1609
1639
|
*/
|
|
1610
|
-
declare const actionName$
|
|
1640
|
+
declare const actionName$1V = "newaccount";
|
|
1611
1641
|
/**
|
|
1612
1642
|
* @interface
|
|
1613
1643
|
*/
|
|
1614
1644
|
type ICreateAccount$1 = INewaccount$1;
|
|
1615
1645
|
|
|
1616
1646
|
declare namespace createAccount$1 {
|
|
1617
|
-
export { type ICreateAccount$1 as ICreateAccount, actionName$
|
|
1647
|
+
export { type ICreateAccount$1 as ICreateAccount, actionName$1V as actionName, authorizations$1V as authorizations };
|
|
1618
1648
|
}
|
|
1619
1649
|
|
|
1620
|
-
declare const authorizations$
|
|
1650
|
+
declare const authorizations$1U: readonly [{
|
|
1621
1651
|
readonly permissions: readonly ["active", {
|
|
1622
1652
|
readonly contract: "_contract";
|
|
1623
1653
|
readonly action: "actionName";
|
|
@@ -1627,7 +1657,7 @@ declare const authorizations$1T: readonly [{
|
|
|
1627
1657
|
/**
|
|
1628
1658
|
* Имя действия
|
|
1629
1659
|
*/
|
|
1630
|
-
declare const actionName$
|
|
1660
|
+
declare const actionName$1U = "reguser";
|
|
1631
1661
|
/**
|
|
1632
1662
|
* @interface
|
|
1633
1663
|
*/
|
|
@@ -1635,10 +1665,10 @@ type IRegistrerUser = IReguser;
|
|
|
1635
1665
|
|
|
1636
1666
|
type registerUser_IRegistrerUser = IRegistrerUser;
|
|
1637
1667
|
declare namespace registerUser {
|
|
1638
|
-
export { type registerUser_IRegistrerUser as IRegistrerUser, actionName$
|
|
1668
|
+
export { type registerUser_IRegistrerUser as IRegistrerUser, actionName$1U as actionName, authorizations$1U as authorizations };
|
|
1639
1669
|
}
|
|
1640
1670
|
|
|
1641
|
-
declare const authorizations$
|
|
1671
|
+
declare const authorizations$1T: readonly [{
|
|
1642
1672
|
readonly permissions: readonly ["active", {
|
|
1643
1673
|
readonly contract: "_contract";
|
|
1644
1674
|
readonly action: "actionName";
|
|
@@ -1648,7 +1678,7 @@ declare const authorizations$1S: readonly [{
|
|
|
1648
1678
|
/**
|
|
1649
1679
|
* Имя действия
|
|
1650
1680
|
*/
|
|
1651
|
-
declare const actionName$
|
|
1681
|
+
declare const actionName$1T = "regcoop";
|
|
1652
1682
|
/**
|
|
1653
1683
|
* @interface
|
|
1654
1684
|
*/
|
|
@@ -1656,10 +1686,10 @@ type IRegisterCooperative = IRegcoop;
|
|
|
1656
1686
|
|
|
1657
1687
|
type registerCooperative_IRegisterCooperative = IRegisterCooperative;
|
|
1658
1688
|
declare namespace registerCooperative {
|
|
1659
|
-
export { type registerCooperative_IRegisterCooperative as IRegisterCooperative, actionName$
|
|
1689
|
+
export { type registerCooperative_IRegisterCooperative as IRegisterCooperative, actionName$1T as actionName, authorizations$1T as authorizations };
|
|
1660
1690
|
}
|
|
1661
1691
|
|
|
1662
|
-
declare const authorizations$
|
|
1692
|
+
declare const authorizations$1S: readonly [{
|
|
1663
1693
|
readonly permissions: readonly ["active"];
|
|
1664
1694
|
readonly actor: {
|
|
1665
1695
|
readonly production: "eosio";
|
|
@@ -1669,7 +1699,7 @@ declare const authorizations$1R: readonly [{
|
|
|
1669
1699
|
/**
|
|
1670
1700
|
* Имя действия
|
|
1671
1701
|
*/
|
|
1672
|
-
declare const actionName$
|
|
1702
|
+
declare const actionName$1S = "changekey";
|
|
1673
1703
|
/**
|
|
1674
1704
|
* @interface
|
|
1675
1705
|
*/
|
|
@@ -1677,13 +1707,13 @@ type IChangeKey = IChangekey;
|
|
|
1677
1707
|
|
|
1678
1708
|
type changeKey_IChangeKey = IChangeKey;
|
|
1679
1709
|
declare namespace changeKey {
|
|
1680
|
-
export { type changeKey_IChangeKey as IChangeKey, actionName$
|
|
1710
|
+
export { type changeKey_IChangeKey as IChangeKey, actionName$1S as actionName, authorizations$1S as authorizations };
|
|
1681
1711
|
}
|
|
1682
1712
|
|
|
1683
1713
|
/**
|
|
1684
1714
|
* Требуется авторизация администратора кооператива или пользователя.
|
|
1685
1715
|
*/
|
|
1686
|
-
declare const authorizations$
|
|
1716
|
+
declare const authorizations$1R: readonly [{
|
|
1687
1717
|
readonly permissions: readonly ["active", {
|
|
1688
1718
|
readonly contract: "_contract";
|
|
1689
1719
|
readonly action: "actionName";
|
|
@@ -1696,7 +1726,7 @@ declare const authorizations$1Q: readonly [{
|
|
|
1696
1726
|
/**
|
|
1697
1727
|
* Имя действия
|
|
1698
1728
|
*/
|
|
1699
|
-
declare const actionName$
|
|
1729
|
+
declare const actionName$1R = "joincoop";
|
|
1700
1730
|
/**
|
|
1701
1731
|
* @interface
|
|
1702
1732
|
*/
|
|
@@ -1704,13 +1734,13 @@ type IJoinCooperative = IJoincoop$1;
|
|
|
1704
1734
|
|
|
1705
1735
|
type joinCooperative_IJoinCooperative = IJoinCooperative;
|
|
1706
1736
|
declare namespace joinCooperative {
|
|
1707
|
-
export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$
|
|
1737
|
+
export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$1R as actionName, authorizations$1R as authorizations };
|
|
1708
1738
|
}
|
|
1709
1739
|
|
|
1710
1740
|
/**
|
|
1711
1741
|
* Требуется подпись контракта {@link ContractNames._soviet | совета}, которая поставляется автоматически в момент исполнения решения совета о приёме нового пайщика.
|
|
1712
1742
|
*/
|
|
1713
|
-
declare const authorizations$
|
|
1743
|
+
declare const authorizations$1Q: readonly [{
|
|
1714
1744
|
readonly permissions: readonly ["active"];
|
|
1715
1745
|
readonly actor: {
|
|
1716
1746
|
readonly production: "soviet";
|
|
@@ -1720,7 +1750,7 @@ declare const authorizations$1P: readonly [{
|
|
|
1720
1750
|
/**
|
|
1721
1751
|
* Имя действия
|
|
1722
1752
|
*/
|
|
1723
|
-
declare const actionName$
|
|
1753
|
+
declare const actionName$1Q = "confirmreg";
|
|
1724
1754
|
/**
|
|
1725
1755
|
* @interface
|
|
1726
1756
|
*/
|
|
@@ -1728,10 +1758,10 @@ type IConfirmJoin = IConfirmreg;
|
|
|
1728
1758
|
|
|
1729
1759
|
type confirmJoin_IConfirmJoin = IConfirmJoin;
|
|
1730
1760
|
declare namespace confirmJoin {
|
|
1731
|
-
export { type confirmJoin_IConfirmJoin as IConfirmJoin, actionName$
|
|
1761
|
+
export { type confirmJoin_IConfirmJoin as IConfirmJoin, actionName$1Q as actionName, authorizations$1Q as authorizations };
|
|
1732
1762
|
}
|
|
1733
1763
|
|
|
1734
|
-
declare const authorizations$
|
|
1764
|
+
declare const authorizations$1P: readonly [{
|
|
1735
1765
|
readonly permissions: readonly ["active"];
|
|
1736
1766
|
readonly actor: {
|
|
1737
1767
|
readonly production: "eosio";
|
|
@@ -1741,17 +1771,17 @@ declare const authorizations$1O: readonly [{
|
|
|
1741
1771
|
/**
|
|
1742
1772
|
* Имя действия
|
|
1743
1773
|
*/
|
|
1744
|
-
declare const actionName$
|
|
1774
|
+
declare const actionName$1P = "init";
|
|
1745
1775
|
/**
|
|
1746
1776
|
* @interface
|
|
1747
1777
|
*/
|
|
1748
1778
|
type IInit$4 = IInit$5;
|
|
1749
1779
|
|
|
1750
1780
|
declare namespace init$2 {
|
|
1751
|
-
export { type IInit$4 as IInit, actionName$
|
|
1781
|
+
export { type IInit$4 as IInit, actionName$1P as actionName, authorizations$1P as authorizations };
|
|
1752
1782
|
}
|
|
1753
1783
|
|
|
1754
|
-
declare const authorizations$
|
|
1784
|
+
declare const authorizations$1O: readonly [{
|
|
1755
1785
|
readonly permissions: readonly ["active", {
|
|
1756
1786
|
readonly contract: "_contract";
|
|
1757
1787
|
readonly action: "actionName";
|
|
@@ -1761,7 +1791,7 @@ declare const authorizations$1N: readonly [{
|
|
|
1761
1791
|
/**
|
|
1762
1792
|
* Имя действия
|
|
1763
1793
|
*/
|
|
1764
|
-
declare const actionName$
|
|
1794
|
+
declare const actionName$1O = "adduser";
|
|
1765
1795
|
/**
|
|
1766
1796
|
* @interface
|
|
1767
1797
|
*/
|
|
@@ -1769,10 +1799,10 @@ type IAddUser = IAdduser$1;
|
|
|
1769
1799
|
|
|
1770
1800
|
type addUser_IAddUser = IAddUser;
|
|
1771
1801
|
declare namespace addUser {
|
|
1772
|
-
export { type addUser_IAddUser as IAddUser, actionName$
|
|
1802
|
+
export { type addUser_IAddUser as IAddUser, actionName$1O as actionName, authorizations$1O as authorizations };
|
|
1773
1803
|
}
|
|
1774
1804
|
|
|
1775
|
-
declare const authorizations$
|
|
1805
|
+
declare const authorizations$1N: readonly [{
|
|
1776
1806
|
readonly permissions: readonly ["active", {
|
|
1777
1807
|
readonly contract: "_contract";
|
|
1778
1808
|
readonly action: "actionName";
|
|
@@ -1782,7 +1812,7 @@ declare const authorizations$1M: readonly [{
|
|
|
1782
1812
|
/**
|
|
1783
1813
|
* Имя действия
|
|
1784
1814
|
*/
|
|
1785
|
-
declare const actionName$
|
|
1815
|
+
declare const actionName$1N = "stcoopstatus";
|
|
1786
1816
|
/**
|
|
1787
1817
|
* @interface
|
|
1788
1818
|
*/
|
|
@@ -1790,10 +1820,10 @@ type ISetCoopStatus = IStcoopstatus;
|
|
|
1790
1820
|
|
|
1791
1821
|
type setCoopStatus_ISetCoopStatus = ISetCoopStatus;
|
|
1792
1822
|
declare namespace setCoopStatus {
|
|
1793
|
-
export { type setCoopStatus_ISetCoopStatus as ISetCoopStatus, actionName$
|
|
1823
|
+
export { type setCoopStatus_ISetCoopStatus as ISetCoopStatus, actionName$1N as actionName, authorizations$1N as authorizations };
|
|
1794
1824
|
}
|
|
1795
1825
|
|
|
1796
|
-
declare const authorizations$
|
|
1826
|
+
declare const authorizations$1M: readonly [{
|
|
1797
1827
|
readonly permissions: readonly ["active", {
|
|
1798
1828
|
readonly contract: "_contract";
|
|
1799
1829
|
readonly action: "actionName";
|
|
@@ -1803,7 +1833,7 @@ declare const authorizations$1L: readonly [{
|
|
|
1803
1833
|
/**
|
|
1804
1834
|
* Имя действия
|
|
1805
1835
|
*/
|
|
1806
|
-
declare const actionName$
|
|
1836
|
+
declare const actionName$1M = "delcoop";
|
|
1807
1837
|
/**
|
|
1808
1838
|
* @interface
|
|
1809
1839
|
*/
|
|
@@ -1811,14 +1841,14 @@ type IDeleteCooperative = IDelcoop;
|
|
|
1811
1841
|
|
|
1812
1842
|
type deleteCooperative_IDeleteCooperative = IDeleteCooperative;
|
|
1813
1843
|
declare namespace deleteCooperative {
|
|
1814
|
-
export { type deleteCooperative_IDeleteCooperative as IDeleteCooperative, actionName$
|
|
1844
|
+
export { type deleteCooperative_IDeleteCooperative as IDeleteCooperative, actionName$1M as actionName, authorizations$1M as authorizations };
|
|
1815
1845
|
}
|
|
1816
1846
|
|
|
1817
1847
|
/**
|
|
1818
1848
|
* Действие верификации аккаунта
|
|
1819
1849
|
*/
|
|
1820
1850
|
|
|
1821
|
-
declare namespace index$
|
|
1851
|
+
declare namespace index$B {
|
|
1822
1852
|
export { addUser as AddUser, changeKey as ChangeKey, confirmJoin as ConfirmJoin, 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 };
|
|
1823
1853
|
}
|
|
1824
1854
|
|
|
@@ -1870,7 +1900,7 @@ declare namespace cooperatives {
|
|
|
1870
1900
|
*
|
|
1871
1901
|
*/
|
|
1872
1902
|
|
|
1873
|
-
declare namespace index$
|
|
1903
|
+
declare namespace index$A {
|
|
1874
1904
|
export { accounts as Accounts, cooperatives as Cooperatives };
|
|
1875
1905
|
}
|
|
1876
1906
|
|
|
@@ -1879,8 +1909,8 @@ declare const contractName$6: {
|
|
|
1879
1909
|
readonly testnet: "regtest22222";
|
|
1880
1910
|
};
|
|
1881
1911
|
|
|
1882
|
-
declare namespace index$
|
|
1883
|
-
export { index$
|
|
1912
|
+
declare namespace index$z {
|
|
1913
|
+
export { index$B as Actions, registrator as Interfaces, index$A as Tables, contractName$6 as contractName };
|
|
1884
1914
|
}
|
|
1885
1915
|
|
|
1886
1916
|
type IAsset$3 = string;
|
|
@@ -1928,14 +1958,14 @@ declare namespace token {
|
|
|
1928
1958
|
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 };
|
|
1929
1959
|
}
|
|
1930
1960
|
|
|
1931
|
-
declare const authorizations$
|
|
1961
|
+
declare const authorizations$1L: readonly [{
|
|
1932
1962
|
readonly permissions: readonly ["active"];
|
|
1933
1963
|
readonly actor: "_username";
|
|
1934
1964
|
}];
|
|
1935
1965
|
/**
|
|
1936
1966
|
* Имя действия
|
|
1937
1967
|
*/
|
|
1938
|
-
declare const actionName$
|
|
1968
|
+
declare const actionName$1L = "transfer";
|
|
1939
1969
|
/**
|
|
1940
1970
|
* @interface
|
|
1941
1971
|
*/
|
|
@@ -1943,17 +1973,17 @@ type ITransfer = ITransfer$1;
|
|
|
1943
1973
|
|
|
1944
1974
|
type transfer_ITransfer = ITransfer;
|
|
1945
1975
|
declare namespace transfer {
|
|
1946
|
-
export { type transfer_ITransfer as ITransfer, actionName$
|
|
1976
|
+
export { type transfer_ITransfer as ITransfer, actionName$1L as actionName, authorizations$1L as authorizations };
|
|
1947
1977
|
}
|
|
1948
1978
|
|
|
1949
|
-
declare const authorizations$
|
|
1979
|
+
declare const authorizations$1K: readonly [{
|
|
1950
1980
|
readonly permissions: readonly ["active"];
|
|
1951
1981
|
readonly actor: "_username";
|
|
1952
1982
|
}];
|
|
1953
1983
|
/**
|
|
1954
1984
|
* Имя действия
|
|
1955
1985
|
*/
|
|
1956
|
-
declare const actionName$
|
|
1986
|
+
declare const actionName$1K = "open";
|
|
1957
1987
|
/**
|
|
1958
1988
|
* @interface
|
|
1959
1989
|
*/
|
|
@@ -1961,7 +1991,7 @@ type IOpen = IOpen$1;
|
|
|
1961
1991
|
|
|
1962
1992
|
type open_IOpen = IOpen;
|
|
1963
1993
|
declare namespace open {
|
|
1964
|
-
export { type open_IOpen as IOpen, actionName$
|
|
1994
|
+
export { type open_IOpen as IOpen, actionName$1K as actionName, authorizations$1K as authorizations };
|
|
1965
1995
|
}
|
|
1966
1996
|
|
|
1967
1997
|
/**
|
|
@@ -1971,28 +2001,28 @@ type IClose = IClose$1;
|
|
|
1971
2001
|
/**
|
|
1972
2002
|
* Требуется авторизация владельца аккаунта, чей баланс закрывается.
|
|
1973
2003
|
*/
|
|
1974
|
-
declare const authorizations$
|
|
2004
|
+
declare const authorizations$1J: readonly [{
|
|
1975
2005
|
readonly permissions: readonly ["active"];
|
|
1976
2006
|
readonly actor: "_username";
|
|
1977
2007
|
}];
|
|
1978
2008
|
/**
|
|
1979
2009
|
* Имя действия
|
|
1980
2010
|
*/
|
|
1981
|
-
declare const actionName$
|
|
2011
|
+
declare const actionName$1J = "close";
|
|
1982
2012
|
|
|
1983
2013
|
type close_IClose = IClose;
|
|
1984
2014
|
declare namespace close {
|
|
1985
|
-
export { type close_IClose as IClose, actionName$
|
|
2015
|
+
export { type close_IClose as IClose, actionName$1J as actionName, authorizations$1J as authorizations };
|
|
1986
2016
|
}
|
|
1987
2017
|
|
|
1988
|
-
declare const authorizations$
|
|
2018
|
+
declare const authorizations$1I: readonly [{
|
|
1989
2019
|
readonly permissions: readonly ["active"];
|
|
1990
2020
|
readonly actor: "_system";
|
|
1991
2021
|
}];
|
|
1992
2022
|
/**
|
|
1993
2023
|
* Имя действия
|
|
1994
2024
|
*/
|
|
1995
|
-
declare const actionName$
|
|
2025
|
+
declare const actionName$1I = "create";
|
|
1996
2026
|
/**
|
|
1997
2027
|
* @interface
|
|
1998
2028
|
*/
|
|
@@ -2000,20 +2030,20 @@ type ICreate = ICreate$1;
|
|
|
2000
2030
|
|
|
2001
2031
|
type create_ICreate = ICreate;
|
|
2002
2032
|
declare namespace create {
|
|
2003
|
-
export { type create_ICreate as ICreate, actionName$
|
|
2033
|
+
export { type create_ICreate as ICreate, actionName$1I as actionName, authorizations$1I as authorizations };
|
|
2004
2034
|
}
|
|
2005
2035
|
|
|
2006
2036
|
/**
|
|
2007
2037
|
* Для выпуска токенов требуется авторизация учетной записи эмитента, указанная в поле issuer при создании токена.
|
|
2008
2038
|
*/
|
|
2009
|
-
declare const authorizations$
|
|
2039
|
+
declare const authorizations$1H: readonly [{
|
|
2010
2040
|
readonly permissions: readonly ["active"];
|
|
2011
2041
|
readonly actor: "currencyStats.issuer";
|
|
2012
2042
|
}];
|
|
2013
2043
|
/**
|
|
2014
2044
|
* Имя действия
|
|
2015
2045
|
*/
|
|
2016
|
-
declare const actionName$
|
|
2046
|
+
declare const actionName$1H = "issue";
|
|
2017
2047
|
/**
|
|
2018
2048
|
* @interface
|
|
2019
2049
|
*/
|
|
@@ -2021,20 +2051,20 @@ type IIssue = IIssue$1;
|
|
|
2021
2051
|
|
|
2022
2052
|
type issue_IIssue = IIssue;
|
|
2023
2053
|
declare namespace issue {
|
|
2024
|
-
export { type issue_IIssue as IIssue, actionName$
|
|
2054
|
+
export { type issue_IIssue as IIssue, actionName$1H as actionName, authorizations$1H as authorizations };
|
|
2025
2055
|
}
|
|
2026
2056
|
|
|
2027
2057
|
/**
|
|
2028
2058
|
* Для сжигания токенов требуется авторизация учетной записи эмитента, указанная при создании токена.
|
|
2029
2059
|
*/
|
|
2030
|
-
declare const authorizations$
|
|
2060
|
+
declare const authorizations$1G: readonly [{
|
|
2031
2061
|
readonly permissions: readonly ["active"];
|
|
2032
2062
|
readonly actor: "currencyStats.issuer";
|
|
2033
2063
|
}];
|
|
2034
2064
|
/**
|
|
2035
2065
|
* Имя действия
|
|
2036
2066
|
*/
|
|
2037
|
-
declare const actionName$
|
|
2067
|
+
declare const actionName$1G = "retire";
|
|
2038
2068
|
/**
|
|
2039
2069
|
* @interface
|
|
2040
2070
|
*/
|
|
@@ -2042,14 +2072,14 @@ type IRetire = IRetire$1;
|
|
|
2042
2072
|
|
|
2043
2073
|
type retire_IRetire = IRetire;
|
|
2044
2074
|
declare namespace retire {
|
|
2045
|
-
export { type retire_IRetire as IRetire, actionName$
|
|
2075
|
+
export { type retire_IRetire as IRetire, actionName$1G as actionName, authorizations$1G as authorizations };
|
|
2046
2076
|
}
|
|
2047
2077
|
|
|
2048
2078
|
/**
|
|
2049
2079
|
* Действие совершения перевода токенов AXON между аккаунтами.
|
|
2050
2080
|
*/
|
|
2051
2081
|
|
|
2052
|
-
declare namespace index$
|
|
2082
|
+
declare namespace index$y {
|
|
2053
2083
|
export { close as Close, create as Create, issue as Issue, open as Open, retire as Retire, transfer as Transfer };
|
|
2054
2084
|
}
|
|
2055
2085
|
|
|
@@ -2095,7 +2125,7 @@ declare namespace currencyStats {
|
|
|
2095
2125
|
* Таблица содержит информацию о балансе токенов пользователей
|
|
2096
2126
|
*/
|
|
2097
2127
|
|
|
2098
|
-
declare namespace index$
|
|
2128
|
+
declare namespace index$x {
|
|
2099
2129
|
export { accountBalance as AccountBalance, currencyStats as CurrencyStats };
|
|
2100
2130
|
}
|
|
2101
2131
|
|
|
@@ -2104,8 +2134,8 @@ declare const contractName$5: {
|
|
|
2104
2134
|
readonly testnet: "eosio.token";
|
|
2105
2135
|
};
|
|
2106
2136
|
|
|
2107
|
-
declare namespace index$
|
|
2108
|
-
export { index$
|
|
2137
|
+
declare namespace index$w {
|
|
2138
|
+
export { index$y as Actions, token as Interfaces, index$x as Tables, contractName$5 as contractName };
|
|
2109
2139
|
}
|
|
2110
2140
|
|
|
2111
2141
|
type IAsset$2 = string;
|
|
@@ -2166,6 +2196,18 @@ interface IAdduser {
|
|
|
2166
2196
|
minimum: IAsset$2;
|
|
2167
2197
|
spread_initial: boolean;
|
|
2168
2198
|
}
|
|
2199
|
+
interface IAgreement$1 {
|
|
2200
|
+
id: IUint64$2;
|
|
2201
|
+
coopname: IName$4;
|
|
2202
|
+
username: IName$4;
|
|
2203
|
+
type: IName$4;
|
|
2204
|
+
program_id: IUint64$2;
|
|
2205
|
+
draft_id: IUint64$2;
|
|
2206
|
+
version: IUint64$2;
|
|
2207
|
+
document: IDocument$1;
|
|
2208
|
+
status: IName$4;
|
|
2209
|
+
updated_at: ITimePointSec$4;
|
|
2210
|
+
}
|
|
2169
2211
|
interface IAuthorize$3 {
|
|
2170
2212
|
coopname: IName$4;
|
|
2171
2213
|
chairman: IName$4;
|
|
@@ -2231,11 +2273,17 @@ interface IChanges$1 {
|
|
|
2231
2273
|
contribution_product_decision_id: IUint64$2;
|
|
2232
2274
|
return_product_decision_id: IUint64$2;
|
|
2233
2275
|
}
|
|
2234
|
-
interface
|
|
2276
|
+
interface ICoagreement {
|
|
2277
|
+
type: IName$4;
|
|
2235
2278
|
coopname: IName$4;
|
|
2236
|
-
|
|
2279
|
+
program_id: IUint64$2;
|
|
2280
|
+
draft_id: IUint64$2;
|
|
2281
|
+
}
|
|
2282
|
+
interface IConfirmagree {
|
|
2283
|
+
coopname: IName$4;
|
|
2284
|
+
administrator: IName$4;
|
|
2237
2285
|
username: IName$4;
|
|
2238
|
-
|
|
2286
|
+
agreement_id: IUint64$2;
|
|
2239
2287
|
}
|
|
2240
2288
|
interface ICounts$1 extends ICountsBase$1 {
|
|
2241
2289
|
}
|
|
@@ -2270,9 +2318,7 @@ interface ICreatebranch {
|
|
|
2270
2318
|
interface ICreateprog {
|
|
2271
2319
|
coopname: IName$4;
|
|
2272
2320
|
username: IName$4;
|
|
2273
|
-
|
|
2274
|
-
draft_registry_id: IUint64$2;
|
|
2275
|
-
hash_of_conditions: IChecksum256$3;
|
|
2321
|
+
draft_id: IUint64$2;
|
|
2276
2322
|
title: string;
|
|
2277
2323
|
announce: string;
|
|
2278
2324
|
description: string;
|
|
@@ -2299,11 +2345,11 @@ interface IDecision$1 {
|
|
|
2299
2345
|
authorization: IDocument$1;
|
|
2300
2346
|
created_at: ITimePointSec$4;
|
|
2301
2347
|
}
|
|
2302
|
-
interface
|
|
2348
|
+
interface IDeclineagree {
|
|
2303
2349
|
coopname: IName$4;
|
|
2304
|
-
|
|
2350
|
+
administrator: IName$4;
|
|
2305
2351
|
username: IName$4;
|
|
2306
|
-
|
|
2352
|
+
agreement_id: IUint64$2;
|
|
2307
2353
|
comment: string;
|
|
2308
2354
|
}
|
|
2309
2355
|
interface IDeladdress {
|
|
@@ -2352,8 +2398,7 @@ interface IEditprog {
|
|
|
2352
2398
|
coopname: IName$4;
|
|
2353
2399
|
username: IName$4;
|
|
2354
2400
|
program_id: IUint64$2;
|
|
2355
|
-
|
|
2356
|
-
hash_of_conditions: IChecksum256$3;
|
|
2401
|
+
draft_id: IUint64$2;
|
|
2357
2402
|
title: string;
|
|
2358
2403
|
announce: string;
|
|
2359
2404
|
description: string;
|
|
@@ -2373,14 +2418,6 @@ interface IFundwithdraw {
|
|
|
2373
2418
|
withdraw_id: IUint64$2;
|
|
2374
2419
|
document: IDocument$1;
|
|
2375
2420
|
}
|
|
2376
|
-
interface IIndocument {
|
|
2377
|
-
id: IUint64$2;
|
|
2378
|
-
coopname: IName$4;
|
|
2379
|
-
username: IName$4;
|
|
2380
|
-
type: IName$4;
|
|
2381
|
-
secondary_id: IUint64$2;
|
|
2382
|
-
document: IDocument$1;
|
|
2383
|
-
}
|
|
2384
2421
|
interface IInit$3 {
|
|
2385
2422
|
}
|
|
2386
2423
|
interface IJoincoop {
|
|
@@ -2394,10 +2431,11 @@ interface IJoincoops {
|
|
|
2394
2431
|
is_paid: boolean;
|
|
2395
2432
|
notice: string;
|
|
2396
2433
|
}
|
|
2397
|
-
interface
|
|
2434
|
+
interface IMakecoagreem {
|
|
2398
2435
|
coopname: IName$4;
|
|
2399
|
-
|
|
2400
|
-
|
|
2436
|
+
administrator: IName$4;
|
|
2437
|
+
type: IName$4;
|
|
2438
|
+
draft_id: IUint64$2;
|
|
2401
2439
|
program_id: IUint64$2;
|
|
2402
2440
|
}
|
|
2403
2441
|
interface IMigrate {
|
|
@@ -2459,10 +2497,9 @@ interface IParticipant {
|
|
|
2459
2497
|
}
|
|
2460
2498
|
interface IProgram$1 {
|
|
2461
2499
|
id: IUint64$2;
|
|
2462
|
-
|
|
2500
|
+
draft_id: IUint64$2;
|
|
2463
2501
|
program_type: IName$4;
|
|
2464
|
-
|
|
2465
|
-
hash_of_conditions: IChecksum256$3;
|
|
2502
|
+
coopname: IName$4;
|
|
2466
2503
|
is_active: boolean;
|
|
2467
2504
|
title: string;
|
|
2468
2505
|
announce: string;
|
|
@@ -2480,9 +2517,9 @@ interface IProgwallet {
|
|
|
2480
2517
|
id: IUint64$2;
|
|
2481
2518
|
coopname: IName$4;
|
|
2482
2519
|
program_id: IUint64$2;
|
|
2520
|
+
agreement_id: IUint64$2;
|
|
2483
2521
|
username: IName$4;
|
|
2484
2522
|
available: IAsset$2;
|
|
2485
|
-
document: IDocument$1;
|
|
2486
2523
|
}
|
|
2487
2524
|
interface IRecieved {
|
|
2488
2525
|
coopname: IName$4;
|
|
@@ -2507,6 +2544,13 @@ interface ISetrights {
|
|
|
2507
2544
|
username: IName$4;
|
|
2508
2545
|
rights: IRight[];
|
|
2509
2546
|
}
|
|
2547
|
+
interface ISndagreement {
|
|
2548
|
+
coopname: IName$4;
|
|
2549
|
+
administrator: IName$4;
|
|
2550
|
+
username: IName$4;
|
|
2551
|
+
agreement_type: IName$4;
|
|
2552
|
+
document: IDocument$1;
|
|
2553
|
+
}
|
|
2510
2554
|
interface IStaff {
|
|
2511
2555
|
username: IName$4;
|
|
2512
2556
|
position_title: string;
|
|
@@ -2571,11 +2615,12 @@ type soviet_IBlockbal = IBlockbal;
|
|
|
2571
2615
|
type soviet_IBoardMember = IBoardMember;
|
|
2572
2616
|
type soviet_ICancelvote = ICancelvote;
|
|
2573
2617
|
type soviet_IChange = IChange;
|
|
2574
|
-
type
|
|
2618
|
+
type soviet_ICoagreement = ICoagreement;
|
|
2619
|
+
type soviet_IConfirmagree = IConfirmagree;
|
|
2575
2620
|
type soviet_ICreaddress = ICreaddress;
|
|
2576
2621
|
type soviet_ICreatebranch = ICreatebranch;
|
|
2577
2622
|
type soviet_ICreateprog = ICreateprog;
|
|
2578
|
-
type
|
|
2623
|
+
type soviet_IDeclineagree = IDeclineagree;
|
|
2579
2624
|
type soviet_IDeladdress = IDeladdress;
|
|
2580
2625
|
type soviet_IDeletebranch = IDeletebranch;
|
|
2581
2626
|
type soviet_IDisableprog = IDisableprog;
|
|
@@ -2583,10 +2628,9 @@ type soviet_IEditaddress = IEditaddress;
|
|
|
2583
2628
|
type soviet_IEditbranch = IEditbranch;
|
|
2584
2629
|
type soviet_IEditprog = IEditprog;
|
|
2585
2630
|
type soviet_IFundwithdraw = IFundwithdraw;
|
|
2586
|
-
type soviet_IIndocument = IIndocument;
|
|
2587
2631
|
type soviet_IJoincoop = IJoincoop;
|
|
2588
2632
|
type soviet_IJoincoops = IJoincoops;
|
|
2589
|
-
type
|
|
2633
|
+
type soviet_IMakecoagreem = IMakecoagreem;
|
|
2590
2634
|
type soviet_IMigrate = IMigrate;
|
|
2591
2635
|
type soviet_INewact = INewact;
|
|
2592
2636
|
type soviet_INewbatch = INewbatch;
|
|
@@ -2602,6 +2646,7 @@ type soviet_IRegpaid = IRegpaid;
|
|
|
2602
2646
|
type soviet_IRight = IRight;
|
|
2603
2647
|
type soviet_IRmstaff = IRmstaff;
|
|
2604
2648
|
type soviet_ISetrights = ISetrights;
|
|
2649
|
+
type soviet_ISndagreement = ISndagreement;
|
|
2605
2650
|
type soviet_IStaff = IStaff;
|
|
2606
2651
|
type soviet_ISubbalance = ISubbalance;
|
|
2607
2652
|
type soviet_ISubprogbal = ISubprogbal;
|
|
@@ -2611,13 +2656,13 @@ type soviet_IVoteagainst = IVoteagainst;
|
|
|
2611
2656
|
type soviet_IVotefor = IVotefor;
|
|
2612
2657
|
type soviet_IWithdraw = IWithdraw;
|
|
2613
2658
|
declare namespace soviet {
|
|
2614
|
-
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, IAsset$2 as IAsset, IAuthorize$3 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, IChecksum256$3 as IChecksum256,
|
|
2659
|
+
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_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, 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_ICreatebranch as ICreatebranch, soviet_ICreateprog as ICreateprog, IDecision$1 as IDecision, soviet_IDeclineagree as IDeclineagree, soviet_IDeladdress as IDeladdress, soviet_IDeletebranch as IDeletebranch, soviet_IDisableprog as IDisableprog, IDisautomate$1 as IDisautomate, IDocument$1 as IDocument, soviet_IEditaddress as IEditaddress, soviet_IEditbranch as IEditbranch, soviet_IEditprog as IEditprog, IExec$4 as IExec, 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_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_IUnblockbal as IUnblockbal, soviet_IUpdateboard as IUpdateboard, IValidate$1 as IValidate, soviet_IVoteagainst as IVoteagainst, soviet_IVotefor as IVotefor, soviet_IWithdraw as IWithdraw };
|
|
2615
2660
|
}
|
|
2616
2661
|
|
|
2617
2662
|
/**
|
|
2618
2663
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2619
2664
|
*/
|
|
2620
|
-
declare const authorizations$
|
|
2665
|
+
declare const authorizations$1F: readonly [{
|
|
2621
2666
|
readonly permissions: readonly ["active"];
|
|
2622
2667
|
readonly actor: {
|
|
2623
2668
|
readonly production: "soviet";
|
|
@@ -2627,7 +2672,7 @@ declare const authorizations$1E: readonly [{
|
|
|
2627
2672
|
/**
|
|
2628
2673
|
* Имя действия
|
|
2629
2674
|
*/
|
|
2630
|
-
declare const actionName$
|
|
2675
|
+
declare const actionName$1F = "newsubmitted";
|
|
2631
2676
|
/**
|
|
2632
2677
|
* @interface
|
|
2633
2678
|
* Действие фиксирует документ в реестре перед отправкой в совет.
|
|
@@ -2636,13 +2681,13 @@ type INewSubmitted = INewsubmitted;
|
|
|
2636
2681
|
|
|
2637
2682
|
type newsubmitted_INewSubmitted = INewSubmitted;
|
|
2638
2683
|
declare namespace newsubmitted {
|
|
2639
|
-
export { type newsubmitted_INewSubmitted as INewSubmitted, actionName$
|
|
2684
|
+
export { type newsubmitted_INewSubmitted as INewSubmitted, actionName$1F as actionName, authorizations$1F as authorizations };
|
|
2640
2685
|
}
|
|
2641
2686
|
|
|
2642
2687
|
/**
|
|
2643
2688
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2644
2689
|
*/
|
|
2645
|
-
declare const authorizations$
|
|
2690
|
+
declare const authorizations$1E: readonly [{
|
|
2646
2691
|
readonly permissions: readonly ["active"];
|
|
2647
2692
|
readonly actor: {
|
|
2648
2693
|
readonly production: "soviet";
|
|
@@ -2652,7 +2697,7 @@ declare const authorizations$1D: readonly [{
|
|
|
2652
2697
|
/**
|
|
2653
2698
|
* Имя действия
|
|
2654
2699
|
*/
|
|
2655
|
-
declare const actionName$
|
|
2700
|
+
declare const actionName$1E = "newbatch";
|
|
2656
2701
|
/**
|
|
2657
2702
|
* @interface
|
|
2658
2703
|
* Действие фиксирует связанную группу подписанных документов, которые отправляются в совет на голосование.
|
|
@@ -2661,13 +2706,13 @@ type INewBatch = INewbatch;
|
|
|
2661
2706
|
|
|
2662
2707
|
type newbatch_INewBatch = INewBatch;
|
|
2663
2708
|
declare namespace newbatch {
|
|
2664
|
-
export { type newbatch_INewBatch as INewBatch, actionName$
|
|
2709
|
+
export { type newbatch_INewBatch as INewBatch, actionName$1E as actionName, authorizations$1E as authorizations };
|
|
2665
2710
|
}
|
|
2666
2711
|
|
|
2667
2712
|
/**
|
|
2668
2713
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2669
2714
|
*/
|
|
2670
|
-
declare const authorizations$
|
|
2715
|
+
declare const authorizations$1D: readonly [{
|
|
2671
2716
|
readonly permissions: readonly ["active"];
|
|
2672
2717
|
readonly actor: {
|
|
2673
2718
|
readonly production: "soviet";
|
|
@@ -2677,7 +2722,7 @@ declare const authorizations$1C: readonly [{
|
|
|
2677
2722
|
/**
|
|
2678
2723
|
* Имя действия
|
|
2679
2724
|
*/
|
|
2680
|
-
declare const actionName$
|
|
2725
|
+
declare const actionName$1D = "newresolved";
|
|
2681
2726
|
/**
|
|
2682
2727
|
* @interface
|
|
2683
2728
|
* Действие фиксирует принятое заявление в реестре после принятия решения советом кооператива.
|
|
@@ -2687,13 +2732,13 @@ type INewResolved = INewresolved;
|
|
|
2687
2732
|
|
|
2688
2733
|
type newresolved_INewResolved = INewResolved;
|
|
2689
2734
|
declare namespace newresolved {
|
|
2690
|
-
export { type newresolved_INewResolved as INewResolved, actionName$
|
|
2735
|
+
export { type newresolved_INewResolved as INewResolved, actionName$1D as actionName, authorizations$1D as authorizations };
|
|
2691
2736
|
}
|
|
2692
2737
|
|
|
2693
2738
|
/**
|
|
2694
2739
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2695
2740
|
*/
|
|
2696
|
-
declare const authorizations$
|
|
2741
|
+
declare const authorizations$1C: readonly [{
|
|
2697
2742
|
readonly permissions: readonly ["active"];
|
|
2698
2743
|
readonly actor: {
|
|
2699
2744
|
readonly production: "soviet";
|
|
@@ -2703,7 +2748,7 @@ declare const authorizations$1B: readonly [{
|
|
|
2703
2748
|
/**
|
|
2704
2749
|
* Имя действия
|
|
2705
2750
|
*/
|
|
2706
|
-
declare const actionName$
|
|
2751
|
+
declare const actionName$1C = "newact";
|
|
2707
2752
|
/**
|
|
2708
2753
|
* @interface
|
|
2709
2754
|
* Действие фиксирует в реестре подписанные акты приёма-передачи имущества.
|
|
@@ -2712,13 +2757,13 @@ type INewAct = INewact;
|
|
|
2712
2757
|
|
|
2713
2758
|
type newact_INewAct = INewAct;
|
|
2714
2759
|
declare namespace newact {
|
|
2715
|
-
export { type newact_INewAct as INewAct, actionName$
|
|
2760
|
+
export { type newact_INewAct as INewAct, actionName$1C as actionName, authorizations$1C as authorizations };
|
|
2716
2761
|
}
|
|
2717
2762
|
|
|
2718
2763
|
/**
|
|
2719
2764
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2720
2765
|
*/
|
|
2721
|
-
declare const authorizations$
|
|
2766
|
+
declare const authorizations$1B: readonly [{
|
|
2722
2767
|
readonly permissions: readonly ["active"];
|
|
2723
2768
|
readonly actor: {
|
|
2724
2769
|
readonly production: "soviet";
|
|
@@ -2728,7 +2773,7 @@ declare const authorizations$1A: readonly [{
|
|
|
2728
2773
|
/**
|
|
2729
2774
|
* Имя действия
|
|
2730
2775
|
*/
|
|
2731
|
-
declare const actionName$
|
|
2776
|
+
declare const actionName$1B = "newdecision";
|
|
2732
2777
|
/**
|
|
2733
2778
|
* @interface
|
|
2734
2779
|
* Действие фиксирует в реестре принятое решение совета.
|
|
@@ -2737,13 +2782,13 @@ type INewDecision = INewdecision;
|
|
|
2737
2782
|
|
|
2738
2783
|
type newdecision_INewDecision = INewDecision;
|
|
2739
2784
|
declare namespace newdecision {
|
|
2740
|
-
export { type newdecision_INewDecision as INewDecision, actionName$
|
|
2785
|
+
export { type newdecision_INewDecision as INewDecision, actionName$1B as actionName, authorizations$1B as authorizations };
|
|
2741
2786
|
}
|
|
2742
2787
|
|
|
2743
2788
|
/**
|
|
2744
2789
|
* Действие выполняется автоматически по ходу работы системы за подписью контракта _soviet.
|
|
2745
2790
|
*/
|
|
2746
|
-
declare const authorizations$
|
|
2791
|
+
declare const authorizations$1A: readonly [{
|
|
2747
2792
|
readonly permissions: readonly ["active"];
|
|
2748
2793
|
readonly actor: {
|
|
2749
2794
|
readonly production: "soviet";
|
|
@@ -2753,7 +2798,7 @@ declare const authorizations$1z: readonly [{
|
|
|
2753
2798
|
/**
|
|
2754
2799
|
* Имя действия
|
|
2755
2800
|
*/
|
|
2756
|
-
declare const actionName$
|
|
2801
|
+
declare const actionName$1A = "newprogram";
|
|
2757
2802
|
/**
|
|
2758
2803
|
* @interface
|
|
2759
2804
|
* Действие фиксирует созданную программу после создания и возвращает её идентификатор
|
|
@@ -2762,7 +2807,7 @@ type INewProgram = INewprogram;
|
|
|
2762
2807
|
|
|
2763
2808
|
type newprogram_INewProgram = INewProgram;
|
|
2764
2809
|
declare namespace newprogram {
|
|
2765
|
-
export { type newprogram_INewProgram as INewProgram, actionName$
|
|
2810
|
+
export { type newprogram_INewProgram as INewProgram, actionName$1A as actionName, authorizations$1A as authorizations };
|
|
2766
2811
|
}
|
|
2767
2812
|
|
|
2768
2813
|
/**
|
|
@@ -2770,21 +2815,21 @@ declare namespace newprogram {
|
|
|
2770
2815
|
* @private
|
|
2771
2816
|
*/
|
|
2772
2817
|
|
|
2773
|
-
declare namespace index$
|
|
2818
|
+
declare namespace index$v {
|
|
2774
2819
|
export { newact as NewAct, newbatch as NewBatch, newdecision as NewDecision, newprogram as NewProgram, newresolved as NewResolved, newsubmitted as NewSubmitted };
|
|
2775
2820
|
}
|
|
2776
2821
|
|
|
2777
2822
|
/**
|
|
2778
2823
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
2779
2824
|
*/
|
|
2780
|
-
declare const authorizations$
|
|
2825
|
+
declare const authorizations$1z: readonly [{
|
|
2781
2826
|
readonly permissions: readonly ["active"];
|
|
2782
2827
|
readonly actor: "_chairman";
|
|
2783
2828
|
}];
|
|
2784
2829
|
/**
|
|
2785
2830
|
* Имя действия
|
|
2786
2831
|
*/
|
|
2787
|
-
declare const actionName$
|
|
2832
|
+
declare const actionName$1z = "creaddress";
|
|
2788
2833
|
/**
|
|
2789
2834
|
* @interface
|
|
2790
2835
|
* Действие создаёт новый адрес.
|
|
@@ -2793,20 +2838,20 @@ type ICreateAddress = ICreaddress;
|
|
|
2793
2838
|
|
|
2794
2839
|
type createAddress_ICreateAddress = ICreateAddress;
|
|
2795
2840
|
declare namespace createAddress {
|
|
2796
|
-
export { type createAddress_ICreateAddress as ICreateAddress, actionName$
|
|
2841
|
+
export { type createAddress_ICreateAddress as ICreateAddress, actionName$1z as actionName, authorizations$1z as authorizations };
|
|
2797
2842
|
}
|
|
2798
2843
|
|
|
2799
2844
|
/**
|
|
2800
2845
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
2801
2846
|
*/
|
|
2802
|
-
declare const authorizations$
|
|
2847
|
+
declare const authorizations$1y: readonly [{
|
|
2803
2848
|
readonly permissions: readonly ["active"];
|
|
2804
2849
|
readonly actor: "_chairman";
|
|
2805
2850
|
}];
|
|
2806
2851
|
/**
|
|
2807
2852
|
* Имя действия
|
|
2808
2853
|
*/
|
|
2809
|
-
declare const actionName$
|
|
2854
|
+
declare const actionName$1y = "deladdress";
|
|
2810
2855
|
/**
|
|
2811
2856
|
* @interface
|
|
2812
2857
|
* Действие удаляет адресс.
|
|
@@ -2815,20 +2860,20 @@ type IDeleteAddress = IDeladdress;
|
|
|
2815
2860
|
|
|
2816
2861
|
type deleteAddress_IDeleteAddress = IDeleteAddress;
|
|
2817
2862
|
declare namespace deleteAddress {
|
|
2818
|
-
export { type deleteAddress_IDeleteAddress as IDeleteAddress, actionName$
|
|
2863
|
+
export { type deleteAddress_IDeleteAddress as IDeleteAddress, actionName$1y as actionName, authorizations$1y as authorizations };
|
|
2819
2864
|
}
|
|
2820
2865
|
|
|
2821
2866
|
/**
|
|
2822
2867
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
2823
2868
|
*/
|
|
2824
|
-
declare const authorizations$
|
|
2869
|
+
declare const authorizations$1x: readonly [{
|
|
2825
2870
|
readonly permissions: readonly ["active"];
|
|
2826
2871
|
readonly actor: "_chairman";
|
|
2827
2872
|
}];
|
|
2828
2873
|
/**
|
|
2829
2874
|
* Имя действия
|
|
2830
2875
|
*/
|
|
2831
|
-
declare const actionName$
|
|
2876
|
+
declare const actionName$1x = "editaddress";
|
|
2832
2877
|
/**
|
|
2833
2878
|
* @interface
|
|
2834
2879
|
* Действие редактирует адресс.
|
|
@@ -2837,21 +2882,21 @@ type IEditAddress = IEditaddress;
|
|
|
2837
2882
|
|
|
2838
2883
|
type editAddress_IEditAddress = IEditAddress;
|
|
2839
2884
|
declare namespace editAddress {
|
|
2840
|
-
export { type editAddress_IEditAddress as IEditAddress, actionName$
|
|
2885
|
+
export { type editAddress_IEditAddress as IEditAddress, actionName$1x as actionName, authorizations$1x as authorizations };
|
|
2841
2886
|
}
|
|
2842
2887
|
|
|
2843
2888
|
/**
|
|
2844
2889
|
* Действие создаёт новый адрес.
|
|
2845
2890
|
*/
|
|
2846
2891
|
|
|
2847
|
-
declare namespace index$
|
|
2892
|
+
declare namespace index$u {
|
|
2848
2893
|
export { createAddress as CreateAddress, deleteAddress as DeleteAddress, editAddress as EditAddress };
|
|
2849
2894
|
}
|
|
2850
2895
|
|
|
2851
2896
|
/**
|
|
2852
2897
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2853
2898
|
*/
|
|
2854
|
-
declare const authorizations$
|
|
2899
|
+
declare const authorizations$1w: readonly [{
|
|
2855
2900
|
readonly permissions: readonly ["active"];
|
|
2856
2901
|
readonly actor: {
|
|
2857
2902
|
readonly production: "soviet";
|
|
@@ -2873,7 +2918,7 @@ declare const authorizations$1v: readonly [{
|
|
|
2873
2918
|
/**
|
|
2874
2919
|
* Имя действия
|
|
2875
2920
|
*/
|
|
2876
|
-
declare const actionName$
|
|
2921
|
+
declare const actionName$1w = "addbalance";
|
|
2877
2922
|
/**
|
|
2878
2923
|
* @interface
|
|
2879
2924
|
* Действие добавляет баланс токенов учёта паевого взноса в кошелёк пользователя.
|
|
@@ -2883,13 +2928,13 @@ type IAddBalance = IAddbalance;
|
|
|
2883
2928
|
|
|
2884
2929
|
type addBalance_IAddBalance = IAddBalance;
|
|
2885
2930
|
declare namespace addBalance {
|
|
2886
|
-
export { type addBalance_IAddBalance as IAddBalance, actionName$
|
|
2931
|
+
export { type addBalance_IAddBalance as IAddBalance, actionName$1w as actionName, authorizations$1w as authorizations };
|
|
2887
2932
|
}
|
|
2888
2933
|
|
|
2889
2934
|
/**
|
|
2890
2935
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2891
2936
|
*/
|
|
2892
|
-
declare const authorizations$
|
|
2937
|
+
declare const authorizations$1v: readonly [{
|
|
2893
2938
|
readonly permissions: readonly ["active"];
|
|
2894
2939
|
readonly actor: {
|
|
2895
2940
|
readonly production: "soviet";
|
|
@@ -2911,7 +2956,7 @@ declare const authorizations$1u: readonly [{
|
|
|
2911
2956
|
/**
|
|
2912
2957
|
* Имя действия
|
|
2913
2958
|
*/
|
|
2914
|
-
declare const actionName$
|
|
2959
|
+
declare const actionName$1v = "subbalance";
|
|
2915
2960
|
/**
|
|
2916
2961
|
* @interface
|
|
2917
2962
|
* @private
|
|
@@ -2921,13 +2966,13 @@ type ISubBalance = ISubbalance;
|
|
|
2921
2966
|
|
|
2922
2967
|
type subBalance_ISubBalance = ISubBalance;
|
|
2923
2968
|
declare namespace subBalance {
|
|
2924
|
-
export { type subBalance_ISubBalance as ISubBalance, actionName$
|
|
2969
|
+
export { type subBalance_ISubBalance as ISubBalance, actionName$1v as actionName, authorizations$1v as authorizations };
|
|
2925
2970
|
}
|
|
2926
2971
|
|
|
2927
2972
|
/**
|
|
2928
2973
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2929
2974
|
*/
|
|
2930
|
-
declare const authorizations$
|
|
2975
|
+
declare const authorizations$1u: readonly [{
|
|
2931
2976
|
readonly permissions: readonly ["active"];
|
|
2932
2977
|
readonly actor: {
|
|
2933
2978
|
readonly production: "soviet";
|
|
@@ -2949,7 +2994,7 @@ declare const authorizations$1t: readonly [{
|
|
|
2949
2994
|
/**
|
|
2950
2995
|
* Имя действия
|
|
2951
2996
|
*/
|
|
2952
|
-
declare const actionName$
|
|
2997
|
+
declare const actionName$1u = "blockbal";
|
|
2953
2998
|
/**
|
|
2954
2999
|
* @interface
|
|
2955
3000
|
* @private
|
|
@@ -2959,13 +3004,13 @@ type IBlockBalance = IBlockbal;
|
|
|
2959
3004
|
|
|
2960
3005
|
type blockBalance_IBlockBalance = IBlockBalance;
|
|
2961
3006
|
declare namespace blockBalance {
|
|
2962
|
-
export { type blockBalance_IBlockBalance as IBlockBalance, actionName$
|
|
3007
|
+
export { type blockBalance_IBlockBalance as IBlockBalance, actionName$1u as actionName, authorizations$1u as authorizations };
|
|
2963
3008
|
}
|
|
2964
3009
|
|
|
2965
3010
|
/**
|
|
2966
3011
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета}, {@link ContractNames._gateway | шлюза} или {@link ContractNames._marketplace | маркетплейса}.
|
|
2967
3012
|
*/
|
|
2968
|
-
declare const authorizations$
|
|
3013
|
+
declare const authorizations$1t: readonly [{
|
|
2969
3014
|
readonly permissions: readonly ["active"];
|
|
2970
3015
|
readonly actor: {
|
|
2971
3016
|
readonly production: "soviet";
|
|
@@ -2987,7 +3032,7 @@ declare const authorizations$1s: readonly [{
|
|
|
2987
3032
|
/**
|
|
2988
3033
|
* Имя действия
|
|
2989
3034
|
*/
|
|
2990
|
-
declare const actionName$
|
|
3035
|
+
declare const actionName$1t = "unblockbal";
|
|
2991
3036
|
/**
|
|
2992
3037
|
* @interface
|
|
2993
3038
|
* @private
|
|
@@ -2997,13 +3042,13 @@ type IUnblockBal = IUnblockbal;
|
|
|
2997
3042
|
|
|
2998
3043
|
type unblockBalance_IUnblockBal = IUnblockBal;
|
|
2999
3044
|
declare namespace unblockBalance {
|
|
3000
|
-
export { type unblockBalance_IUnblockBal as IUnblockBal, actionName$
|
|
3045
|
+
export { type unblockBalance_IUnblockBal as IUnblockBal, actionName$1t as actionName, authorizations$1t as authorizations };
|
|
3001
3046
|
}
|
|
3002
3047
|
|
|
3003
3048
|
/**
|
|
3004
3049
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета} или {@link ContractNames._marketplace | маркетплейса}.
|
|
3005
3050
|
*/
|
|
3006
|
-
declare const authorizations$
|
|
3051
|
+
declare const authorizations$1s: readonly [{
|
|
3007
3052
|
readonly permissions: readonly ["active"];
|
|
3008
3053
|
readonly actor: {
|
|
3009
3054
|
readonly production: "soviet";
|
|
@@ -3019,7 +3064,7 @@ declare const authorizations$1r: readonly [{
|
|
|
3019
3064
|
/**
|
|
3020
3065
|
* Имя действия
|
|
3021
3066
|
*/
|
|
3022
|
-
declare const actionName$
|
|
3067
|
+
declare const actionName$1s = "addprogbal";
|
|
3023
3068
|
/**
|
|
3024
3069
|
* @interface
|
|
3025
3070
|
* @private
|
|
@@ -3029,13 +3074,13 @@ type IAddProgramBalance = IAddprogbal;
|
|
|
3029
3074
|
|
|
3030
3075
|
type addProgramBalance_IAddProgramBalance = IAddProgramBalance;
|
|
3031
3076
|
declare namespace addProgramBalance {
|
|
3032
|
-
export { type addProgramBalance_IAddProgramBalance as IAddProgramBalance, actionName$
|
|
3077
|
+
export { type addProgramBalance_IAddProgramBalance as IAddProgramBalance, actionName$1s as actionName, authorizations$1s as authorizations };
|
|
3033
3078
|
}
|
|
3034
3079
|
|
|
3035
3080
|
/**
|
|
3036
3081
|
* Действие выполняется автоматически по ходу работы системы за подписью одного из контрактов: {@link ContractNames._soviet | совета} или {@link ContractNames._marketplace | маркетплейса}.
|
|
3037
3082
|
*/
|
|
3038
|
-
declare const authorizations$
|
|
3083
|
+
declare const authorizations$1r: readonly [{
|
|
3039
3084
|
readonly permissions: readonly ["active"];
|
|
3040
3085
|
readonly actor: {
|
|
3041
3086
|
readonly production: "soviet";
|
|
@@ -3051,7 +3096,7 @@ declare const authorizations$1q: readonly [{
|
|
|
3051
3096
|
/**
|
|
3052
3097
|
* Имя действия
|
|
3053
3098
|
*/
|
|
3054
|
-
declare const actionName$
|
|
3099
|
+
declare const actionName$1r = "subprogbal";
|
|
3055
3100
|
/**
|
|
3056
3101
|
* @interface
|
|
3057
3102
|
* @private
|
|
@@ -3061,7 +3106,7 @@ type ISubProgramBalance = ISubprogbal;
|
|
|
3061
3106
|
|
|
3062
3107
|
type subProgramBalance_ISubProgramBalance = ISubProgramBalance;
|
|
3063
3108
|
declare namespace subProgramBalance {
|
|
3064
|
-
export { type subProgramBalance_ISubProgramBalance as ISubProgramBalance, actionName$
|
|
3109
|
+
export { type subProgramBalance_ISubProgramBalance as ISubProgramBalance, actionName$1r as actionName, authorizations$1r as authorizations };
|
|
3065
3110
|
}
|
|
3066
3111
|
|
|
3067
3112
|
/**
|
|
@@ -3069,21 +3114,21 @@ declare namespace subProgramBalance {
|
|
|
3069
3114
|
* @private
|
|
3070
3115
|
*/
|
|
3071
3116
|
|
|
3072
|
-
declare namespace index$
|
|
3117
|
+
declare namespace index$t {
|
|
3073
3118
|
export { addBalance as AddBalance, addProgramBalance as AddProgramBalance, blockBalance as BlockBalance, subBalance as SubBalance, subProgramBalance as SubProgramBalance, unblockBalance as UnblockBalance };
|
|
3074
3119
|
}
|
|
3075
3120
|
|
|
3076
3121
|
/**
|
|
3077
3122
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3078
3123
|
*/
|
|
3079
|
-
declare const authorizations$
|
|
3124
|
+
declare const authorizations$1q: readonly [{
|
|
3080
3125
|
readonly permissions: readonly ["active"];
|
|
3081
3126
|
readonly actor: "_chairman";
|
|
3082
3127
|
}];
|
|
3083
3128
|
/**
|
|
3084
3129
|
* Имя действия
|
|
3085
3130
|
*/
|
|
3086
|
-
declare const actionName$
|
|
3131
|
+
declare const actionName$1q = "createprog";
|
|
3087
3132
|
/**
|
|
3088
3133
|
* @interface
|
|
3089
3134
|
* Действие редактирует целевую потребительскую программу.
|
|
@@ -3092,20 +3137,20 @@ type ICreateProgram = ICreateprog;
|
|
|
3092
3137
|
|
|
3093
3138
|
type createProgram_ICreateProgram = ICreateProgram;
|
|
3094
3139
|
declare namespace createProgram {
|
|
3095
|
-
export { type createProgram_ICreateProgram as ICreateProgram, actionName$
|
|
3140
|
+
export { type createProgram_ICreateProgram as ICreateProgram, actionName$1q as actionName, authorizations$1q as authorizations };
|
|
3096
3141
|
}
|
|
3097
3142
|
|
|
3098
3143
|
/**
|
|
3099
3144
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3100
3145
|
*/
|
|
3101
|
-
declare const authorizations$
|
|
3146
|
+
declare const authorizations$1p: readonly [{
|
|
3102
3147
|
readonly permissions: readonly ["active"];
|
|
3103
3148
|
readonly actor: "_chairman";
|
|
3104
3149
|
}];
|
|
3105
3150
|
/**
|
|
3106
3151
|
* Имя действия
|
|
3107
3152
|
*/
|
|
3108
|
-
declare const actionName$
|
|
3153
|
+
declare const actionName$1p = "editprog";
|
|
3109
3154
|
/**
|
|
3110
3155
|
* @interface
|
|
3111
3156
|
* Действие редактирует целевую потребительскую программу маркетплейса.
|
|
@@ -3114,20 +3159,20 @@ type IEditMarketProgram = IEditprog;
|
|
|
3114
3159
|
|
|
3115
3160
|
type editProgram_IEditMarketProgram = IEditMarketProgram;
|
|
3116
3161
|
declare namespace editProgram {
|
|
3117
|
-
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$
|
|
3162
|
+
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$1p as actionName, authorizations$1p as authorizations };
|
|
3118
3163
|
}
|
|
3119
3164
|
|
|
3120
3165
|
/**
|
|
3121
3166
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3122
3167
|
*/
|
|
3123
|
-
declare const authorizations$
|
|
3168
|
+
declare const authorizations$1o: readonly [{
|
|
3124
3169
|
readonly permissions: readonly ["active"];
|
|
3125
3170
|
readonly actor: "_chairman";
|
|
3126
3171
|
}];
|
|
3127
3172
|
/**
|
|
3128
3173
|
* Имя действия
|
|
3129
3174
|
*/
|
|
3130
|
-
declare const actionName$
|
|
3175
|
+
declare const actionName$1o = "disableprog";
|
|
3131
3176
|
/**
|
|
3132
3177
|
* @interface
|
|
3133
3178
|
* Действие отключает целевую потребительскую программу маркетплейса.
|
|
@@ -3136,49 +3181,28 @@ type IDisableMarketProgram = IDisableprog;
|
|
|
3136
3181
|
|
|
3137
3182
|
type disableProgram_IDisableMarketProgram = IDisableMarketProgram;
|
|
3138
3183
|
declare namespace disableProgram {
|
|
3139
|
-
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$
|
|
3140
|
-
}
|
|
3141
|
-
|
|
3142
|
-
/**
|
|
3143
|
-
* Действие выполняется за подписью любого {@link Actors._username | пользователя}.
|
|
3144
|
-
*/
|
|
3145
|
-
declare const authorizations$1m: readonly [{
|
|
3146
|
-
readonly permissions: readonly ["active"];
|
|
3147
|
-
readonly actor: "_username";
|
|
3148
|
-
}];
|
|
3149
|
-
/**
|
|
3150
|
-
* Имя действия
|
|
3151
|
-
*/
|
|
3152
|
-
declare const actionName$1m = "joinprog";
|
|
3153
|
-
/**
|
|
3154
|
-
* Действие отправки заявления на присоединение к ЦПП кооператива
|
|
3155
|
-
*/
|
|
3156
|
-
type IJoinProgram = IJoinprog;
|
|
3157
|
-
|
|
3158
|
-
type joinProgram_IJoinProgram = IJoinProgram;
|
|
3159
|
-
declare namespace joinProgram {
|
|
3160
|
-
export { type joinProgram_IJoinProgram as IJoinProgram, actionName$1m as actionName, authorizations$1m as authorizations };
|
|
3184
|
+
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$1o as actionName, authorizations$1o as authorizations };
|
|
3161
3185
|
}
|
|
3162
3186
|
|
|
3163
3187
|
/**
|
|
3164
3188
|
* Действие создаёт целевую потребительскую маркетплейса.
|
|
3165
3189
|
*/
|
|
3166
3190
|
|
|
3167
|
-
declare namespace index$
|
|
3168
|
-
export { createProgram as CreateProgram, disableProgram as DisableProgram, editProgram as EditProgram
|
|
3191
|
+
declare namespace index$s {
|
|
3192
|
+
export { createProgram as CreateProgram, disableProgram as DisableProgram, editProgram as EditProgram };
|
|
3169
3193
|
}
|
|
3170
3194
|
|
|
3171
3195
|
/**
|
|
3172
3196
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3173
3197
|
*/
|
|
3174
|
-
declare const authorizations$
|
|
3198
|
+
declare const authorizations$1n: readonly [{
|
|
3175
3199
|
readonly permissions: readonly ["active"];
|
|
3176
3200
|
readonly actor: "_member";
|
|
3177
3201
|
}];
|
|
3178
3202
|
/**
|
|
3179
3203
|
* Имя действия
|
|
3180
3204
|
*/
|
|
3181
|
-
declare const actionName$
|
|
3205
|
+
declare const actionName$1n = "voteagainst";
|
|
3182
3206
|
/**
|
|
3183
3207
|
* @interface
|
|
3184
3208
|
* Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
|
|
@@ -3186,20 +3210,20 @@ declare const actionName$1l = "voteagainst";
|
|
|
3186
3210
|
type IVoteAgainstDecision$1 = IVoteagainst;
|
|
3187
3211
|
|
|
3188
3212
|
declare namespace voteAgainst {
|
|
3189
|
-
export { type IVoteAgainstDecision$1 as IVoteAgainstDecision, actionName$
|
|
3213
|
+
export { type IVoteAgainstDecision$1 as IVoteAgainstDecision, actionName$1n as actionName, authorizations$1n as authorizations };
|
|
3190
3214
|
}
|
|
3191
3215
|
|
|
3192
3216
|
/**
|
|
3193
3217
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3194
3218
|
*/
|
|
3195
|
-
declare const authorizations$
|
|
3219
|
+
declare const authorizations$1m: readonly [{
|
|
3196
3220
|
readonly permissions: readonly ["active"];
|
|
3197
3221
|
readonly actor: "_member";
|
|
3198
3222
|
}];
|
|
3199
3223
|
/**
|
|
3200
3224
|
* Имя действия
|
|
3201
3225
|
*/
|
|
3202
|
-
declare const actionName$
|
|
3226
|
+
declare const actionName$1m = "votefor";
|
|
3203
3227
|
/**
|
|
3204
3228
|
* @interface
|
|
3205
3229
|
* Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
|
|
@@ -3208,20 +3232,20 @@ type IVoteForDecision = IVotefor;
|
|
|
3208
3232
|
|
|
3209
3233
|
type voteFor_IVoteForDecision = IVoteForDecision;
|
|
3210
3234
|
declare namespace voteFor {
|
|
3211
|
-
export { type voteFor_IVoteForDecision as IVoteForDecision, actionName$
|
|
3235
|
+
export { type voteFor_IVoteForDecision as IVoteForDecision, actionName$1m as actionName, authorizations$1m as authorizations };
|
|
3212
3236
|
}
|
|
3213
3237
|
|
|
3214
3238
|
/**
|
|
3215
3239
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3216
3240
|
*/
|
|
3217
|
-
declare const authorizations$
|
|
3241
|
+
declare const authorizations$1l: readonly [{
|
|
3218
3242
|
readonly permissions: readonly ["active"];
|
|
3219
3243
|
readonly actor: "_member";
|
|
3220
3244
|
}];
|
|
3221
3245
|
/**
|
|
3222
3246
|
* Имя действия
|
|
3223
3247
|
*/
|
|
3224
|
-
declare const actionName$
|
|
3248
|
+
declare const actionName$1l = "cancelvote";
|
|
3225
3249
|
/**
|
|
3226
3250
|
* @interface
|
|
3227
3251
|
* Принимает отмену голоса. Метод позволяет члену совета отменить свой голос, если решение еще не принято.
|
|
@@ -3230,20 +3254,20 @@ type IVoteAgainstDecision = IVoteagainst;
|
|
|
3230
3254
|
|
|
3231
3255
|
type cancelVote_IVoteAgainstDecision = IVoteAgainstDecision;
|
|
3232
3256
|
declare namespace cancelVote {
|
|
3233
|
-
export { type cancelVote_IVoteAgainstDecision as IVoteAgainstDecision, actionName$
|
|
3257
|
+
export { type cancelVote_IVoteAgainstDecision as IVoteAgainstDecision, actionName$1l as actionName, authorizations$1l as authorizations };
|
|
3234
3258
|
}
|
|
3235
3259
|
|
|
3236
3260
|
/**
|
|
3237
3261
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3238
3262
|
*/
|
|
3239
|
-
declare const authorizations$
|
|
3263
|
+
declare const authorizations$1k: readonly [{
|
|
3240
3264
|
readonly permissions: readonly ["active"];
|
|
3241
3265
|
readonly actor: "_chairman";
|
|
3242
3266
|
}];
|
|
3243
3267
|
/**
|
|
3244
3268
|
* Имя действия
|
|
3245
3269
|
*/
|
|
3246
|
-
declare const actionName$
|
|
3270
|
+
declare const actionName$1k = "authorize";
|
|
3247
3271
|
/**
|
|
3248
3272
|
* @interface
|
|
3249
3273
|
* Действие утверждения принятого советом решения.
|
|
@@ -3251,20 +3275,20 @@ declare const actionName$1i = "authorize";
|
|
|
3251
3275
|
type IAuthorize$2 = IAuthorize$3;
|
|
3252
3276
|
|
|
3253
3277
|
declare namespace authorize$1 {
|
|
3254
|
-
export { type IAuthorize$2 as IAuthorize, actionName$
|
|
3278
|
+
export { type IAuthorize$2 as IAuthorize, actionName$1k as actionName, authorizations$1k as authorizations };
|
|
3255
3279
|
}
|
|
3256
3280
|
|
|
3257
3281
|
/**
|
|
3258
3282
|
* Действие выполняется за подписью любого {@link Actors._username | пользователя}.
|
|
3259
3283
|
*/
|
|
3260
|
-
declare const authorizations$
|
|
3284
|
+
declare const authorizations$1j: readonly [{
|
|
3261
3285
|
readonly permissions: readonly ["active"];
|
|
3262
3286
|
readonly actor: "_username";
|
|
3263
3287
|
}];
|
|
3264
3288
|
/**
|
|
3265
3289
|
* Имя действия
|
|
3266
3290
|
*/
|
|
3267
|
-
declare const actionName$
|
|
3291
|
+
declare const actionName$1j = "exec";
|
|
3268
3292
|
/**
|
|
3269
3293
|
* @interface
|
|
3270
3294
|
* Действие исполнения принятого решения.
|
|
@@ -3276,13 +3300,13 @@ declare const actionName$1h = "exec";
|
|
|
3276
3300
|
type IExec$3 = IExec$4;
|
|
3277
3301
|
|
|
3278
3302
|
declare namespace exec$1 {
|
|
3279
|
-
export { type IExec$3 as IExec, actionName$
|
|
3303
|
+
export { type IExec$3 as IExec, actionName$1j as actionName, authorizations$1j as authorizations };
|
|
3280
3304
|
}
|
|
3281
3305
|
|
|
3282
3306
|
/**
|
|
3283
3307
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._marketplace | маркетплейса}.
|
|
3284
3308
|
*/
|
|
3285
|
-
declare const authorizations$
|
|
3309
|
+
declare const authorizations$1i: readonly [{
|
|
3286
3310
|
readonly permissions: readonly ["active"];
|
|
3287
3311
|
readonly actor: {
|
|
3288
3312
|
readonly production: "marketplace";
|
|
@@ -3292,7 +3316,7 @@ declare const authorizations$1g: readonly [{
|
|
|
3292
3316
|
/**
|
|
3293
3317
|
* Имя действия
|
|
3294
3318
|
*/
|
|
3295
|
-
declare const actionName$
|
|
3319
|
+
declare const actionName$1i = "change";
|
|
3296
3320
|
/**
|
|
3297
3321
|
* @interface
|
|
3298
3322
|
* Действие поставляет в совет на голосование заявления на взнос и возврат взноса двух пайщиков целевой потребительской программы маркетплейса.
|
|
@@ -3302,13 +3326,13 @@ type IMarketDecision = IChange;
|
|
|
3302
3326
|
|
|
3303
3327
|
type marketDecision_IMarketDecision = IMarketDecision;
|
|
3304
3328
|
declare namespace marketDecision {
|
|
3305
|
-
export { type marketDecision_IMarketDecision as IMarketDecision, actionName$
|
|
3329
|
+
export { type marketDecision_IMarketDecision as IMarketDecision, actionName$1i as actionName, authorizations$1i as authorizations };
|
|
3306
3330
|
}
|
|
3307
3331
|
|
|
3308
3332
|
/**
|
|
3309
3333
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._gateway | шлюза}.
|
|
3310
3334
|
*/
|
|
3311
|
-
declare const authorizations$
|
|
3335
|
+
declare const authorizations$1h: readonly [{
|
|
3312
3336
|
readonly permissions: readonly ["active"];
|
|
3313
3337
|
readonly actor: {
|
|
3314
3338
|
readonly production: "gateway";
|
|
@@ -3318,7 +3342,7 @@ declare const authorizations$1f: readonly [{
|
|
|
3318
3342
|
/**
|
|
3319
3343
|
* Имя действия
|
|
3320
3344
|
*/
|
|
3321
|
-
declare const actionName$
|
|
3345
|
+
declare const actionName$1h = "withdraw";
|
|
3322
3346
|
/**
|
|
3323
3347
|
* @interface
|
|
3324
3348
|
* Действие поставляет в совет на голосование заявление на возврат паевого взноса.
|
|
@@ -3328,13 +3352,13 @@ type IWithdrawDecision = IWithdraw;
|
|
|
3328
3352
|
|
|
3329
3353
|
type withdrawDecision_IWithdrawDecision = IWithdrawDecision;
|
|
3330
3354
|
declare namespace withdrawDecision {
|
|
3331
|
-
export { type withdrawDecision_IWithdrawDecision as IWithdrawDecision, actionName$
|
|
3355
|
+
export { type withdrawDecision_IWithdrawDecision as IWithdrawDecision, actionName$1h as actionName, authorizations$1h as authorizations };
|
|
3332
3356
|
}
|
|
3333
3357
|
|
|
3334
3358
|
/**
|
|
3335
3359
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._fund | фондов}.
|
|
3336
3360
|
*/
|
|
3337
|
-
declare const authorizations$
|
|
3361
|
+
declare const authorizations$1g: readonly [{
|
|
3338
3362
|
readonly permissions: readonly ["active"];
|
|
3339
3363
|
readonly actor: {
|
|
3340
3364
|
readonly production: "fund";
|
|
@@ -3344,7 +3368,7 @@ declare const authorizations$1e: readonly [{
|
|
|
3344
3368
|
/**
|
|
3345
3369
|
* Имя действия
|
|
3346
3370
|
*/
|
|
3347
|
-
declare const actionName$
|
|
3371
|
+
declare const actionName$1g = "fundwithdraw";
|
|
3348
3372
|
/**
|
|
3349
3373
|
* @interface
|
|
3350
3374
|
* Действие поставляет в совет на голосование документ о необходимости использования средств фондов кооператива (кроме паевого).
|
|
@@ -3354,13 +3378,13 @@ type IFundWithdrawDecision = IFundwithdraw;
|
|
|
3354
3378
|
|
|
3355
3379
|
type fundWithdrawDecision_IFundWithdrawDecision = IFundWithdrawDecision;
|
|
3356
3380
|
declare namespace fundWithdrawDecision {
|
|
3357
|
-
export { type fundWithdrawDecision_IFundWithdrawDecision as IFundWithdrawDecision, actionName$
|
|
3381
|
+
export { type fundWithdrawDecision_IFundWithdrawDecision as IFundWithdrawDecision, actionName$1g as actionName, authorizations$1g as authorizations };
|
|
3358
3382
|
}
|
|
3359
3383
|
|
|
3360
3384
|
/**
|
|
3361
3385
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._registrator | шлюза}.
|
|
3362
3386
|
*/
|
|
3363
|
-
declare const authorizations$
|
|
3387
|
+
declare const authorizations$1f: readonly [{
|
|
3364
3388
|
readonly permissions: readonly ["active"];
|
|
3365
3389
|
readonly actor: {
|
|
3366
3390
|
readonly production: "registrator";
|
|
@@ -3370,7 +3394,7 @@ declare const authorizations$1d: readonly [{
|
|
|
3370
3394
|
/**
|
|
3371
3395
|
* Имя действия
|
|
3372
3396
|
*/
|
|
3373
|
-
declare const actionName$
|
|
3397
|
+
declare const actionName$1f = "joincoop";
|
|
3374
3398
|
/**
|
|
3375
3399
|
* @interface
|
|
3376
3400
|
* Действие поставляет в совет на голосование заявление на вступление в кооператив.
|
|
@@ -3380,13 +3404,13 @@ type IJoinCoopDecision = IJoincoop;
|
|
|
3380
3404
|
|
|
3381
3405
|
type joinCoopDecision_IJoinCoopDecision = IJoinCoopDecision;
|
|
3382
3406
|
declare namespace joinCoopDecision {
|
|
3383
|
-
export { type joinCoopDecision_IJoinCoopDecision as IJoinCoopDecision, actionName$
|
|
3407
|
+
export { type joinCoopDecision_IJoinCoopDecision as IJoinCoopDecision, actionName$1f as actionName, authorizations$1f as authorizations };
|
|
3384
3408
|
}
|
|
3385
3409
|
|
|
3386
3410
|
/**
|
|
3387
3411
|
* Действие выполняется автоматически за подписью контракта {@link ContractNames._marketplace | маркетплейса}.
|
|
3388
3412
|
*/
|
|
3389
|
-
declare const authorizations$
|
|
3413
|
+
declare const authorizations$1e: readonly [{
|
|
3390
3414
|
readonly permissions: readonly ["active"];
|
|
3391
3415
|
readonly actor: {
|
|
3392
3416
|
readonly production: "marketplace";
|
|
@@ -3396,7 +3420,7 @@ declare const authorizations$1c: readonly [{
|
|
|
3396
3420
|
/**
|
|
3397
3421
|
* Имя действия
|
|
3398
3422
|
*/
|
|
3399
|
-
declare const actionName$
|
|
3423
|
+
declare const actionName$1e = "recieved";
|
|
3400
3424
|
/**
|
|
3401
3425
|
* @interface
|
|
3402
3426
|
* Действие поставляет в совет информацию о завершении процесса клиринга и инициирует выпуск закрывающих документов в реестр.
|
|
@@ -3406,13 +3430,13 @@ type IProductRecieved = IRecieved;
|
|
|
3406
3430
|
|
|
3407
3431
|
type productRecieved_IProductRecieved = IProductRecieved;
|
|
3408
3432
|
declare namespace productRecieved {
|
|
3409
|
-
export { type productRecieved_IProductRecieved as IProductRecieved, actionName$
|
|
3433
|
+
export { type productRecieved_IProductRecieved as IProductRecieved, actionName$1e as actionName, authorizations$1e as authorizations };
|
|
3410
3434
|
}
|
|
3411
3435
|
|
|
3412
3436
|
/**
|
|
3413
3437
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3414
3438
|
*/
|
|
3415
|
-
declare const authorizations$
|
|
3439
|
+
declare const authorizations$1d: readonly [{
|
|
3416
3440
|
readonly permissions: readonly ["active", {
|
|
3417
3441
|
readonly contract: "_contract";
|
|
3418
3442
|
readonly action: "actionName";
|
|
@@ -3422,7 +3446,7 @@ declare const authorizations$1b: readonly [{
|
|
|
3422
3446
|
/**
|
|
3423
3447
|
* Имя действия
|
|
3424
3448
|
*/
|
|
3425
|
-
declare const actionName$
|
|
3449
|
+
declare const actionName$1d = "validated";
|
|
3426
3450
|
/**
|
|
3427
3451
|
* @interface
|
|
3428
3452
|
* Действие валидации документов, поданных на голосование в совет.
|
|
@@ -3431,20 +3455,20 @@ type IValidate = IValidate$1;
|
|
|
3431
3455
|
|
|
3432
3456
|
type validate_IValidate = IValidate;
|
|
3433
3457
|
declare namespace validate {
|
|
3434
|
-
export { type validate_IValidate as IValidate, actionName$
|
|
3458
|
+
export { type validate_IValidate as IValidate, actionName$1d as actionName, authorizations$1d as authorizations };
|
|
3435
3459
|
}
|
|
3436
3460
|
|
|
3437
3461
|
/**
|
|
3438
3462
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3439
3463
|
*/
|
|
3440
|
-
declare const authorizations$
|
|
3464
|
+
declare const authorizations$1c: readonly [{
|
|
3441
3465
|
readonly permissions: readonly ["active"];
|
|
3442
3466
|
readonly actor: "_member";
|
|
3443
3467
|
}];
|
|
3444
3468
|
/**
|
|
3445
3469
|
* Имя действия
|
|
3446
3470
|
*/
|
|
3447
|
-
declare const actionName$
|
|
3471
|
+
declare const actionName$1c = "automate";
|
|
3448
3472
|
/**
|
|
3449
3473
|
* @interface
|
|
3450
3474
|
* Подключает автоматизацию принятия решений по указанным типам вопросов на повестке для члена совета.
|
|
@@ -3453,20 +3477,20 @@ type IAutomate = IAutomate$1;
|
|
|
3453
3477
|
|
|
3454
3478
|
type automate_IAutomate = IAutomate;
|
|
3455
3479
|
declare namespace automate {
|
|
3456
|
-
export { type automate_IAutomate as IAutomate, actionName$
|
|
3480
|
+
export { type automate_IAutomate as IAutomate, actionName$1c as actionName, authorizations$1c as authorizations };
|
|
3457
3481
|
}
|
|
3458
3482
|
|
|
3459
3483
|
/**
|
|
3460
3484
|
* Действие выполняется за подписью {@link Actors._member | члена совета}.
|
|
3461
3485
|
*/
|
|
3462
|
-
declare const authorizations$
|
|
3486
|
+
declare const authorizations$1b: readonly [{
|
|
3463
3487
|
readonly permissions: readonly ["active"];
|
|
3464
3488
|
readonly actor: "_member";
|
|
3465
3489
|
}];
|
|
3466
3490
|
/**
|
|
3467
3491
|
* Имя действия
|
|
3468
3492
|
*/
|
|
3469
|
-
declare const actionName$
|
|
3493
|
+
declare const actionName$1b = "disautomate";
|
|
3470
3494
|
/**
|
|
3471
3495
|
* @interface
|
|
3472
3496
|
* Отключает автоматизацию принятия решений по указанным типам вопросов на повестке для члена совета.
|
|
@@ -3475,25 +3499,25 @@ type IDisautomate = IDisautomate$1;
|
|
|
3475
3499
|
|
|
3476
3500
|
type disautomate_IDisautomate = IDisautomate;
|
|
3477
3501
|
declare namespace disautomate {
|
|
3478
|
-
export { type disautomate_IDisautomate as IDisautomate, actionName$
|
|
3502
|
+
export { type disautomate_IDisautomate as IDisautomate, actionName$1b as actionName, authorizations$1b as authorizations };
|
|
3479
3503
|
}
|
|
3480
3504
|
|
|
3481
3505
|
/**
|
|
3482
3506
|
* Принимает голос "ПРОТИВ" от члена совета по повестке собрания.
|
|
3483
3507
|
*/
|
|
3484
3508
|
|
|
3485
|
-
declare namespace index$
|
|
3509
|
+
declare namespace index$r {
|
|
3486
3510
|
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 };
|
|
3487
3511
|
}
|
|
3488
3512
|
|
|
3489
|
-
declare const authorizations$
|
|
3513
|
+
declare const authorizations$1a: readonly [{
|
|
3490
3514
|
readonly permissions: readonly ["active"];
|
|
3491
3515
|
readonly actor: "_chairman";
|
|
3492
3516
|
}];
|
|
3493
3517
|
/**
|
|
3494
3518
|
* Имя действия
|
|
3495
3519
|
*/
|
|
3496
|
-
declare const actionName$
|
|
3520
|
+
declare const actionName$1a = "createboard";
|
|
3497
3521
|
/**
|
|
3498
3522
|
* @interface
|
|
3499
3523
|
*/
|
|
@@ -3501,17 +3525,17 @@ type ICreateboard = ICreateboard$1;
|
|
|
3501
3525
|
|
|
3502
3526
|
type createBoard_ICreateboard = ICreateboard;
|
|
3503
3527
|
declare namespace createBoard {
|
|
3504
|
-
export { type createBoard_ICreateboard as ICreateboard, actionName$
|
|
3528
|
+
export { type createBoard_ICreateboard as ICreateboard, actionName$1a as actionName, authorizations$1a as authorizations };
|
|
3505
3529
|
}
|
|
3506
3530
|
|
|
3507
|
-
declare const authorizations$
|
|
3531
|
+
declare const authorizations$19: readonly [{
|
|
3508
3532
|
readonly permissions: readonly ["active"];
|
|
3509
3533
|
readonly actor: "_chairman";
|
|
3510
3534
|
}];
|
|
3511
3535
|
/**
|
|
3512
3536
|
* Имя действия
|
|
3513
3537
|
*/
|
|
3514
|
-
declare const actionName$
|
|
3538
|
+
declare const actionName$19 = "updateboard";
|
|
3515
3539
|
/**
|
|
3516
3540
|
* @interface
|
|
3517
3541
|
* Действие изменения данных доски совета.
|
|
@@ -3520,24 +3544,24 @@ type IUpdateBoard = IUpdateboard;
|
|
|
3520
3544
|
|
|
3521
3545
|
type updateBoard_IUpdateBoard = IUpdateBoard;
|
|
3522
3546
|
declare namespace updateBoard {
|
|
3523
|
-
export { type updateBoard_IUpdateBoard as IUpdateBoard, actionName$
|
|
3547
|
+
export { type updateBoard_IUpdateBoard as IUpdateBoard, actionName$19 as actionName, authorizations$19 as authorizations };
|
|
3524
3548
|
}
|
|
3525
3549
|
|
|
3526
|
-
declare namespace index$
|
|
3550
|
+
declare namespace index$q {
|
|
3527
3551
|
export { createBoard as CreateBoard, updateBoard as UpdateBoard };
|
|
3528
3552
|
}
|
|
3529
3553
|
|
|
3530
3554
|
/**
|
|
3531
3555
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3532
3556
|
*/
|
|
3533
|
-
declare const authorizations$
|
|
3557
|
+
declare const authorizations$18: readonly [{
|
|
3534
3558
|
readonly permissions: readonly ["active"];
|
|
3535
3559
|
readonly actor: "_chairman";
|
|
3536
3560
|
}];
|
|
3537
3561
|
/**
|
|
3538
3562
|
* Имя действия
|
|
3539
3563
|
*/
|
|
3540
|
-
declare const actionName$
|
|
3564
|
+
declare const actionName$18 = "addstaff";
|
|
3541
3565
|
/**
|
|
3542
3566
|
* @interface
|
|
3543
3567
|
* Действие добавления администратора.
|
|
@@ -3546,20 +3570,20 @@ type IAddAdmin = IAddstaff;
|
|
|
3546
3570
|
|
|
3547
3571
|
type addAdmin_IAddAdmin = IAddAdmin;
|
|
3548
3572
|
declare namespace addAdmin {
|
|
3549
|
-
export { type addAdmin_IAddAdmin as IAddAdmin, actionName$
|
|
3573
|
+
export { type addAdmin_IAddAdmin as IAddAdmin, actionName$18 as actionName, authorizations$18 as authorizations };
|
|
3550
3574
|
}
|
|
3551
3575
|
|
|
3552
3576
|
/**
|
|
3553
3577
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3554
3578
|
*/
|
|
3555
|
-
declare const authorizations$
|
|
3579
|
+
declare const authorizations$17: readonly [{
|
|
3556
3580
|
readonly permissions: readonly ["active"];
|
|
3557
3581
|
readonly actor: "_chairman";
|
|
3558
3582
|
}];
|
|
3559
3583
|
/**
|
|
3560
3584
|
* Имя действия
|
|
3561
3585
|
*/
|
|
3562
|
-
declare const actionName$
|
|
3586
|
+
declare const actionName$17 = "rmstaff";
|
|
3563
3587
|
/**
|
|
3564
3588
|
* @interface
|
|
3565
3589
|
* Действие удаления администратора.
|
|
@@ -3568,13 +3592,13 @@ type IDeleteAdmin = IRmstaff;
|
|
|
3568
3592
|
|
|
3569
3593
|
type deleteAdmin_IDeleteAdmin = IDeleteAdmin;
|
|
3570
3594
|
declare namespace deleteAdmin {
|
|
3571
|
-
export { type deleteAdmin_IDeleteAdmin as IDeleteAdmin, actionName$
|
|
3595
|
+
export { type deleteAdmin_IDeleteAdmin as IDeleteAdmin, actionName$17 as actionName, authorizations$17 as authorizations };
|
|
3572
3596
|
}
|
|
3573
3597
|
|
|
3574
3598
|
/**
|
|
3575
3599
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3576
3600
|
*/
|
|
3577
|
-
declare const authorizations$
|
|
3601
|
+
declare const authorizations$16: readonly [{
|
|
3578
3602
|
readonly permissions: readonly ["active", {
|
|
3579
3603
|
readonly contract: "_contract";
|
|
3580
3604
|
readonly action: "actionName";
|
|
@@ -3584,7 +3608,7 @@ declare const authorizations$14: readonly [{
|
|
|
3584
3608
|
/**
|
|
3585
3609
|
* Имя действия
|
|
3586
3610
|
*/
|
|
3587
|
-
declare const actionName$
|
|
3611
|
+
declare const actionName$16 = "regpaid";
|
|
3588
3612
|
/**
|
|
3589
3613
|
* @interface
|
|
3590
3614
|
* Действие регистрации получения оплаты вступительного взноса.
|
|
@@ -3593,20 +3617,20 @@ type IRegisterPayment = IRegpaid;
|
|
|
3593
3617
|
|
|
3594
3618
|
type registerPayment_IRegisterPayment = IRegisterPayment;
|
|
3595
3619
|
declare namespace registerPayment {
|
|
3596
|
-
export { type registerPayment_IRegisterPayment as IRegisterPayment, actionName$
|
|
3620
|
+
export { type registerPayment_IRegisterPayment as IRegisterPayment, actionName$16 as actionName, authorizations$16 as authorizations };
|
|
3597
3621
|
}
|
|
3598
3622
|
|
|
3599
3623
|
/**
|
|
3600
3624
|
* Действие выполняется за подписью {@link Actors._chairman | председателя}.
|
|
3601
3625
|
*/
|
|
3602
|
-
declare const authorizations$
|
|
3626
|
+
declare const authorizations$15: readonly [{
|
|
3603
3627
|
readonly permissions: readonly ["active"];
|
|
3604
3628
|
readonly actor: "_chairman";
|
|
3605
3629
|
}];
|
|
3606
3630
|
/**
|
|
3607
3631
|
* Имя действия
|
|
3608
3632
|
*/
|
|
3609
|
-
declare const actionName$
|
|
3633
|
+
declare const actionName$15 = "setrights";
|
|
3610
3634
|
/**
|
|
3611
3635
|
* @interface
|
|
3612
3636
|
* Действие изменений прав доступа администратора.
|
|
@@ -3615,20 +3639,20 @@ type ISetRights = ISetrights;
|
|
|
3615
3639
|
|
|
3616
3640
|
type setRights_ISetRights = ISetRights;
|
|
3617
3641
|
declare namespace setRights {
|
|
3618
|
-
export { type setRights_ISetRights as ISetRights, actionName$
|
|
3642
|
+
export { type setRights_ISetRights as ISetRights, actionName$15 as actionName, authorizations$15 as authorizations };
|
|
3619
3643
|
}
|
|
3620
3644
|
|
|
3621
3645
|
/**
|
|
3622
3646
|
* Действие выполняется за подписью {@link Actors._system | системного контракта}.
|
|
3623
3647
|
*/
|
|
3624
|
-
declare const authorizations$
|
|
3648
|
+
declare const authorizations$14: readonly [{
|
|
3625
3649
|
readonly permissions: readonly ["active"];
|
|
3626
3650
|
readonly actor: "_system";
|
|
3627
3651
|
}];
|
|
3628
3652
|
/**
|
|
3629
3653
|
* Имя действия
|
|
3630
3654
|
*/
|
|
3631
|
-
declare const actionName$
|
|
3655
|
+
declare const actionName$14 = "init";
|
|
3632
3656
|
/**
|
|
3633
3657
|
* @interface
|
|
3634
3658
|
* Действие добавления администратора.
|
|
@@ -3636,13 +3660,21 @@ declare const actionName$12 = "init";
|
|
|
3636
3660
|
type IInit$2 = IInit$3;
|
|
3637
3661
|
|
|
3638
3662
|
declare namespace init$1 {
|
|
3639
|
-
export { type IInit$2 as IInit, actionName$
|
|
3663
|
+
export { type IInit$2 as IInit, actionName$14 as actionName, authorizations$14 as authorizations };
|
|
3664
|
+
}
|
|
3665
|
+
|
|
3666
|
+
/**
|
|
3667
|
+
* Действие добавления администратора.
|
|
3668
|
+
*/
|
|
3669
|
+
|
|
3670
|
+
declare namespace index$p {
|
|
3671
|
+
export { addAdmin as AddAdmin, deleteAdmin as DeleteAdmin, init$1 as Init, registerPayment as RegisterPayment, setRights as SetRights };
|
|
3640
3672
|
}
|
|
3641
3673
|
|
|
3642
3674
|
/**
|
|
3643
3675
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3644
3676
|
*/
|
|
3645
|
-
declare const authorizations$
|
|
3677
|
+
declare const authorizations$13: readonly [{
|
|
3646
3678
|
readonly permissions: readonly ["active", {
|
|
3647
3679
|
readonly contract: "_contract";
|
|
3648
3680
|
readonly action: "actionName";
|
|
@@ -3652,22 +3684,22 @@ declare const authorizations$11: readonly [{
|
|
|
3652
3684
|
/**
|
|
3653
3685
|
* Имя действия
|
|
3654
3686
|
*/
|
|
3655
|
-
declare const actionName$
|
|
3687
|
+
declare const actionName$13 = "confirmagree";
|
|
3656
3688
|
/**
|
|
3657
3689
|
* @interface
|
|
3658
3690
|
* Действие подтверждает приём заявления администратором
|
|
3659
3691
|
*/
|
|
3660
|
-
type
|
|
3692
|
+
type IConfirmAgreement = IConfirmagree;
|
|
3661
3693
|
|
|
3662
|
-
type
|
|
3663
|
-
declare namespace
|
|
3664
|
-
export { type
|
|
3694
|
+
type confirmAgreement_IConfirmAgreement = IConfirmAgreement;
|
|
3695
|
+
declare namespace confirmAgreement {
|
|
3696
|
+
export { type confirmAgreement_IConfirmAgreement as IConfirmAgreement, actionName$13 as actionName, authorizations$13 as authorizations };
|
|
3665
3697
|
}
|
|
3666
3698
|
|
|
3667
3699
|
/**
|
|
3668
3700
|
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3669
3701
|
*/
|
|
3670
|
-
declare const authorizations$
|
|
3702
|
+
declare const authorizations$12: readonly [{
|
|
3671
3703
|
readonly permissions: readonly ["active", {
|
|
3672
3704
|
readonly contract: "_contract";
|
|
3673
3705
|
readonly action: "actionName";
|
|
@@ -3677,24 +3709,69 @@ declare const authorizations$10: readonly [{
|
|
|
3677
3709
|
/**
|
|
3678
3710
|
* Имя действия
|
|
3679
3711
|
*/
|
|
3680
|
-
declare const actionName$
|
|
3712
|
+
declare const actionName$12 = "declineagree";
|
|
3681
3713
|
/**
|
|
3682
3714
|
* @interface
|
|
3683
3715
|
* Действие отклоняет заявление пайщика администратором
|
|
3684
3716
|
*/
|
|
3685
|
-
type
|
|
3717
|
+
type IDeclineAgreement = IDeclineagree;
|
|
3686
3718
|
|
|
3687
|
-
type
|
|
3688
|
-
declare namespace
|
|
3689
|
-
export { type
|
|
3719
|
+
type declineAgreement_IDeclineAgreement = IDeclineAgreement;
|
|
3720
|
+
declare namespace declineAgreement {
|
|
3721
|
+
export { type declineAgreement_IDeclineAgreement as IDeclineAgreement, actionName$12 as actionName, authorizations$12 as authorizations };
|
|
3690
3722
|
}
|
|
3691
3723
|
|
|
3692
3724
|
/**
|
|
3693
|
-
* Действие
|
|
3725
|
+
* Действие выполняется за подписью любого {@link Actors._username | пользователя}.
|
|
3694
3726
|
*/
|
|
3727
|
+
declare const authorizations$11: readonly [{
|
|
3728
|
+
readonly permissions: readonly ["active"];
|
|
3729
|
+
readonly actor: "_username";
|
|
3730
|
+
}];
|
|
3731
|
+
/**
|
|
3732
|
+
* Имя действия
|
|
3733
|
+
*/
|
|
3734
|
+
declare const actionName$11 = "sndagreement";
|
|
3735
|
+
/**
|
|
3736
|
+
* Действие отправки заявления на присоединение к ЦПП кооператива
|
|
3737
|
+
*/
|
|
3738
|
+
type ISendAgreement = ISndagreement;
|
|
3695
3739
|
|
|
3696
|
-
|
|
3697
|
-
|
|
3740
|
+
type sendAgreement_ISendAgreement = ISendAgreement;
|
|
3741
|
+
declare namespace sendAgreement {
|
|
3742
|
+
export { type sendAgreement_ISendAgreement as ISendAgreement, actionName$11 as actionName, authorizations$11 as authorizations };
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
/**
|
|
3746
|
+
* Действие выполняется за подписью {@link Actors._admin | администратора}.
|
|
3747
|
+
*/
|
|
3748
|
+
declare const authorizations$10: readonly [{
|
|
3749
|
+
readonly permissions: readonly ["active", {
|
|
3750
|
+
readonly contract: "_contract";
|
|
3751
|
+
readonly action: "actionName";
|
|
3752
|
+
}];
|
|
3753
|
+
readonly actor: "_admin";
|
|
3754
|
+
}];
|
|
3755
|
+
/**
|
|
3756
|
+
* Имя действия
|
|
3757
|
+
*/
|
|
3758
|
+
declare const actionName$10 = "makecoagreem";
|
|
3759
|
+
/**
|
|
3760
|
+
* Действие отправки заявления на присоединение к ЦПП кооператива
|
|
3761
|
+
*/
|
|
3762
|
+
type IMakeCoagreement = IMakecoagreem;
|
|
3763
|
+
|
|
3764
|
+
type makeCoagreement_IMakeCoagreement = IMakeCoagreement;
|
|
3765
|
+
declare namespace makeCoagreement {
|
|
3766
|
+
export { type makeCoagreement_IMakeCoagreement as IMakeCoagreement, actionName$10 as actionName, authorizations$10 as authorizations };
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
/**
|
|
3770
|
+
* Действие подтверждения приёма заявления пайщика
|
|
3771
|
+
*/
|
|
3772
|
+
|
|
3773
|
+
declare namespace index$o {
|
|
3774
|
+
export { confirmAgreement as ConfirmAgreement, declineAgreement as DeclineAgreement, makeCoagreement as MakeCoagreement, sendAgreement as SendAgreement };
|
|
3698
3775
|
}
|
|
3699
3776
|
|
|
3700
3777
|
/**
|
|
@@ -3702,8 +3779,8 @@ declare namespace index$k {
|
|
|
3702
3779
|
* @private
|
|
3703
3780
|
*/
|
|
3704
3781
|
|
|
3705
|
-
declare namespace index$
|
|
3706
|
-
export { index$
|
|
3782
|
+
declare namespace index$n {
|
|
3783
|
+
export { index$u as Addresses, index$p as Admins, index$o as Agreements, index$q as Boards, index$r as Decisions, index$s as Programs, index$v as Registry, index$t as Wallet };
|
|
3707
3784
|
}
|
|
3708
3785
|
|
|
3709
3786
|
/**
|
|
@@ -3936,7 +4013,7 @@ declare namespace wallets {
|
|
|
3936
4013
|
/**
|
|
3937
4014
|
* Имя таблицы
|
|
3938
4015
|
*/
|
|
3939
|
-
declare const tableName$h = "
|
|
4016
|
+
declare const tableName$h = "agreements";
|
|
3940
4017
|
/**
|
|
3941
4018
|
* Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
|
|
3942
4019
|
*/
|
|
@@ -3944,19 +4021,19 @@ declare const scope$h = "_coopname";
|
|
|
3944
4021
|
/**
|
|
3945
4022
|
* @interface
|
|
3946
4023
|
*/
|
|
3947
|
-
type
|
|
4024
|
+
type IAgreement = IAgreement$1;
|
|
3948
4025
|
|
|
3949
|
-
type
|
|
3950
|
-
declare namespace
|
|
3951
|
-
export { type
|
|
4026
|
+
type agreements_IAgreement = IAgreement;
|
|
4027
|
+
declare namespace agreements {
|
|
4028
|
+
export { type agreements_IAgreement as IAgreement, scope$h as scope, tableName$h as tableName };
|
|
3952
4029
|
}
|
|
3953
4030
|
|
|
3954
4031
|
/**
|
|
3955
4032
|
* Таблица хранит информацию о адресах кооператива.
|
|
3956
4033
|
*/
|
|
3957
4034
|
|
|
3958
|
-
declare namespace index$
|
|
3959
|
-
export { addresses as Addresses, admins as Admins, automationQueue as AutomationQueue, automations as Automations, boards as Boards, changes as Changes, decisions as Decisions,
|
|
4035
|
+
declare namespace index$m {
|
|
4036
|
+
export { addresses as Addresses, admins as Admins, agreements as Agreements, automationQueue as AutomationQueue, automations as Automations, boards as Boards, changes as Changes, decisions as Decisions, joinCoops as JoinCoops, participants as Participants, programWallets as ProgramWallets, programs as Programs, wallets as Wallets };
|
|
3960
4037
|
}
|
|
3961
4038
|
|
|
3962
4039
|
declare const contractName$4: {
|
|
@@ -3964,8 +4041,8 @@ declare const contractName$4: {
|
|
|
3964
4041
|
readonly testnet: "soviettest22";
|
|
3965
4042
|
};
|
|
3966
4043
|
|
|
3967
|
-
declare namespace index$
|
|
3968
|
-
export { index$
|
|
4044
|
+
declare namespace index$l {
|
|
4045
|
+
export { index$n as Actions, soviet as Interfaces, index$m as Tables, contractName$4 as contractName };
|
|
3969
4046
|
}
|
|
3970
4047
|
|
|
3971
4048
|
type IAsset$1 = string;
|
|
@@ -4632,7 +4709,7 @@ declare namespace updateRequest {
|
|
|
4632
4709
|
* Действие для подтверждения готовности выполнить поставку по входящей заявке.
|
|
4633
4710
|
*/
|
|
4634
4711
|
|
|
4635
|
-
declare namespace index$
|
|
4712
|
+
declare namespace index$k {
|
|
4636
4713
|
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 };
|
|
4637
4714
|
}
|
|
4638
4715
|
|
|
@@ -4662,7 +4739,7 @@ declare namespace requests {
|
|
|
4662
4739
|
* Таблица с заявками на поставки
|
|
4663
4740
|
*/
|
|
4664
4741
|
|
|
4665
|
-
declare namespace index$
|
|
4742
|
+
declare namespace index$j {
|
|
4666
4743
|
export { requests as Requests };
|
|
4667
4744
|
}
|
|
4668
4745
|
|
|
@@ -4671,8 +4748,8 @@ declare const contractName$3: {
|
|
|
4671
4748
|
readonly testnet: "markettest22";
|
|
4672
4749
|
};
|
|
4673
4750
|
|
|
4674
|
-
declare namespace index$
|
|
4675
|
-
export { index$
|
|
4751
|
+
declare namespace index$i {
|
|
4752
|
+
export { index$k as Actions, marketplace as Interfaces, index$j as Tables, contractName$3 as contractName };
|
|
4676
4753
|
}
|
|
4677
4754
|
|
|
4678
4755
|
type IName$2 = string;
|
|
@@ -4931,7 +5008,7 @@ declare namespace invalidateAccount {
|
|
|
4931
5008
|
* Если такое предложение уже существует, оно будет заменено новым.
|
|
4932
5009
|
*/
|
|
4933
5010
|
|
|
4934
|
-
declare namespace index$
|
|
5011
|
+
declare namespace index$h {
|
|
4935
5012
|
export { approveProposal as ApproveProposal, cancelProposal as CancelProposal, execProposal as ExecProposal, invalidateAccount as InvalidateProposal, proposeTransaction as ProposeTransaction, unapproveProposal as UnapproveProposal };
|
|
4936
5013
|
}
|
|
4937
5014
|
|
|
@@ -5023,7 +5100,7 @@ declare namespace proposals {
|
|
|
5023
5100
|
* @deprecated
|
|
5024
5101
|
*/
|
|
5025
5102
|
|
|
5026
|
-
declare namespace index$
|
|
5103
|
+
declare namespace index$g {
|
|
5027
5104
|
export { approvals as Approvals, approvals2 as Approvals2, invalidations as Invalidations, proposals as Proposals };
|
|
5028
5105
|
}
|
|
5029
5106
|
|
|
@@ -5032,8 +5109,8 @@ declare const contractName$2: {
|
|
|
5032
5109
|
readonly testnet: "eosio.msig";
|
|
5033
5110
|
};
|
|
5034
5111
|
|
|
5035
|
-
declare namespace index$
|
|
5036
|
-
export { index$
|
|
5112
|
+
declare namespace index$f {
|
|
5113
|
+
export { index$h as Actions, msig as Interfaces, index$g as Tables, contractName$2 as contractName };
|
|
5037
5114
|
}
|
|
5038
5115
|
|
|
5039
5116
|
type IName$1 = string;
|
|
@@ -5114,7 +5191,7 @@ declare namespace exec {
|
|
|
5114
5191
|
* Использование RAM отложенной транзакции выставляется аккаунту 'executer'.
|
|
5115
5192
|
*/
|
|
5116
5193
|
|
|
5117
|
-
declare namespace index$
|
|
5194
|
+
declare namespace index$e {
|
|
5118
5195
|
export { exec as Exec };
|
|
5119
5196
|
}
|
|
5120
5197
|
|
|
@@ -5123,8 +5200,8 @@ declare const contractName$1: {
|
|
|
5123
5200
|
readonly testnet: "eosio.wrap";
|
|
5124
5201
|
};
|
|
5125
5202
|
|
|
5126
|
-
declare namespace index$
|
|
5127
|
-
export { index$
|
|
5203
|
+
declare namespace index$d {
|
|
5204
|
+
export { index$e as Actions, wrap as Interfaces, contractName$1 as contractName };
|
|
5128
5205
|
}
|
|
5129
5206
|
|
|
5130
5207
|
type IAsset = string;
|
|
@@ -6372,7 +6449,7 @@ declare namespace cancelDelay {
|
|
|
6372
6449
|
* Действие инициализирует системный контракт после установки.
|
|
6373
6450
|
*/
|
|
6374
6451
|
|
|
6375
|
-
declare namespace index$
|
|
6452
|
+
declare namespace index$c {
|
|
6376
6453
|
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 };
|
|
6377
6454
|
}
|
|
6378
6455
|
|
|
@@ -6634,18 +6711,18 @@ declare namespace voters {
|
|
|
6634
6711
|
* Таблица предоставляет информацию о ходе возврата токенов из аукциона имен.
|
|
6635
6712
|
*/
|
|
6636
6713
|
|
|
6637
|
-
declare const index$
|
|
6638
|
-
declare const index$
|
|
6639
|
-
declare const index$
|
|
6640
|
-
declare const index$
|
|
6641
|
-
declare const index$
|
|
6642
|
-
declare const index$
|
|
6643
|
-
declare const index$
|
|
6644
|
-
declare const index$
|
|
6645
|
-
declare const index$
|
|
6646
|
-
declare const index$
|
|
6647
|
-
declare namespace index$
|
|
6648
|
-
export { bidRefunds as BidRefunds, nameBids as NameBids, index$
|
|
6714
|
+
declare const index$b_delegatedBandwith: typeof delegatedBandwith;
|
|
6715
|
+
declare const index$b_emissionState: typeof emissionState;
|
|
6716
|
+
declare const index$b_globalState: typeof globalState;
|
|
6717
|
+
declare const index$b_powerState: typeof powerState;
|
|
6718
|
+
declare const index$b_powerupOrders: typeof powerupOrders;
|
|
6719
|
+
declare const index$b_producers: typeof producers;
|
|
6720
|
+
declare const index$b_ramDebts: typeof ramDebts;
|
|
6721
|
+
declare const index$b_refunds: typeof refunds;
|
|
6722
|
+
declare const index$b_userResources: typeof userResources;
|
|
6723
|
+
declare const index$b_voters: typeof voters;
|
|
6724
|
+
declare namespace index$b {
|
|
6725
|
+
export { bidRefunds as BidRefunds, nameBids as NameBids, index$b_delegatedBandwith as delegatedBandwith, index$b_emissionState as emissionState, index$b_globalState as globalState, index$b_powerState as powerState, index$b_powerupOrders as powerupOrders, index$b_producers as producers, index$b_ramDebts as ramDebts, index$b_refunds as refunds, index$b_userResources as userResources, index$b_voters as voters };
|
|
6649
6726
|
}
|
|
6650
6727
|
|
|
6651
6728
|
declare const contractName: {
|
|
@@ -6653,9 +6730,9 @@ declare const contractName: {
|
|
|
6653
6730
|
readonly testnet: "eosio";
|
|
6654
6731
|
};
|
|
6655
6732
|
|
|
6656
|
-
declare const index$
|
|
6657
|
-
declare namespace index$
|
|
6658
|
-
export { index$
|
|
6733
|
+
declare const index$a_contractName: typeof contractName;
|
|
6734
|
+
declare namespace index$a {
|
|
6735
|
+
export { index$c as Actions, system as Interfaces, index$b as Tables, index$a_contractName as contractName };
|
|
6659
6736
|
}
|
|
6660
6737
|
|
|
6661
6738
|
type Currency = 'RUB' | 'Other';
|
|
@@ -6685,13 +6762,13 @@ interface IPaymentData {
|
|
|
6685
6762
|
block_num?: number;
|
|
6686
6763
|
}
|
|
6687
6764
|
|
|
6688
|
-
type index$
|
|
6689
|
-
type index$
|
|
6690
|
-
type index$
|
|
6691
|
-
type index$
|
|
6692
|
-
type index$
|
|
6693
|
-
declare namespace index$
|
|
6694
|
-
export type { index$
|
|
6765
|
+
type index$9_Currency = Currency;
|
|
6766
|
+
type index$9_IBankAccount = IBankAccount;
|
|
6767
|
+
type index$9_IPaymentData = IPaymentData;
|
|
6768
|
+
type index$9_ISbpDetails = ISbpDetails;
|
|
6769
|
+
type index$9_MethodTypes = MethodTypes;
|
|
6770
|
+
declare namespace index$9 {
|
|
6771
|
+
export type { index$9_Currency as Currency, index$9_IBankAccount as IBankAccount, index$9_IPaymentData as IPaymentData, index$9_ISbpDetails as ISbpDetails, index$9_MethodTypes as MethodTypes };
|
|
6695
6772
|
}
|
|
6696
6773
|
|
|
6697
6774
|
type Country = 'Russia' | 'Other';
|
|
@@ -6756,15 +6833,15 @@ interface IAccountMeta {
|
|
|
6756
6833
|
email: string;
|
|
6757
6834
|
}
|
|
6758
6835
|
|
|
6759
|
-
type index$
|
|
6760
|
-
type index$
|
|
6761
|
-
type index$
|
|
6762
|
-
type index$
|
|
6763
|
-
type index$
|
|
6764
|
-
type index$
|
|
6765
|
-
type index$
|
|
6766
|
-
declare namespace index$
|
|
6767
|
-
export type { index$
|
|
6836
|
+
type index$8_Country = Country;
|
|
6837
|
+
type index$8_Details = Details;
|
|
6838
|
+
type index$8_IAccountMeta = IAccountMeta;
|
|
6839
|
+
type index$8_IEntrepreneurData = IEntrepreneurData;
|
|
6840
|
+
type index$8_IIndividualData = IIndividualData;
|
|
6841
|
+
type index$8_IOrganizationData = IOrganizationData;
|
|
6842
|
+
type index$8_IUserData = IUserData;
|
|
6843
|
+
declare namespace index$8 {
|
|
6844
|
+
export type { index$8_Country as Country, index$8_Details as Details, index$8_IAccountMeta as IAccountMeta, index$8_IEntrepreneurData as IEntrepreneurData, index$8_IIndividualData as IIndividualData, index$8_IOrganizationData as IOrganizationData, index$8_IUserData as IUserData };
|
|
6768
6845
|
}
|
|
6769
6846
|
|
|
6770
6847
|
interface ITable {
|
|
@@ -6830,14 +6907,14 @@ interface IGetTables {
|
|
|
6830
6907
|
limit: number;
|
|
6831
6908
|
}
|
|
6832
6909
|
|
|
6833
|
-
type index$
|
|
6834
|
-
type index$
|
|
6835
|
-
type index$
|
|
6836
|
-
type index$
|
|
6837
|
-
type index$
|
|
6838
|
-
type index$
|
|
6839
|
-
declare namespace index$
|
|
6840
|
-
export type { index$
|
|
6910
|
+
type index$7_IAction = IAction;
|
|
6911
|
+
type index$7_IExtendedAction = IExtendedAction;
|
|
6912
|
+
type index$7_IExtendedTable = IExtendedTable;
|
|
6913
|
+
type index$7_IGetActions = IGetActions;
|
|
6914
|
+
type index$7_IGetTables = IGetTables;
|
|
6915
|
+
type index$7_ITable = ITable;
|
|
6916
|
+
declare namespace index$7 {
|
|
6917
|
+
export type { index$7_IAction as IAction, index$7_IExtendedAction as IExtendedAction, index$7_IExtendedTable as IExtendedTable, index$7_IGetActions as IGetActions, index$7_IGetTables as IGetTables, index$7_ITable as ITable };
|
|
6841
6918
|
}
|
|
6842
6919
|
|
|
6843
6920
|
type LangType = 'ru';
|
|
@@ -6848,8 +6925,6 @@ interface IChainDocument {
|
|
|
6848
6925
|
meta: string;
|
|
6849
6926
|
}
|
|
6850
6927
|
interface IMetaDocument {
|
|
6851
|
-
code: string;
|
|
6852
|
-
action: string;
|
|
6853
6928
|
title: string;
|
|
6854
6929
|
registry_id: number;
|
|
6855
6930
|
lang: LangType;
|
|
@@ -6860,6 +6935,7 @@ interface IMetaDocument {
|
|
|
6860
6935
|
created_at: string;
|
|
6861
6936
|
block_num: number;
|
|
6862
6937
|
timezone: string;
|
|
6938
|
+
links: string[];
|
|
6863
6939
|
}
|
|
6864
6940
|
interface IGeneratedDocument {
|
|
6865
6941
|
full_title?: string;
|
|
@@ -6886,6 +6962,7 @@ interface IComplexDocument {
|
|
|
6886
6962
|
statement: IComplexStatement;
|
|
6887
6963
|
decision: IComplexDecision;
|
|
6888
6964
|
acts: IComplexAct[];
|
|
6965
|
+
links: IGeneratedDocument[];
|
|
6889
6966
|
}
|
|
6890
6967
|
interface IGetComplexDocuments {
|
|
6891
6968
|
results: IComplexDocument[];
|
|
@@ -6909,45 +6986,60 @@ interface IGetResponse<T> {
|
|
|
6909
6986
|
/**
|
|
6910
6987
|
* Общий интерфейс для генерации/регенерации документа
|
|
6911
6988
|
*/
|
|
6912
|
-
interface IGenerate extends Omit<Partial<IMetaDocument>, '
|
|
6913
|
-
|
|
6914
|
-
action: string;
|
|
6989
|
+
interface IGenerate extends Omit<Partial<IMetaDocument>, 'title'> {
|
|
6990
|
+
registry_id: number;
|
|
6915
6991
|
coopname: string;
|
|
6916
6992
|
username: string;
|
|
6917
6993
|
[key: string]: any;
|
|
6918
6994
|
}
|
|
6995
|
+
/**
|
|
6996
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
6997
|
+
*/
|
|
6919
6998
|
interface IGenerateJoinCoop extends IGenerate {
|
|
6920
6999
|
signature: string;
|
|
6921
7000
|
skip_save: boolean;
|
|
6922
7001
|
}
|
|
7002
|
+
/**
|
|
7003
|
+
* Интерфейс генерации решения совета
|
|
7004
|
+
*/
|
|
6923
7005
|
interface IGenerateJoinCoopDecision extends IGenerate {
|
|
6924
7006
|
decision_id: number;
|
|
6925
7007
|
}
|
|
6926
|
-
/**
|
|
6927
|
-
|
|
7008
|
+
/**
|
|
7009
|
+
* Интерфейс генерации соглашения
|
|
7010
|
+
*/
|
|
7011
|
+
interface IGenerateWalletAgreement extends IGenerate {
|
|
6928
7012
|
registry_id: number;
|
|
6929
|
-
|
|
6930
|
-
|
|
6931
|
-
|
|
6932
|
-
|
|
6933
|
-
|
|
6934
|
-
|
|
6935
|
-
|
|
6936
|
-
|
|
6937
|
-
|
|
6938
|
-
|
|
6939
|
-
|
|
6940
|
-
type index$
|
|
6941
|
-
type index$
|
|
6942
|
-
type index$
|
|
6943
|
-
type index$
|
|
6944
|
-
type index$
|
|
6945
|
-
type index$
|
|
6946
|
-
type index$
|
|
6947
|
-
type index$
|
|
6948
|
-
type index$
|
|
6949
|
-
|
|
6950
|
-
|
|
7013
|
+
}
|
|
7014
|
+
interface IDecisionData {
|
|
7015
|
+
id: number;
|
|
7016
|
+
date: string;
|
|
7017
|
+
time: string;
|
|
7018
|
+
votes_for: number;
|
|
7019
|
+
votes_against: number;
|
|
7020
|
+
votes_abstained: number;
|
|
7021
|
+
voters_percent: number;
|
|
7022
|
+
}
|
|
7023
|
+
|
|
7024
|
+
type index$6_IAgenda = IAgenda;
|
|
7025
|
+
type index$6_IChainDocument = IChainDocument;
|
|
7026
|
+
type index$6_IComplexAct = IComplexAct;
|
|
7027
|
+
type index$6_IComplexAgenda = IComplexAgenda;
|
|
7028
|
+
type index$6_IComplexDecision = IComplexDecision;
|
|
7029
|
+
type index$6_IComplexDocument = IComplexDocument;
|
|
7030
|
+
type index$6_IComplexStatement = IComplexStatement;
|
|
7031
|
+
type index$6_IDecisionData = IDecisionData;
|
|
7032
|
+
type index$6_IGenerate = IGenerate;
|
|
7033
|
+
type index$6_IGenerateJoinCoop = IGenerateJoinCoop;
|
|
7034
|
+
type index$6_IGenerateJoinCoopDecision = IGenerateJoinCoopDecision;
|
|
7035
|
+
type index$6_IGenerateWalletAgreement = IGenerateWalletAgreement;
|
|
7036
|
+
type index$6_IGeneratedDocument = IGeneratedDocument;
|
|
7037
|
+
type index$6_IGetComplexDocuments = IGetComplexDocuments;
|
|
7038
|
+
type index$6_IGetResponse<T> = IGetResponse<T>;
|
|
7039
|
+
type index$6_IMetaDocument = IMetaDocument;
|
|
7040
|
+
type index$6_LangType = LangType;
|
|
7041
|
+
declare namespace index$6 {
|
|
7042
|
+
export type { index$6_IAgenda as IAgenda, index$6_IChainDocument as IChainDocument, index$6_IComplexAct as IComplexAct, index$6_IComplexAgenda as IComplexAgenda, index$6_IComplexDecision as IComplexDecision, index$6_IComplexDocument as IComplexDocument, index$6_IComplexStatement as IComplexStatement, index$6_IDecisionData as IDecisionData, index$6_IGenerate as IGenerate, index$6_IGenerateJoinCoop as IGenerateJoinCoop, index$6_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$6_IGenerateWalletAgreement as IGenerateWalletAgreement, index$6_IGeneratedDocument as IGeneratedDocument, index$6_IGetComplexDocuments as IGetComplexDocuments, index$6_IGetResponse as IGetResponse, index$6_IMetaDocument as IMetaDocument, index$6_LangType as LangType };
|
|
6951
7043
|
}
|
|
6952
7044
|
|
|
6953
7045
|
interface ICooperativeData extends IOrganizationData, ICooperative {
|
|
@@ -6975,16 +7067,209 @@ interface IContacts {
|
|
|
6975
7067
|
};
|
|
6976
7068
|
}
|
|
6977
7069
|
|
|
6978
|
-
type index$
|
|
6979
|
-
type index$
|
|
6980
|
-
type index$
|
|
6981
|
-
type index$
|
|
7070
|
+
type index$5_IAnnounce = IAnnounce;
|
|
7071
|
+
type index$5_IContacts = IContacts;
|
|
7072
|
+
type index$5_ICooperativeData = ICooperativeData;
|
|
7073
|
+
type index$5_MembersData = MembersData;
|
|
7074
|
+
declare namespace index$5 {
|
|
7075
|
+
export type { index$5_IAnnounce as IAnnounce, index$5_IContacts as IContacts, index$5_ICooperativeData as ICooperativeData, index$5_MembersData as MembersData };
|
|
7076
|
+
}
|
|
7077
|
+
|
|
7078
|
+
declare const registry_id$2 = 1;
|
|
7079
|
+
interface Action$2 extends IGenerate {
|
|
7080
|
+
registry_id: number;
|
|
7081
|
+
}
|
|
7082
|
+
interface Model$2 {
|
|
7083
|
+
meta: IMetaDocument;
|
|
7084
|
+
}
|
|
7085
|
+
declare const title$2 = "\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";
|
|
7086
|
+
declare const description$2 = "\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";
|
|
7087
|
+
declare const context$2 = "<div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }} </p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ protocol_day_month_year }}</p>\n</div>\n<div style=\"text-align: center\">\n<h1 class=\"header\"> {% trans 'PROVISION' %}</h1>\n{% trans 'consumer_program_title' %}\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=\"signature\">\n{% trans 'acceptance_agreement' %}</div>";
|
|
7088
|
+
declare const translations$2: {
|
|
7089
|
+
ru: {
|
|
7090
|
+
APPROVED: string;
|
|
7091
|
+
protocol: string;
|
|
7092
|
+
from: string;
|
|
7093
|
+
PROVISION: string;
|
|
7094
|
+
consumer_program_title: string;
|
|
7095
|
+
consumer_program_provision_intro: string;
|
|
7096
|
+
cooperative_hereto: string;
|
|
7097
|
+
legal_basis: string;
|
|
7098
|
+
program_duration: string;
|
|
7099
|
+
program_provision_status: string;
|
|
7100
|
+
terms_program: string;
|
|
7101
|
+
consumer_program_terms: string;
|
|
7102
|
+
program_goals: string;
|
|
7103
|
+
goal_efficiency: string;
|
|
7104
|
+
goal_transparency: string;
|
|
7105
|
+
program_participation_procedure: string;
|
|
7106
|
+
program_participation_terms: string;
|
|
7107
|
+
offer_acceptance: string;
|
|
7108
|
+
procedure_participation: string;
|
|
7109
|
+
user_cabinet: string;
|
|
7110
|
+
site_access: string;
|
|
7111
|
+
unique_code: string;
|
|
7112
|
+
digital_signature: string;
|
|
7113
|
+
identification: string;
|
|
7114
|
+
information_security: string;
|
|
7115
|
+
program_interaction_mechanism: string;
|
|
7116
|
+
program_share_contribution: string;
|
|
7117
|
+
share_contribution_procedure: string;
|
|
7118
|
+
fund_management: string;
|
|
7119
|
+
application_to_council: string;
|
|
7120
|
+
share_contribution_return: string;
|
|
7121
|
+
claim_return: string;
|
|
7122
|
+
payment_confirmation: string;
|
|
7123
|
+
novation_agreement: string;
|
|
7124
|
+
novation_agreement_terms: string;
|
|
7125
|
+
program_rights_obligations: string;
|
|
7126
|
+
participant_rights: string;
|
|
7127
|
+
participant_obligations: string;
|
|
7128
|
+
cooperative_obligations: string;
|
|
7129
|
+
cooperative_rights: string;
|
|
7130
|
+
force_majeure: string;
|
|
7131
|
+
legal_changes: string;
|
|
7132
|
+
program_modification: string;
|
|
7133
|
+
force_majeure_cases: string;
|
|
7134
|
+
program_communication: string;
|
|
7135
|
+
communication_channels: string;
|
|
7136
|
+
alternative_methods: string;
|
|
7137
|
+
program_additional_conditions: string;
|
|
7138
|
+
governing_documents: string;
|
|
7139
|
+
changes_amendments: string;
|
|
7140
|
+
acceptance_agreement: string;
|
|
7141
|
+
date: string;
|
|
7142
|
+
};
|
|
7143
|
+
};
|
|
7144
|
+
|
|
7145
|
+
declare namespace index$4 {
|
|
7146
|
+
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 };
|
|
7147
|
+
}
|
|
7148
|
+
|
|
7149
|
+
declare const registry_id$1 = 100;
|
|
7150
|
+
/**
|
|
7151
|
+
* Интерфейс генерации заявления на вступление в кооператив
|
|
7152
|
+
*/
|
|
7153
|
+
interface Action$1 extends IGenerate {
|
|
7154
|
+
signature: string;
|
|
7155
|
+
skip_save: boolean;
|
|
7156
|
+
}
|
|
7157
|
+
interface Model$1 {
|
|
7158
|
+
type: string;
|
|
7159
|
+
individual?: IIndividualData;
|
|
7160
|
+
organization?: IOrganizationData;
|
|
7161
|
+
entrepreneur?: IEntrepreneurData;
|
|
7162
|
+
coop: ICooperativeData;
|
|
7163
|
+
meta: IMetaDocument;
|
|
7164
|
+
signature: string;
|
|
7165
|
+
}
|
|
7166
|
+
declare const title$1 = "\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";
|
|
7167
|
+
declare const description$1 = "\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";
|
|
7168
|
+
declare const context$1 = "<style>\nh1 {\nmargin: 0px;\ntext-align:center;\n}\n</style>\n{% if type == 'individual' %}\n<h1 class=\"header\">{% trans 'application_individual' %}</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' %} {{ 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 %}</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', individual.branch_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', entrepreneur.branch_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 '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', organization.branch_name %} {% endif %}</p>\n<p>{% trans 'obligation_to_pay_legal_entity', coop.initial, coop.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\n";
|
|
7169
|
+
declare const translations$1: {
|
|
7170
|
+
ru: {
|
|
7171
|
+
from: string;
|
|
7172
|
+
application_individual: string;
|
|
7173
|
+
to_council_of: string;
|
|
7174
|
+
birthdate: string;
|
|
7175
|
+
registration_address: string;
|
|
7176
|
+
phone_and_email_notice: string;
|
|
7177
|
+
acknowledge_documents_individual: string;
|
|
7178
|
+
agreement_on_sms_email_notice_individual: string;
|
|
7179
|
+
application_entrepreneur: string;
|
|
7180
|
+
from_entrepreneur: string;
|
|
7181
|
+
acknowledge_documents_entrepreneur: string;
|
|
7182
|
+
agreement_on_sms_email_notice_entrepreneur: string;
|
|
7183
|
+
application_legal_entity: string;
|
|
7184
|
+
from_legal_entity: string;
|
|
7185
|
+
legal_address: string;
|
|
7186
|
+
legal_entity_details: string;
|
|
7187
|
+
acknowledge_documents_legal_entity: string;
|
|
7188
|
+
agreement_on_sms_email_notice_legal_entity: string;
|
|
7189
|
+
obligation_to_pay_individual: string;
|
|
7190
|
+
obligation_to_pay_entrepreneur: string;
|
|
7191
|
+
obligation_to_pay_legal_entity: string;
|
|
7192
|
+
entrepreneur_details: string;
|
|
7193
|
+
authorize_chairman_branch: string;
|
|
7194
|
+
request_to_join_legal_entity: string;
|
|
7195
|
+
authorize_chairman_branch_organization: string;
|
|
7196
|
+
signature: string;
|
|
7197
|
+
in: string;
|
|
7198
|
+
request_to_join: string;
|
|
7199
|
+
};
|
|
7200
|
+
};
|
|
7201
|
+
|
|
7202
|
+
declare namespace index$3 {
|
|
7203
|
+
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 };
|
|
7204
|
+
}
|
|
7205
|
+
|
|
7206
|
+
declare const registry_id = 501;
|
|
7207
|
+
/**
|
|
7208
|
+
* Интерфейс генерации решения совета
|
|
7209
|
+
*/
|
|
7210
|
+
interface Action extends IGenerate {
|
|
7211
|
+
decision_id: number;
|
|
7212
|
+
}
|
|
7213
|
+
interface Model {
|
|
7214
|
+
type: string;
|
|
7215
|
+
individual?: IIndividualData;
|
|
7216
|
+
organization?: IOrganizationData;
|
|
7217
|
+
entrepreneur?: IEntrepreneurData;
|
|
7218
|
+
coop: ICooperativeData;
|
|
7219
|
+
meta: IMetaDocument;
|
|
7220
|
+
decision: IDecisionData;
|
|
7221
|
+
}
|
|
7222
|
+
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";
|
|
7223
|
+
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";
|
|
7224
|
+
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</style>\n\n<h1 class=\"header\">{% trans 'protocol_number', decision.id %}</h1>\n<p style=\"text-align:center\">{% 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>";
|
|
7225
|
+
declare const translations: {
|
|
7226
|
+
ru: {
|
|
7227
|
+
meeting_format: string;
|
|
7228
|
+
meeting_date: string;
|
|
7229
|
+
meeting_place: string;
|
|
7230
|
+
opening_time: string;
|
|
7231
|
+
council_members: string;
|
|
7232
|
+
voting_results: string;
|
|
7233
|
+
meeting_legality: string;
|
|
7234
|
+
chairman_of_the_meeting: string;
|
|
7235
|
+
agenda: string;
|
|
7236
|
+
vote_results: string;
|
|
7237
|
+
decision_made: string;
|
|
7238
|
+
closing_time: string;
|
|
7239
|
+
protocol_number: string;
|
|
7240
|
+
council_meeting_name: string;
|
|
7241
|
+
chairman_of_the_council: string;
|
|
7242
|
+
signature: string;
|
|
7243
|
+
chairman: string;
|
|
7244
|
+
birthdate: string;
|
|
7245
|
+
ogrnip: string;
|
|
7246
|
+
entrepreneur: string;
|
|
7247
|
+
ogrn: string;
|
|
7248
|
+
quorum: string;
|
|
7249
|
+
voting: string;
|
|
7250
|
+
in_participants: string;
|
|
7251
|
+
decision_joincoop1: string;
|
|
7252
|
+
decision_joincoop2: string;
|
|
7253
|
+
};
|
|
7254
|
+
};
|
|
7255
|
+
|
|
7256
|
+
type index$2_Action = Action;
|
|
7257
|
+
type index$2_Model = Model;
|
|
7258
|
+
declare const index$2_context: typeof context;
|
|
7259
|
+
declare const index$2_description: typeof description;
|
|
7260
|
+
declare const index$2_registry_id: typeof registry_id;
|
|
7261
|
+
declare const index$2_title: typeof title;
|
|
7262
|
+
declare const index$2_translations: typeof translations;
|
|
7263
|
+
declare namespace index$2 {
|
|
7264
|
+
export { type index$2_Action as Action, type index$2_Model as Model, index$2_context as context, index$2_description as description, index$2_registry_id as registry_id, index$2_title as title, index$2_translations as translations };
|
|
7265
|
+
}
|
|
7266
|
+
|
|
6982
7267
|
declare namespace index$1 {
|
|
6983
|
-
export
|
|
7268
|
+
export { index$2 as DecisionOfParticipantApplication, index$3 as ParticipantApplication, index$4 as WalletAgreement };
|
|
6984
7269
|
}
|
|
6985
7270
|
|
|
6986
7271
|
declare namespace index {
|
|
6987
|
-
export { index$
|
|
7272
|
+
export { index$7 as Blockchain, index$6 as Document, index$5 as Model, index$9 as Payments, index$1 as Registry, index$8 as Users };
|
|
6988
7273
|
}
|
|
6989
7274
|
|
|
6990
|
-
export { index as Cooperative, index$
|
|
7275
|
+
export { index as Cooperative, index$I as DraftContract, index$F as FundContract, index$C as GatewayContract, index$i as MarketContract, index$f as MsigContract, index$z as RegistratorContract, index$l as SovietContract, index$a as SystemContract, index$w as TokenContract, index$d as WrapContract, index$L as _Common };
|