cooptypes 2.1.4 → 2.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +289 -168
- package/dist/index.d.cts +580 -353
- package/dist/index.d.mts +580 -353
- package/dist/index.d.ts +580 -353
- package/dist/index.mjs +287 -167
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -14,6 +14,10 @@ declare const _chairman = "_chairman";
|
|
|
14
14
|
* Обобщенное имя аккаунта члена совета кооператива, которое должно быть заменено на реальное.
|
|
15
15
|
*/
|
|
16
16
|
declare const _member = "_member";
|
|
17
|
+
/**
|
|
18
|
+
* Обобщенное имя аккаунта совета кооператива, которое должно быть заменено на реальное.
|
|
19
|
+
*/
|
|
20
|
+
declare const _trustee = "_trustee";
|
|
17
21
|
/**
|
|
18
22
|
* Обобщенное имя аккаунта администратора кооператива, которое должно быть заменено на реальное.
|
|
19
23
|
*/
|
|
@@ -27,14 +31,15 @@ declare const _contract = "_contract";
|
|
|
27
31
|
*/
|
|
28
32
|
declare const _system$1 = "_system";
|
|
29
33
|
|
|
30
|
-
declare const index$
|
|
31
|
-
declare const index$
|
|
32
|
-
declare const index$
|
|
33
|
-
declare const index$
|
|
34
|
-
declare const index$
|
|
35
|
-
declare const index$
|
|
36
|
-
declare
|
|
37
|
-
|
|
34
|
+
declare const index$V__admin: typeof _admin;
|
|
35
|
+
declare const index$V__chairman: typeof _chairman;
|
|
36
|
+
declare const index$V__contract: typeof _contract;
|
|
37
|
+
declare const index$V__coopname: typeof _coopname;
|
|
38
|
+
declare const index$V__member: typeof _member;
|
|
39
|
+
declare const index$V__trustee: typeof _trustee;
|
|
40
|
+
declare const index$V__username: typeof _username;
|
|
41
|
+
declare namespace index$V {
|
|
42
|
+
export { index$V__admin as _admin, index$V__chairman as _chairman, index$V__contract as _contract, index$V__coopname as _coopname, index$V__member as _member, _system$1 as _system, index$V__trustee as _trustee, index$V__username as _username };
|
|
38
43
|
}
|
|
39
44
|
|
|
40
45
|
declare const _draft: {
|
|
@@ -77,19 +82,24 @@ declare const _wrap: {
|
|
|
77
82
|
readonly production: "eosio.wrap";
|
|
78
83
|
readonly testnet: "eosio.wrap";
|
|
79
84
|
};
|
|
85
|
+
declare const _branch: {
|
|
86
|
+
readonly production: "branch";
|
|
87
|
+
readonly testnet: "branch";
|
|
88
|
+
};
|
|
80
89
|
|
|
81
|
-
declare const index$
|
|
82
|
-
declare const index$
|
|
83
|
-
declare const index$
|
|
84
|
-
declare const index$
|
|
85
|
-
declare const index$
|
|
86
|
-
declare const index$
|
|
87
|
-
declare const index$
|
|
88
|
-
declare const index$
|
|
89
|
-
declare const index$
|
|
90
|
-
declare const index$
|
|
91
|
-
declare
|
|
92
|
-
|
|
90
|
+
declare const index$U__branch: typeof _branch;
|
|
91
|
+
declare const index$U__draft: typeof _draft;
|
|
92
|
+
declare const index$U__fund: typeof _fund;
|
|
93
|
+
declare const index$U__gateway: typeof _gateway;
|
|
94
|
+
declare const index$U__marketplace: typeof _marketplace;
|
|
95
|
+
declare const index$U__msig: typeof _msig;
|
|
96
|
+
declare const index$U__registrator: typeof _registrator;
|
|
97
|
+
declare const index$U__soviet: typeof _soviet;
|
|
98
|
+
declare const index$U__system: typeof _system;
|
|
99
|
+
declare const index$U__token: typeof _token;
|
|
100
|
+
declare const index$U__wrap: typeof _wrap;
|
|
101
|
+
declare namespace index$U {
|
|
102
|
+
export { index$U__branch as _branch, index$U__draft as _draft, index$U__fund as _fund, index$U__gateway as _gateway, index$U__marketplace as _marketplace, index$U__msig as _msig, index$U__registrator as _registrator, index$U__soviet as _soviet, index$U__system as _system, index$U__token as _token, index$U__wrap as _wrap };
|
|
93
103
|
}
|
|
94
104
|
|
|
95
105
|
/**
|
|
@@ -118,32 +128,32 @@ interface Authorization {
|
|
|
118
128
|
actor: typeof _username | typeof _chairman | typeof _admin | typeof _contract | typeof _system$1;
|
|
119
129
|
}
|
|
120
130
|
|
|
121
|
-
type index$
|
|
122
|
-
declare const index$
|
|
123
|
-
declare const index$
|
|
124
|
-
declare const index$
|
|
125
|
-
declare namespace index$
|
|
126
|
-
export { type index$
|
|
131
|
+
type index$T_Authorization = Authorization;
|
|
132
|
+
declare const index$T_active: typeof active;
|
|
133
|
+
declare const index$T_owner: typeof owner;
|
|
134
|
+
declare const index$T_special: typeof special;
|
|
135
|
+
declare namespace index$T {
|
|
136
|
+
export { type index$T_Authorization as Authorization, index$T_active as active, index$T_owner as owner, index$T_special as special };
|
|
127
137
|
}
|
|
128
138
|
|
|
129
|
-
declare namespace index$
|
|
130
|
-
export { index$
|
|
139
|
+
declare namespace index$S {
|
|
140
|
+
export { index$V as Actors, index$U as ContractNames, index$T as Permissions };
|
|
131
141
|
}
|
|
132
142
|
|
|
133
|
-
type IName$
|
|
143
|
+
type IName$a = string;
|
|
134
144
|
type IUint64$6 = number | string;
|
|
135
145
|
interface ICounts$4 extends ICountsBase$4 {
|
|
136
146
|
}
|
|
137
147
|
interface ICountsBase$4 {
|
|
138
|
-
key: IName$
|
|
139
|
-
secondary_key: IName$
|
|
148
|
+
key: IName$a;
|
|
149
|
+
secondary_key: IName$a;
|
|
140
150
|
value: IUint64$6;
|
|
141
151
|
}
|
|
142
152
|
interface ICreatedraft {
|
|
143
|
-
scope: IName$
|
|
144
|
-
username: IName$
|
|
153
|
+
scope: IName$a;
|
|
154
|
+
username: IName$a;
|
|
145
155
|
registry_id: IUint64$6;
|
|
146
|
-
lang: IName$
|
|
156
|
+
lang: IName$a;
|
|
147
157
|
title: string;
|
|
148
158
|
description: string;
|
|
149
159
|
context: string;
|
|
@@ -151,25 +161,25 @@ interface ICreatedraft {
|
|
|
151
161
|
translation_data: string;
|
|
152
162
|
}
|
|
153
163
|
interface ICreatetrans {
|
|
154
|
-
scope: IName$
|
|
155
|
-
username: IName$
|
|
164
|
+
scope: IName$a;
|
|
165
|
+
username: IName$a;
|
|
156
166
|
registry_id: IUint64$6;
|
|
157
|
-
lang: IName$
|
|
167
|
+
lang: IName$a;
|
|
158
168
|
data: string;
|
|
159
169
|
}
|
|
160
170
|
interface IDeldraft {
|
|
161
|
-
scope: IName$
|
|
162
|
-
username: IName$
|
|
171
|
+
scope: IName$a;
|
|
172
|
+
username: IName$a;
|
|
163
173
|
registry_id: IUint64$6;
|
|
164
174
|
}
|
|
165
175
|
interface IDeltrans {
|
|
166
|
-
scope: IName$
|
|
167
|
-
username: IName$
|
|
176
|
+
scope: IName$a;
|
|
177
|
+
username: IName$a;
|
|
168
178
|
translate_id: IUint64$6;
|
|
169
179
|
}
|
|
170
180
|
interface IEditdraft {
|
|
171
|
-
scope: IName$
|
|
172
|
-
username: IName$
|
|
181
|
+
scope: IName$a;
|
|
182
|
+
username: IName$a;
|
|
173
183
|
registry_id: IUint64$6;
|
|
174
184
|
title: string;
|
|
175
185
|
description: string;
|
|
@@ -177,15 +187,15 @@ interface IEditdraft {
|
|
|
177
187
|
model: string;
|
|
178
188
|
}
|
|
179
189
|
interface IEdittrans {
|
|
180
|
-
scope: IName$
|
|
181
|
-
username: IName$
|
|
190
|
+
scope: IName$a;
|
|
191
|
+
username: IName$a;
|
|
182
192
|
translate_id: IUint64$6;
|
|
183
193
|
data: string;
|
|
184
194
|
}
|
|
185
|
-
interface IMigrate$
|
|
195
|
+
interface IMigrate$5 {
|
|
186
196
|
}
|
|
187
197
|
interface INewid$1 {
|
|
188
|
-
scope: IName$
|
|
198
|
+
scope: IName$a;
|
|
189
199
|
id: IUint64$6;
|
|
190
200
|
}
|
|
191
201
|
interface IOnedraft {
|
|
@@ -200,7 +210,7 @@ interface IOnedraft {
|
|
|
200
210
|
interface ITranslation$1 {
|
|
201
211
|
id: IUint64$6;
|
|
202
212
|
draft_id: IUint64$6;
|
|
203
|
-
lang: IName$
|
|
213
|
+
lang: IName$a;
|
|
204
214
|
data: string;
|
|
205
215
|
}
|
|
206
216
|
|
|
@@ -212,10 +222,10 @@ type draft_IEditdraft = IEditdraft;
|
|
|
212
222
|
type draft_IEdittrans = IEdittrans;
|
|
213
223
|
type draft_IOnedraft = IOnedraft;
|
|
214
224
|
declare namespace draft {
|
|
215
|
-
export type { ICounts$4 as ICounts, ICountsBase$4 as ICountsBase, draft_ICreatedraft as ICreatedraft, draft_ICreatetrans as ICreatetrans, draft_IDeldraft as IDeldraft, draft_IDeltrans as IDeltrans, draft_IEditdraft as IEditdraft, draft_IEdittrans as IEdittrans, IMigrate$
|
|
225
|
+
export type { ICounts$4 as ICounts, ICountsBase$4 as ICountsBase, draft_ICreatedraft as ICreatedraft, draft_ICreatetrans as ICreatetrans, draft_IDeldraft as IDeldraft, draft_IDeltrans as IDeltrans, draft_IEditdraft as IEditdraft, draft_IEdittrans as IEdittrans, IMigrate$5 as IMigrate, IName$a as IName, INewid$1 as INewid, draft_IOnedraft as IOnedraft, ITranslation$1 as ITranslation, IUint64$6 as IUint64 };
|
|
216
226
|
}
|
|
217
227
|
|
|
218
|
-
declare const authorizations$
|
|
228
|
+
declare const authorizations$2v: readonly [{
|
|
219
229
|
readonly permissions: readonly ["active"];
|
|
220
230
|
readonly actor: {
|
|
221
231
|
readonly production: "eosio";
|
|
@@ -225,7 +235,7 @@ declare const authorizations$2o: readonly [{
|
|
|
225
235
|
/**
|
|
226
236
|
* Имя действия
|
|
227
237
|
*/
|
|
228
|
-
declare const actionName$
|
|
238
|
+
declare const actionName$2v = "createdraft";
|
|
229
239
|
/**
|
|
230
240
|
* @interface
|
|
231
241
|
*/
|
|
@@ -233,10 +243,10 @@ type ICreateDraft = ICreatedraft;
|
|
|
233
243
|
|
|
234
244
|
type createDraft_ICreateDraft = ICreateDraft;
|
|
235
245
|
declare namespace createDraft {
|
|
236
|
-
export { type createDraft_ICreateDraft as ICreateDraft, actionName$
|
|
246
|
+
export { type createDraft_ICreateDraft as ICreateDraft, actionName$2v as actionName, authorizations$2v as authorizations };
|
|
237
247
|
}
|
|
238
248
|
|
|
239
|
-
declare const authorizations$
|
|
249
|
+
declare const authorizations$2u: readonly [{
|
|
240
250
|
readonly permissions: readonly ["active"];
|
|
241
251
|
readonly actor: {
|
|
242
252
|
readonly production: "eosio";
|
|
@@ -246,7 +256,7 @@ declare const authorizations$2n: readonly [{
|
|
|
246
256
|
/**
|
|
247
257
|
* Имя действия
|
|
248
258
|
*/
|
|
249
|
-
declare const actionName$
|
|
259
|
+
declare const actionName$2u = "editdraft";
|
|
250
260
|
/**
|
|
251
261
|
* @interface
|
|
252
262
|
*/
|
|
@@ -254,10 +264,10 @@ type IEditDraft = IEditdraft;
|
|
|
254
264
|
|
|
255
265
|
type editDraft_IEditDraft = IEditDraft;
|
|
256
266
|
declare namespace editDraft {
|
|
257
|
-
export { type editDraft_IEditDraft as IEditDraft, actionName$
|
|
267
|
+
export { type editDraft_IEditDraft as IEditDraft, actionName$2u as actionName, authorizations$2u as authorizations };
|
|
258
268
|
}
|
|
259
269
|
|
|
260
|
-
declare const authorizations$
|
|
270
|
+
declare const authorizations$2t: readonly [{
|
|
261
271
|
readonly permissions: readonly ["active"];
|
|
262
272
|
readonly actor: {
|
|
263
273
|
readonly production: "eosio";
|
|
@@ -267,7 +277,7 @@ declare const authorizations$2m: readonly [{
|
|
|
267
277
|
/**
|
|
268
278
|
* Имя действия
|
|
269
279
|
*/
|
|
270
|
-
declare const actionName$
|
|
280
|
+
declare const actionName$2t = "deldraft";
|
|
271
281
|
/**
|
|
272
282
|
* @interface
|
|
273
283
|
*/
|
|
@@ -275,10 +285,10 @@ type IDeleteDraft = IDeldraft;
|
|
|
275
285
|
|
|
276
286
|
type deleteDraft_IDeleteDraft = IDeleteDraft;
|
|
277
287
|
declare namespace deleteDraft {
|
|
278
|
-
export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$
|
|
288
|
+
export { type deleteDraft_IDeleteDraft as IDeleteDraft, actionName$2t as actionName, authorizations$2t as authorizations };
|
|
279
289
|
}
|
|
280
290
|
|
|
281
|
-
declare const authorizations$
|
|
291
|
+
declare const authorizations$2s: readonly [{
|
|
282
292
|
readonly permissions: readonly ["active"];
|
|
283
293
|
readonly actor: {
|
|
284
294
|
readonly production: "eosio";
|
|
@@ -288,7 +298,7 @@ declare const authorizations$2l: readonly [{
|
|
|
288
298
|
/**
|
|
289
299
|
* Имя действия
|
|
290
300
|
*/
|
|
291
|
-
declare const actionName$
|
|
301
|
+
declare const actionName$2s = "createtrans";
|
|
292
302
|
/**
|
|
293
303
|
* @interface
|
|
294
304
|
*/
|
|
@@ -296,10 +306,10 @@ type ICreateTranslation = ICreatetrans;
|
|
|
296
306
|
|
|
297
307
|
type createTranslation_ICreateTranslation = ICreateTranslation;
|
|
298
308
|
declare namespace createTranslation {
|
|
299
|
-
export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$
|
|
309
|
+
export { type createTranslation_ICreateTranslation as ICreateTranslation, actionName$2s as actionName, authorizations$2s as authorizations };
|
|
300
310
|
}
|
|
301
311
|
|
|
302
|
-
declare const authorizations$
|
|
312
|
+
declare const authorizations$2r: readonly [{
|
|
303
313
|
readonly permissions: readonly ["active"];
|
|
304
314
|
readonly actor: {
|
|
305
315
|
readonly production: "eosio";
|
|
@@ -309,7 +319,7 @@ declare const authorizations$2k: readonly [{
|
|
|
309
319
|
/**
|
|
310
320
|
* Имя действия
|
|
311
321
|
*/
|
|
312
|
-
declare const actionName$
|
|
322
|
+
declare const actionName$2r = "edittrans";
|
|
313
323
|
/**
|
|
314
324
|
* @interface
|
|
315
325
|
*/
|
|
@@ -317,10 +327,10 @@ type IEditTranslation = IEdittrans;
|
|
|
317
327
|
|
|
318
328
|
type editTranslation_IEditTranslation = IEditTranslation;
|
|
319
329
|
declare namespace editTranslation {
|
|
320
|
-
export { type editTranslation_IEditTranslation as IEditTranslation, actionName$
|
|
330
|
+
export { type editTranslation_IEditTranslation as IEditTranslation, actionName$2r as actionName, authorizations$2r as authorizations };
|
|
321
331
|
}
|
|
322
332
|
|
|
323
|
-
declare const authorizations$
|
|
333
|
+
declare const authorizations$2q: readonly [{
|
|
324
334
|
readonly permissions: readonly ["active"];
|
|
325
335
|
readonly actor: {
|
|
326
336
|
readonly production: "draft";
|
|
@@ -330,7 +340,7 @@ declare const authorizations$2j: readonly [{
|
|
|
330
340
|
/**
|
|
331
341
|
* Имя действия
|
|
332
342
|
*/
|
|
333
|
-
declare const actionName$
|
|
343
|
+
declare const actionName$2q = "newid";
|
|
334
344
|
/**
|
|
335
345
|
* @interface
|
|
336
346
|
* Действие вызывается контрактом в процессе исполнения для возврата идентификатора черновика.
|
|
@@ -339,22 +349,22 @@ type INewId = INewid$1;
|
|
|
339
349
|
|
|
340
350
|
type newId_INewId = INewId;
|
|
341
351
|
declare namespace newId {
|
|
342
|
-
export { type newId_INewId as INewId, actionName$
|
|
352
|
+
export { type newId_INewId as INewId, actionName$2q as actionName, authorizations$2q as authorizations };
|
|
343
353
|
}
|
|
344
354
|
|
|
345
|
-
declare const index$
|
|
346
|
-
declare namespace index$
|
|
347
|
-
export { createDraft as CreateDraft, createTranslation as CreateTranslation, deleteDraft as DeleteDraft, editDraft as EditDraft, editTranslation as EditTranslation, index$
|
|
355
|
+
declare const index$R_newId: typeof newId;
|
|
356
|
+
declare namespace index$R {
|
|
357
|
+
export { createDraft as CreateDraft, createTranslation as CreateTranslation, deleteDraft as DeleteDraft, editDraft as EditDraft, editTranslation as EditTranslation, index$R_newId as newId };
|
|
348
358
|
}
|
|
349
359
|
|
|
350
360
|
/**
|
|
351
361
|
* Имя таблицы
|
|
352
362
|
*/
|
|
353
|
-
declare const tableName$
|
|
363
|
+
declare const tableName$I = "drafts";
|
|
354
364
|
/**
|
|
355
365
|
* Таблица хранится в {@link Actors._contract | области памяти контракта}.
|
|
356
366
|
*/
|
|
357
|
-
declare const scope$
|
|
367
|
+
declare const scope$I = "_contract";
|
|
358
368
|
/**
|
|
359
369
|
* @interface
|
|
360
370
|
* Таблица содержит переводы черновиков документов.
|
|
@@ -363,17 +373,17 @@ type IDraft = IOnedraft;
|
|
|
363
373
|
|
|
364
374
|
type drafts_IDraft = IDraft;
|
|
365
375
|
declare namespace drafts {
|
|
366
|
-
export { type drafts_IDraft as IDraft, scope$
|
|
376
|
+
export { type drafts_IDraft as IDraft, scope$I as scope, tableName$I as tableName };
|
|
367
377
|
}
|
|
368
378
|
|
|
369
379
|
/**
|
|
370
380
|
* Имя таблицы
|
|
371
381
|
*/
|
|
372
|
-
declare const tableName$
|
|
382
|
+
declare const tableName$H = "translations";
|
|
373
383
|
/**
|
|
374
384
|
* Область хранения в памяти
|
|
375
385
|
*/
|
|
376
|
-
declare const scope$
|
|
386
|
+
declare const scope$H = "_contract";
|
|
377
387
|
/**
|
|
378
388
|
* @interface
|
|
379
389
|
* Таблица содержит переводы черновиков документов.
|
|
@@ -382,20 +392,215 @@ type ITranslation = ITranslation$1;
|
|
|
382
392
|
|
|
383
393
|
type translations$7_ITranslation = ITranslation;
|
|
384
394
|
declare namespace translations$7 {
|
|
385
|
-
export { type translations$7_ITranslation as ITranslation, scope$
|
|
395
|
+
export { type translations$7_ITranslation as ITranslation, scope$H as scope, tableName$H as tableName };
|
|
386
396
|
}
|
|
387
397
|
|
|
388
|
-
declare namespace index$
|
|
398
|
+
declare namespace index$Q {
|
|
389
399
|
export { drafts as Drafts, translations$7 as Translations };
|
|
390
400
|
}
|
|
391
401
|
|
|
392
|
-
declare const contractName$
|
|
402
|
+
declare const contractName$a: {
|
|
393
403
|
readonly production: "draft";
|
|
394
404
|
readonly testnet: "drafttest222";
|
|
395
405
|
};
|
|
396
406
|
|
|
407
|
+
declare namespace index$P {
|
|
408
|
+
export { index$R as Actions, draft as Interfaces, index$Q as Tables, contractName$a as contractName };
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
type IName$9 = string;
|
|
412
|
+
type IUint64$5 = number | string;
|
|
413
|
+
interface IAddtrusted {
|
|
414
|
+
coopname: IName$9;
|
|
415
|
+
braname: IName$9;
|
|
416
|
+
trusted: IName$9;
|
|
417
|
+
}
|
|
418
|
+
interface IBranchstat {
|
|
419
|
+
coopname: IName$9;
|
|
420
|
+
count: IUint64$5;
|
|
421
|
+
}
|
|
422
|
+
interface ICoobranch {
|
|
423
|
+
braname: IName$9;
|
|
424
|
+
trustee: IName$9;
|
|
425
|
+
trusted: IName$9[];
|
|
426
|
+
}
|
|
427
|
+
interface ICreatebranch$1 {
|
|
428
|
+
coopname: IName$9;
|
|
429
|
+
braname: IName$9;
|
|
430
|
+
trustee: IName$9;
|
|
431
|
+
}
|
|
432
|
+
interface IDeletebranch {
|
|
433
|
+
coopname: IName$9;
|
|
434
|
+
braname: IName$9;
|
|
435
|
+
}
|
|
436
|
+
interface IDeltrusted {
|
|
437
|
+
coopname: IName$9;
|
|
438
|
+
braname: IName$9;
|
|
439
|
+
trusted: IName$9;
|
|
440
|
+
}
|
|
441
|
+
interface IEditbranch {
|
|
442
|
+
coopname: IName$9;
|
|
443
|
+
braname: IName$9;
|
|
444
|
+
trustee: IName$9;
|
|
445
|
+
}
|
|
446
|
+
interface IInit$8 {
|
|
447
|
+
}
|
|
448
|
+
interface IMigrate$4 {
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
type branch_IAddtrusted = IAddtrusted;
|
|
452
|
+
type branch_IBranchstat = IBranchstat;
|
|
453
|
+
type branch_ICoobranch = ICoobranch;
|
|
454
|
+
type branch_IDeletebranch = IDeletebranch;
|
|
455
|
+
type branch_IDeltrusted = IDeltrusted;
|
|
456
|
+
type branch_IEditbranch = IEditbranch;
|
|
457
|
+
declare namespace branch {
|
|
458
|
+
export type { branch_IAddtrusted as IAddtrusted, branch_IBranchstat as IBranchstat, branch_ICoobranch as ICoobranch, ICreatebranch$1 as ICreatebranch, branch_IDeletebranch as IDeletebranch, branch_IDeltrusted as IDeltrusted, branch_IEditbranch as IEditbranch, IInit$8 as IInit, IMigrate$4 as IMigrate, IName$9 as IName, IUint64$5 as IUint64 };
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
declare const authorizations$2p: readonly [{
|
|
462
|
+
readonly permissions: readonly ["active"];
|
|
463
|
+
readonly actor: "_trustee";
|
|
464
|
+
}];
|
|
465
|
+
/**
|
|
466
|
+
* Имя действия
|
|
467
|
+
*/
|
|
468
|
+
declare const actionName$2p = "addtrusted";
|
|
469
|
+
/**
|
|
470
|
+
* @interface
|
|
471
|
+
*/
|
|
472
|
+
type IAddTrusted = IAddtrusted;
|
|
473
|
+
|
|
474
|
+
type addTrusted_IAddTrusted = IAddTrusted;
|
|
475
|
+
declare namespace addTrusted {
|
|
476
|
+
export { type addTrusted_IAddTrusted as IAddTrusted, actionName$2p as actionName, authorizations$2p as authorizations };
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
declare const authorizations$2o: readonly [{
|
|
480
|
+
readonly permissions: readonly ["active"];
|
|
481
|
+
readonly actor: "_chairman";
|
|
482
|
+
}];
|
|
483
|
+
/**
|
|
484
|
+
* Имя действия
|
|
485
|
+
*/
|
|
486
|
+
declare const actionName$2o = "createbranch";
|
|
487
|
+
/**
|
|
488
|
+
* @interface
|
|
489
|
+
*/
|
|
490
|
+
type ICreateBranch = ICreatebranch$1;
|
|
491
|
+
|
|
492
|
+
type createBranch_ICreateBranch = ICreateBranch;
|
|
493
|
+
declare namespace createBranch {
|
|
494
|
+
export { type createBranch_ICreateBranch as ICreateBranch, actionName$2o as actionName, authorizations$2o as authorizations };
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
declare const authorizations$2n: readonly [{
|
|
498
|
+
readonly permissions: readonly ["active"];
|
|
499
|
+
readonly actor: "_chairman";
|
|
500
|
+
}];
|
|
501
|
+
/**
|
|
502
|
+
* Имя действия
|
|
503
|
+
*/
|
|
504
|
+
declare const actionName$2n = "deletebranch";
|
|
505
|
+
/**
|
|
506
|
+
* @interface
|
|
507
|
+
*/
|
|
508
|
+
type IDeleteBranch = IDeletebranch;
|
|
509
|
+
|
|
510
|
+
type deleteBranch_IDeleteBranch = IDeleteBranch;
|
|
511
|
+
declare namespace deleteBranch {
|
|
512
|
+
export { type deleteBranch_IDeleteBranch as IDeleteBranch, actionName$2n as actionName, authorizations$2n as authorizations };
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
declare const authorizations$2m: readonly [{
|
|
516
|
+
readonly permissions: readonly ["active"];
|
|
517
|
+
readonly actor: "_trustee";
|
|
518
|
+
}];
|
|
519
|
+
/**
|
|
520
|
+
* Имя действия
|
|
521
|
+
*/
|
|
522
|
+
declare const actionName$2m = "deltrusted";
|
|
523
|
+
/**
|
|
524
|
+
* @interface
|
|
525
|
+
*/
|
|
526
|
+
type IDeleteTrusted = IDeltrusted;
|
|
527
|
+
|
|
528
|
+
type deleteTrusted_IDeleteTrusted = IDeleteTrusted;
|
|
529
|
+
declare namespace deleteTrusted {
|
|
530
|
+
export { type deleteTrusted_IDeleteTrusted as IDeleteTrusted, actionName$2m as actionName, authorizations$2m as authorizations };
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
declare const authorizations$2l: readonly [{
|
|
534
|
+
readonly permissions: readonly ["active"];
|
|
535
|
+
readonly actor: "_chairman";
|
|
536
|
+
}];
|
|
537
|
+
/**
|
|
538
|
+
* Имя действия
|
|
539
|
+
*/
|
|
540
|
+
declare const actionName$2l = "editbranch";
|
|
541
|
+
/**
|
|
542
|
+
* @interface
|
|
543
|
+
*/
|
|
544
|
+
type IEditBranch = IEditbranch;
|
|
545
|
+
|
|
546
|
+
type editBranch_IEditBranch = IEditBranch;
|
|
547
|
+
declare namespace editBranch {
|
|
548
|
+
export { type editBranch_IEditBranch as IEditBranch, actionName$2l as actionName, authorizations$2l as authorizations };
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
declare namespace index$O {
|
|
552
|
+
export { addTrusted as AddTrusted, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrusted as DeleteTrusted, editBranch as EditBranch };
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Имя таблицы
|
|
557
|
+
*/
|
|
558
|
+
declare const tableName$G = "branches";
|
|
559
|
+
/**
|
|
560
|
+
* Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
|
|
561
|
+
*/
|
|
562
|
+
declare const scope$G = "_coopname";
|
|
563
|
+
/**
|
|
564
|
+
* @interface
|
|
565
|
+
* Таблица содержит переводы черновиков документов.
|
|
566
|
+
*/
|
|
567
|
+
type IBranch = ICoobranch;
|
|
568
|
+
|
|
569
|
+
type branches_IBranch = IBranch;
|
|
570
|
+
declare namespace branches {
|
|
571
|
+
export { type branches_IBranch as IBranch, scope$G as scope, tableName$G as tableName };
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Имя таблицы
|
|
576
|
+
*/
|
|
577
|
+
declare const tableName$F = "branchstat";
|
|
578
|
+
/**
|
|
579
|
+
* Таблица хранится в {@link Actors._contract | области памяти контракта}.
|
|
580
|
+
*/
|
|
581
|
+
declare const scope$F = "_contract";
|
|
582
|
+
/**
|
|
583
|
+
* @interface
|
|
584
|
+
* Таблица содержит переводы черновиков документов.
|
|
585
|
+
*/
|
|
586
|
+
type IBranchStat = IBranchstat;
|
|
587
|
+
|
|
588
|
+
type branchStat_IBranchStat = IBranchStat;
|
|
589
|
+
declare namespace branchStat {
|
|
590
|
+
export { type branchStat_IBranchStat as IBranchStat, scope$F as scope, tableName$F as tableName };
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
declare namespace index$N {
|
|
594
|
+
export { branchStat as BranchStat, branches as Branches };
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
declare const contractName$9: {
|
|
598
|
+
readonly production: "branch";
|
|
599
|
+
readonly testnet: "branch";
|
|
600
|
+
};
|
|
601
|
+
|
|
397
602
|
declare namespace index$M {
|
|
398
|
-
export { index$O as Actions,
|
|
603
|
+
export { index$O as Actions, branch as Interfaces, index$N as Tables, contractName$9 as contractName };
|
|
399
604
|
}
|
|
400
605
|
|
|
401
606
|
type IAsset$6 = string;
|
|
@@ -404,20 +609,20 @@ type IChecksum256$6 = string;
|
|
|
404
609
|
type IPublicKey$5 = string;
|
|
405
610
|
type ISignature$4 = string;
|
|
406
611
|
type ITimePointSec$7 = string;
|
|
407
|
-
type IUint64$
|
|
612
|
+
type IUint64$4 = number | string;
|
|
408
613
|
interface IAccfund {
|
|
409
|
-
id: IUint64$
|
|
614
|
+
id: IUint64$4;
|
|
410
615
|
coopname: IName$8;
|
|
411
616
|
contract: IName$8;
|
|
412
617
|
name: string;
|
|
413
618
|
description: string;
|
|
414
|
-
percent: IUint64$
|
|
619
|
+
percent: IUint64$4;
|
|
415
620
|
available: IAsset$6;
|
|
416
621
|
withdrawed: IAsset$6;
|
|
417
622
|
}
|
|
418
623
|
interface IAddaccum {
|
|
419
624
|
coopname: IName$8;
|
|
420
|
-
fund_id: IUint64$
|
|
625
|
+
fund_id: IUint64$4;
|
|
421
626
|
quantity: IAsset$6;
|
|
422
627
|
}
|
|
423
628
|
interface IAddcirculate {
|
|
@@ -426,7 +631,7 @@ interface IAddcirculate {
|
|
|
426
631
|
}
|
|
427
632
|
interface IAddexpense {
|
|
428
633
|
coopname: IName$8;
|
|
429
|
-
fund_id: IUint64$
|
|
634
|
+
fund_id: IUint64$4;
|
|
430
635
|
quantity: IAsset$6;
|
|
431
636
|
}
|
|
432
637
|
interface IAddinitial {
|
|
@@ -436,15 +641,15 @@ interface IAddinitial {
|
|
|
436
641
|
interface IAuthorize$5 {
|
|
437
642
|
coopname: IName$8;
|
|
438
643
|
type: IName$8;
|
|
439
|
-
withdraw_id: IUint64$
|
|
644
|
+
withdraw_id: IUint64$4;
|
|
440
645
|
}
|
|
441
646
|
interface IComplete$1 {
|
|
442
647
|
coopname: IName$8;
|
|
443
648
|
username: IName$8;
|
|
444
|
-
withdraw_id: IUint64$
|
|
649
|
+
withdraw_id: IUint64$4;
|
|
445
650
|
}
|
|
446
651
|
interface ICoopwallet {
|
|
447
|
-
id: IUint64$
|
|
652
|
+
id: IUint64$4;
|
|
448
653
|
coopname: IName$8;
|
|
449
654
|
circulating_account: ISimpleWallet;
|
|
450
655
|
initial_account: ISimpleWallet;
|
|
@@ -456,7 +661,7 @@ interface ICounts$3 extends ICountsBase$3 {
|
|
|
456
661
|
interface ICountsBase$3 {
|
|
457
662
|
key: IName$8;
|
|
458
663
|
secondary_key: IName$8;
|
|
459
|
-
value: IUint64$
|
|
664
|
+
value: IUint64$4;
|
|
460
665
|
}
|
|
461
666
|
interface ICreatefund {
|
|
462
667
|
coopname: IName$8;
|
|
@@ -465,13 +670,13 @@ interface ICreatefund {
|
|
|
465
670
|
contract: IName$8;
|
|
466
671
|
name: string;
|
|
467
672
|
description: string;
|
|
468
|
-
percent: IUint64$
|
|
673
|
+
percent: IUint64$4;
|
|
469
674
|
}
|
|
470
675
|
interface IDelfund {
|
|
471
676
|
coopname: IName$8;
|
|
472
677
|
username: IName$8;
|
|
473
678
|
type: IName$8;
|
|
474
|
-
fund_id: IUint64$
|
|
679
|
+
fund_id: IUint64$4;
|
|
475
680
|
}
|
|
476
681
|
interface IDocument$4 {
|
|
477
682
|
hash: IChecksum256$6;
|
|
@@ -483,14 +688,14 @@ interface IEditfund {
|
|
|
483
688
|
coopname: IName$8;
|
|
484
689
|
username: IName$8;
|
|
485
690
|
type: IName$8;
|
|
486
|
-
fund_id: IUint64$
|
|
691
|
+
fund_id: IUint64$4;
|
|
487
692
|
contract: IName$8;
|
|
488
693
|
name: string;
|
|
489
694
|
description: string;
|
|
490
|
-
percent: IUint64$
|
|
695
|
+
percent: IUint64$4;
|
|
491
696
|
}
|
|
492
697
|
interface IExpfund {
|
|
493
|
-
id: IUint64$
|
|
698
|
+
id: IUint64$4;
|
|
494
699
|
coopname: IName$8;
|
|
495
700
|
contract: IName$8;
|
|
496
701
|
name: string;
|
|
@@ -498,7 +703,7 @@ interface IExpfund {
|
|
|
498
703
|
expended: IAsset$6;
|
|
499
704
|
}
|
|
500
705
|
interface IFundwallet {
|
|
501
|
-
id: IUint64$
|
|
706
|
+
id: IUint64$4;
|
|
502
707
|
coopname: IName$8;
|
|
503
708
|
circulating: IAsset$6;
|
|
504
709
|
membership: IAsset$6;
|
|
@@ -511,18 +716,18 @@ interface IFundwithdraw$1 {
|
|
|
511
716
|
coopname: IName$8;
|
|
512
717
|
username: IName$8;
|
|
513
718
|
type: IName$8;
|
|
514
|
-
fund_id: IUint64$
|
|
719
|
+
fund_id: IUint64$4;
|
|
515
720
|
document: IDocument$4;
|
|
516
721
|
quantity: IAsset$6;
|
|
517
722
|
bank_data_id: string;
|
|
518
723
|
}
|
|
519
724
|
interface IFwithdraw {
|
|
520
|
-
id: IUint64$
|
|
725
|
+
id: IUint64$4;
|
|
521
726
|
coopname: IName$8;
|
|
522
727
|
username: IName$8;
|
|
523
728
|
status: IName$8;
|
|
524
729
|
type: IName$8;
|
|
525
|
-
fund_id: IUint64$
|
|
730
|
+
fund_id: IUint64$4;
|
|
526
731
|
quantity: IAsset$6;
|
|
527
732
|
document: IDocument$4;
|
|
528
733
|
bank_data_id: string;
|
|
@@ -537,12 +742,12 @@ interface IMigrate$3 {
|
|
|
537
742
|
interface INewfund$1 {
|
|
538
743
|
coopname: IName$8;
|
|
539
744
|
type: IName$8;
|
|
540
|
-
id: IUint64$
|
|
745
|
+
id: IUint64$4;
|
|
541
746
|
}
|
|
542
747
|
interface INewwithdraw$1 {
|
|
543
748
|
coopname: IName$8;
|
|
544
749
|
type: IName$8;
|
|
545
|
-
id: IUint64$
|
|
750
|
+
id: IUint64$4;
|
|
546
751
|
}
|
|
547
752
|
interface ISimpleWallet {
|
|
548
753
|
available: IAsset$6;
|
|
@@ -554,7 +759,7 @@ interface ISpreadamount {
|
|
|
554
759
|
}
|
|
555
760
|
interface ISubaccum {
|
|
556
761
|
coopname: IName$8;
|
|
557
|
-
fund_id: IUint64$
|
|
762
|
+
fund_id: IUint64$4;
|
|
558
763
|
quantity: IAsset$6;
|
|
559
764
|
}
|
|
560
765
|
interface ISubcirculate {
|
|
@@ -579,10 +784,10 @@ type fund_ISpreadamount = ISpreadamount;
|
|
|
579
784
|
type fund_ISubaccum = ISubaccum;
|
|
580
785
|
type fund_ISubcirculate = ISubcirculate;
|
|
581
786
|
declare namespace fund {
|
|
582
|
-
export type { fund_IAccfund as IAccfund, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, fund_IAddinitial as IAddinitial, IAsset$6 as IAsset, IAuthorize$5 as IAuthorize, IChecksum256$6 as IChecksum256, IComplete$1 as IComplete, fund_ICoopwallet as ICoopwallet, ICounts$3 as ICounts, ICountsBase$3 as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, IDocument$4 as IDocument, fund_IEditfund as IEditfund, fund_IExpfund as IExpfund, fund_IFundwallet as IFundwallet, IFundwithdraw$1 as IFundwithdraw, fund_IFwithdraw as IFwithdraw, IInit$7 as IInit, IMigrate$3 as IMigrate, IName$8 as IName, INewfund$1 as INewfund, INewwithdraw$1 as INewwithdraw, IPublicKey$5 as IPublicKey, ISignature$4 as ISignature, fund_ISimpleWallet as ISimpleWallet, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$7 as ITimePointSec, IUint64$
|
|
787
|
+
export type { fund_IAccfund as IAccfund, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, fund_IAddinitial as IAddinitial, IAsset$6 as IAsset, IAuthorize$5 as IAuthorize, IChecksum256$6 as IChecksum256, IComplete$1 as IComplete, fund_ICoopwallet as ICoopwallet, ICounts$3 as ICounts, ICountsBase$3 as ICountsBase, fund_ICreatefund as ICreatefund, fund_IDelfund as IDelfund, IDocument$4 as IDocument, fund_IEditfund as IEditfund, fund_IExpfund as IExpfund, fund_IFundwallet as IFundwallet, IFundwithdraw$1 as IFundwithdraw, fund_IFwithdraw as IFwithdraw, IInit$7 as IInit, IMigrate$3 as IMigrate, IName$8 as IName, INewfund$1 as INewfund, INewwithdraw$1 as INewwithdraw, IPublicKey$5 as IPublicKey, ISignature$4 as ISignature, fund_ISimpleWallet as ISimpleWallet, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$7 as ITimePointSec, IUint64$4 as IUint64 };
|
|
583
788
|
}
|
|
584
789
|
|
|
585
|
-
declare const authorizations$
|
|
790
|
+
declare const authorizations$2k: readonly [{
|
|
586
791
|
readonly permissions: readonly ["active"];
|
|
587
792
|
readonly actor: {
|
|
588
793
|
readonly production: "fund";
|
|
@@ -592,7 +797,7 @@ declare const authorizations$2i: readonly [{
|
|
|
592
797
|
/**
|
|
593
798
|
* Имя действия
|
|
594
799
|
*/
|
|
595
|
-
declare const actionName$
|
|
800
|
+
declare const actionName$2k = "addaccum";
|
|
596
801
|
/**
|
|
597
802
|
* @interface
|
|
598
803
|
*/
|
|
@@ -600,10 +805,10 @@ type IAddAccumulation = IAddaccum;
|
|
|
600
805
|
|
|
601
806
|
type addAccumulation_IAddAccumulation = IAddAccumulation;
|
|
602
807
|
declare namespace addAccumulation {
|
|
603
|
-
export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$
|
|
808
|
+
export { type addAccumulation_IAddAccumulation as IAddAccumulation, actionName$2k as actionName, authorizations$2k as authorizations };
|
|
604
809
|
}
|
|
605
810
|
|
|
606
|
-
declare const authorizations$
|
|
811
|
+
declare const authorizations$2j: readonly [{
|
|
607
812
|
readonly permissions: readonly ["active"];
|
|
608
813
|
readonly actor: {
|
|
609
814
|
readonly production: "fund";
|
|
@@ -613,7 +818,7 @@ declare const authorizations$2h: readonly [{
|
|
|
613
818
|
/**
|
|
614
819
|
* Имя действия
|
|
615
820
|
*/
|
|
616
|
-
declare const actionName$
|
|
821
|
+
declare const actionName$2j = "subaccum";
|
|
617
822
|
/**
|
|
618
823
|
* @interface
|
|
619
824
|
*/
|
|
@@ -621,10 +826,10 @@ type ISubAccumulation = ISubaccum;
|
|
|
621
826
|
|
|
622
827
|
type subAccumulation_ISubAccumulation = ISubAccumulation;
|
|
623
828
|
declare namespace subAccumulation {
|
|
624
|
-
export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$
|
|
829
|
+
export { type subAccumulation_ISubAccumulation as ISubAccumulation, actionName$2j as actionName, authorizations$2j as authorizations };
|
|
625
830
|
}
|
|
626
831
|
|
|
627
|
-
declare const authorizations$
|
|
832
|
+
declare const authorizations$2i: readonly [{
|
|
628
833
|
readonly permissions: readonly ["active"];
|
|
629
834
|
readonly actor: {
|
|
630
835
|
readonly production: "gateway";
|
|
@@ -634,7 +839,7 @@ declare const authorizations$2g: readonly [{
|
|
|
634
839
|
/**
|
|
635
840
|
* Имя действия
|
|
636
841
|
*/
|
|
637
|
-
declare const actionName$
|
|
842
|
+
declare const actionName$2i = "addcirculate";
|
|
638
843
|
/**
|
|
639
844
|
* @interface
|
|
640
845
|
*/
|
|
@@ -642,10 +847,10 @@ type IAddCirculation = IAddcirculate;
|
|
|
642
847
|
|
|
643
848
|
type addCirculation_IAddCirculation = IAddCirculation;
|
|
644
849
|
declare namespace addCirculation {
|
|
645
|
-
export { type addCirculation_IAddCirculation as IAddCirculation, actionName$
|
|
850
|
+
export { type addCirculation_IAddCirculation as IAddCirculation, actionName$2i as actionName, authorizations$2i as authorizations };
|
|
646
851
|
}
|
|
647
852
|
|
|
648
|
-
declare const authorizations$
|
|
853
|
+
declare const authorizations$2h: readonly [{
|
|
649
854
|
readonly permissions: readonly ["active"];
|
|
650
855
|
readonly actor: {
|
|
651
856
|
readonly production: "fund";
|
|
@@ -655,7 +860,7 @@ declare const authorizations$2f: readonly [{
|
|
|
655
860
|
/**
|
|
656
861
|
* Имя действия
|
|
657
862
|
*/
|
|
658
|
-
declare const actionName$
|
|
863
|
+
declare const actionName$2h = "addexpense";
|
|
659
864
|
/**
|
|
660
865
|
* @interface
|
|
661
866
|
*/
|
|
@@ -663,10 +868,10 @@ type IAddExpense = IAddexpense;
|
|
|
663
868
|
|
|
664
869
|
type addExpense_IAddExpense = IAddExpense;
|
|
665
870
|
declare namespace addExpense {
|
|
666
|
-
export { type addExpense_IAddExpense as IAddExpense, actionName$
|
|
871
|
+
export { type addExpense_IAddExpense as IAddExpense, actionName$2h as actionName, authorizations$2h as authorizations };
|
|
667
872
|
}
|
|
668
873
|
|
|
669
|
-
declare const authorizations$
|
|
874
|
+
declare const authorizations$2g: readonly [{
|
|
670
875
|
readonly permissions: readonly ["active"];
|
|
671
876
|
readonly actor: {
|
|
672
877
|
readonly production: "soviet";
|
|
@@ -676,17 +881,17 @@ declare const authorizations$2e: readonly [{
|
|
|
676
881
|
/**
|
|
677
882
|
* Имя действия
|
|
678
883
|
*/
|
|
679
|
-
declare const actionName$
|
|
884
|
+
declare const actionName$2g = "authorize";
|
|
680
885
|
/**
|
|
681
886
|
* @interface
|
|
682
887
|
*/
|
|
683
888
|
type IAuthorize$4 = IAuthorize$5;
|
|
684
889
|
|
|
685
890
|
declare namespace authorizeWithdraw {
|
|
686
|
-
export { type IAuthorize$4 as IAuthorize, actionName$
|
|
891
|
+
export { type IAuthorize$4 as IAuthorize, actionName$2g as actionName, authorizations$2g as authorizations };
|
|
687
892
|
}
|
|
688
893
|
|
|
689
|
-
declare const authorizations$
|
|
894
|
+
declare const authorizations$2f: readonly [{
|
|
690
895
|
readonly permissions: readonly ["active", {
|
|
691
896
|
readonly contract: "_contract";
|
|
692
897
|
readonly action: "actionName";
|
|
@@ -696,7 +901,7 @@ declare const authorizations$2d: readonly [{
|
|
|
696
901
|
/**
|
|
697
902
|
* Имя действия
|
|
698
903
|
*/
|
|
699
|
-
declare const actionName$
|
|
904
|
+
declare const actionName$2f = "complete";
|
|
700
905
|
/**
|
|
701
906
|
* @interface
|
|
702
907
|
*/
|
|
@@ -704,10 +909,10 @@ type ICompleteWithdraw = IComplete$1;
|
|
|
704
909
|
|
|
705
910
|
type completeWithdraw$1_ICompleteWithdraw = ICompleteWithdraw;
|
|
706
911
|
declare namespace completeWithdraw$1 {
|
|
707
|
-
export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$
|
|
912
|
+
export { type completeWithdraw$1_ICompleteWithdraw as ICompleteWithdraw, actionName$2f as actionName, authorizations$2f as authorizations };
|
|
708
913
|
}
|
|
709
914
|
|
|
710
|
-
declare const authorizations$
|
|
915
|
+
declare const authorizations$2e: readonly [{
|
|
711
916
|
readonly permissions: readonly ["active"];
|
|
712
917
|
readonly actor: {
|
|
713
918
|
readonly production: "fund";
|
|
@@ -717,7 +922,7 @@ declare const authorizations$2c: readonly [{
|
|
|
717
922
|
/**
|
|
718
923
|
* Имя действия
|
|
719
924
|
*/
|
|
720
|
-
declare const actionName$
|
|
925
|
+
declare const actionName$2e = "newfund";
|
|
721
926
|
/**
|
|
722
927
|
* @interface
|
|
723
928
|
*/
|
|
@@ -725,17 +930,17 @@ type INewfund = INewfund$1;
|
|
|
725
930
|
|
|
726
931
|
type newFund_INewfund = INewfund;
|
|
727
932
|
declare namespace newFund {
|
|
728
|
-
export { type newFund_INewfund as INewfund, actionName$
|
|
933
|
+
export { type newFund_INewfund as INewfund, actionName$2e as actionName, authorizations$2e as authorizations };
|
|
729
934
|
}
|
|
730
935
|
|
|
731
|
-
declare const authorizations$
|
|
936
|
+
declare const authorizations$2d: readonly [{
|
|
732
937
|
readonly permissions: readonly ["active"];
|
|
733
938
|
readonly actor: "_chairman";
|
|
734
939
|
}];
|
|
735
940
|
/**
|
|
736
941
|
* Имя действия
|
|
737
942
|
*/
|
|
738
|
-
declare const actionName$
|
|
943
|
+
declare const actionName$2d = "createfund";
|
|
739
944
|
/**
|
|
740
945
|
* @interface
|
|
741
946
|
*/
|
|
@@ -743,17 +948,17 @@ type ICreateFund = ICreatefund;
|
|
|
743
948
|
|
|
744
949
|
type createFund_ICreateFund = ICreateFund;
|
|
745
950
|
declare namespace createFund {
|
|
746
|
-
export { type createFund_ICreateFund as ICreateFund, actionName$
|
|
951
|
+
export { type createFund_ICreateFund as ICreateFund, actionName$2d as actionName, authorizations$2d as authorizations };
|
|
747
952
|
}
|
|
748
953
|
|
|
749
|
-
declare const authorizations$
|
|
954
|
+
declare const authorizations$2c: readonly [{
|
|
750
955
|
readonly permissions: readonly ["active"];
|
|
751
956
|
readonly actor: "_chairman";
|
|
752
957
|
}];
|
|
753
958
|
/**
|
|
754
959
|
* Имя действия
|
|
755
960
|
*/
|
|
756
|
-
declare const actionName$
|
|
961
|
+
declare const actionName$2c = "delfund";
|
|
757
962
|
/**
|
|
758
963
|
* @interface
|
|
759
964
|
*/
|
|
@@ -761,17 +966,17 @@ type IDeleteFund = IDelfund;
|
|
|
761
966
|
|
|
762
967
|
type deleteFund_IDeleteFund = IDeleteFund;
|
|
763
968
|
declare namespace deleteFund {
|
|
764
|
-
export { type deleteFund_IDeleteFund as IDeleteFund, actionName$
|
|
969
|
+
export { type deleteFund_IDeleteFund as IDeleteFund, actionName$2c as actionName, authorizations$2c as authorizations };
|
|
765
970
|
}
|
|
766
971
|
|
|
767
|
-
declare const authorizations$
|
|
972
|
+
declare const authorizations$2b: readonly [{
|
|
768
973
|
readonly permissions: readonly ["active"];
|
|
769
974
|
readonly actor: "_chairman";
|
|
770
975
|
}];
|
|
771
976
|
/**
|
|
772
977
|
* Имя действия
|
|
773
978
|
*/
|
|
774
|
-
declare const actionName$
|
|
979
|
+
declare const actionName$2b = "editfund";
|
|
775
980
|
/**
|
|
776
981
|
* @interface
|
|
777
982
|
*/
|
|
@@ -779,7 +984,7 @@ type IEditFund = IEditfund;
|
|
|
779
984
|
|
|
780
985
|
type editFund_IEditFund = IEditFund;
|
|
781
986
|
declare namespace editFund {
|
|
782
|
-
export { type editFund_IEditFund as IEditFund, actionName$
|
|
987
|
+
export { type editFund_IEditFund as IEditFund, actionName$2b as actionName, authorizations$2b as authorizations };
|
|
783
988
|
}
|
|
784
989
|
|
|
785
990
|
/**
|
|
@@ -788,7 +993,7 @@ declare namespace editFund {
|
|
|
788
993
|
* на совершение действия или авторизация любого {@link Actors._contract | контракта},
|
|
789
994
|
* которому было передано управление фондом накопления или списания.
|
|
790
995
|
*/
|
|
791
|
-
declare const authorizations$
|
|
996
|
+
declare const authorizations$2a: readonly [{
|
|
792
997
|
readonly permissions: readonly ["active"];
|
|
793
998
|
readonly actor: "_username";
|
|
794
999
|
}, {
|
|
@@ -804,7 +1009,7 @@ declare const authorizations$28: readonly [{
|
|
|
804
1009
|
/**
|
|
805
1010
|
* Имя действия
|
|
806
1011
|
*/
|
|
807
|
-
declare const actionName$
|
|
1012
|
+
declare const actionName$2a = "fundwithdraw";
|
|
808
1013
|
/**
|
|
809
1014
|
* @interface
|
|
810
1015
|
*/
|
|
@@ -812,10 +1017,10 @@ type ICreateWithdraw = IFundwithdraw$1;
|
|
|
812
1017
|
|
|
813
1018
|
type createWithdraw$1_ICreateWithdraw = ICreateWithdraw;
|
|
814
1019
|
declare namespace createWithdraw$1 {
|
|
815
|
-
export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$
|
|
1020
|
+
export { type createWithdraw$1_ICreateWithdraw as ICreateWithdraw, actionName$2a as actionName, authorizations$2a as authorizations };
|
|
816
1021
|
}
|
|
817
1022
|
|
|
818
|
-
declare const authorizations$
|
|
1023
|
+
declare const authorizations$29: readonly [{
|
|
819
1024
|
readonly permissions: readonly ["active"];
|
|
820
1025
|
readonly actor: {
|
|
821
1026
|
readonly production: "soviet";
|
|
@@ -825,17 +1030,17 @@ declare const authorizations$27: readonly [{
|
|
|
825
1030
|
/**
|
|
826
1031
|
* Имя действия
|
|
827
1032
|
*/
|
|
828
|
-
declare const actionName$
|
|
1033
|
+
declare const actionName$29 = "init";
|
|
829
1034
|
/**
|
|
830
1035
|
* @interface
|
|
831
1036
|
*/
|
|
832
1037
|
type IInit$6 = IInit$7;
|
|
833
1038
|
|
|
834
1039
|
declare namespace init$3 {
|
|
835
|
-
export { type IInit$6 as IInit, actionName$
|
|
1040
|
+
export { type IInit$6 as IInit, actionName$29 as actionName, authorizations$29 as authorizations };
|
|
836
1041
|
}
|
|
837
1042
|
|
|
838
|
-
declare const authorizations$
|
|
1043
|
+
declare const authorizations$28: readonly [{
|
|
839
1044
|
readonly permissions: readonly ["active"];
|
|
840
1045
|
readonly actor: {
|
|
841
1046
|
readonly production: "fund";
|
|
@@ -845,7 +1050,7 @@ declare const authorizations$26: readonly [{
|
|
|
845
1050
|
/**
|
|
846
1051
|
* Имя действия
|
|
847
1052
|
*/
|
|
848
|
-
declare const actionName$
|
|
1053
|
+
declare const actionName$28 = "newwithdraw";
|
|
849
1054
|
/**
|
|
850
1055
|
* @interface
|
|
851
1056
|
*/
|
|
@@ -853,10 +1058,10 @@ type INewWithdraw = INewwithdraw$1;
|
|
|
853
1058
|
|
|
854
1059
|
type newWithdraw_INewWithdraw = INewWithdraw;
|
|
855
1060
|
declare namespace newWithdraw {
|
|
856
|
-
export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$
|
|
1061
|
+
export { type newWithdraw_INewWithdraw as INewWithdraw, actionName$28 as actionName, authorizations$28 as authorizations };
|
|
857
1062
|
}
|
|
858
1063
|
|
|
859
|
-
declare const authorizations$
|
|
1064
|
+
declare const authorizations$27: readonly [{
|
|
860
1065
|
readonly permissions: readonly ["active"];
|
|
861
1066
|
readonly actor: {
|
|
862
1067
|
readonly production: "marketplace";
|
|
@@ -872,7 +1077,7 @@ declare const authorizations$25: readonly [{
|
|
|
872
1077
|
/**
|
|
873
1078
|
* Имя действия
|
|
874
1079
|
*/
|
|
875
|
-
declare const actionName$
|
|
1080
|
+
declare const actionName$27 = "spreadamount";
|
|
876
1081
|
/**
|
|
877
1082
|
* @interface
|
|
878
1083
|
*/
|
|
@@ -880,10 +1085,10 @@ type ISpreadAmount = ISpreadamount;
|
|
|
880
1085
|
|
|
881
1086
|
type spreadAmount_ISpreadAmount = ISpreadAmount;
|
|
882
1087
|
declare namespace spreadAmount {
|
|
883
|
-
export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$
|
|
1088
|
+
export { type spreadAmount_ISpreadAmount as ISpreadAmount, actionName$27 as actionName, authorizations$27 as authorizations };
|
|
884
1089
|
}
|
|
885
1090
|
|
|
886
|
-
declare const authorizations$
|
|
1091
|
+
declare const authorizations$26: readonly [{
|
|
887
1092
|
readonly permissions: readonly ["active"];
|
|
888
1093
|
readonly actor: {
|
|
889
1094
|
readonly production: "gateway";
|
|
@@ -893,7 +1098,7 @@ declare const authorizations$24: readonly [{
|
|
|
893
1098
|
/**
|
|
894
1099
|
* Имя действия
|
|
895
1100
|
*/
|
|
896
|
-
declare const actionName$
|
|
1101
|
+
declare const actionName$26 = "subcirculate";
|
|
897
1102
|
/**
|
|
898
1103
|
* @interface
|
|
899
1104
|
*/
|
|
@@ -901,7 +1106,7 @@ type ISubCirculation = ISubcirculate;
|
|
|
901
1106
|
|
|
902
1107
|
type subCirculation_ISubCirculation = ISubCirculation;
|
|
903
1108
|
declare namespace subCirculation {
|
|
904
|
-
export { type subCirculation_ISubCirculation as ISubCirculation, actionName$
|
|
1109
|
+
export { type subCirculation_ISubCirculation as ISubCirculation, actionName$26 as actionName, authorizations$26 as authorizations };
|
|
905
1110
|
}
|
|
906
1111
|
|
|
907
1112
|
/**
|
|
@@ -1022,7 +1227,7 @@ type IChecksum256$5 = string;
|
|
|
1022
1227
|
type IPublicKey$4 = string;
|
|
1023
1228
|
type ISignature$3 = string;
|
|
1024
1229
|
type ITimePointSec$6 = string;
|
|
1025
|
-
type IUint64$
|
|
1230
|
+
type IUint64$3 = number | string;
|
|
1026
1231
|
interface IAdduser$2 {
|
|
1027
1232
|
coopname: IName$7;
|
|
1028
1233
|
username: IName$7;
|
|
@@ -1031,10 +1236,10 @@ interface IAdduser$2 {
|
|
|
1031
1236
|
created_at: ITimePointSec$6;
|
|
1032
1237
|
spread_initial: boolean;
|
|
1033
1238
|
}
|
|
1034
|
-
interface IBalances$
|
|
1239
|
+
interface IBalances$1 extends IBalancesBase$1 {
|
|
1035
1240
|
}
|
|
1036
|
-
interface IBalancesBase$
|
|
1037
|
-
id: IUint64$
|
|
1241
|
+
interface IBalancesBase$1 {
|
|
1242
|
+
id: IUint64$3;
|
|
1038
1243
|
contract: IName$7;
|
|
1039
1244
|
quantity: IAsset$5;
|
|
1040
1245
|
}
|
|
@@ -1043,12 +1248,12 @@ interface ICounts$2 extends ICountsBase$2 {
|
|
|
1043
1248
|
interface ICountsBase$2 {
|
|
1044
1249
|
key: IName$7;
|
|
1045
1250
|
secondary_key: IName$7;
|
|
1046
|
-
value: IUint64$
|
|
1251
|
+
value: IUint64$3;
|
|
1047
1252
|
}
|
|
1048
1253
|
interface IDeposit {
|
|
1049
1254
|
coopname: IName$7;
|
|
1050
1255
|
username: IName$7;
|
|
1051
|
-
deposit_id: IUint64$
|
|
1256
|
+
deposit_id: IUint64$3;
|
|
1052
1257
|
type: IName$7;
|
|
1053
1258
|
quantity: IAsset$5;
|
|
1054
1259
|
}
|
|
@@ -1061,13 +1266,13 @@ interface IDocument$3 {
|
|
|
1061
1266
|
interface IDpcomplete {
|
|
1062
1267
|
coopname: IName$7;
|
|
1063
1268
|
admin: IName$7;
|
|
1064
|
-
deposit_id: IUint64$
|
|
1269
|
+
deposit_id: IUint64$3;
|
|
1065
1270
|
memo: string;
|
|
1066
1271
|
}
|
|
1067
1272
|
interface IDprefund {
|
|
1068
1273
|
coopname: IName$7;
|
|
1069
1274
|
admin: IName$7;
|
|
1070
|
-
deposit_id: IUint64$
|
|
1275
|
+
deposit_id: IUint64$3;
|
|
1071
1276
|
memo: string;
|
|
1072
1277
|
}
|
|
1073
1278
|
interface IMigrate$2 {
|
|
@@ -1075,28 +1280,28 @@ interface IMigrate$2 {
|
|
|
1075
1280
|
interface INewdeposit {
|
|
1076
1281
|
coopname: IName$7;
|
|
1077
1282
|
username: IName$7;
|
|
1078
|
-
deposit_id: IUint64$
|
|
1283
|
+
deposit_id: IUint64$3;
|
|
1079
1284
|
type: IName$7;
|
|
1080
1285
|
amount: IAsset$5;
|
|
1081
1286
|
deposited_at: ITimePointSec$6;
|
|
1082
1287
|
}
|
|
1083
1288
|
interface INewdepositid {
|
|
1084
1289
|
username: IName$7;
|
|
1085
|
-
id: IUint64$
|
|
1290
|
+
id: IUint64$3;
|
|
1086
1291
|
}
|
|
1087
1292
|
interface INewwithdraw {
|
|
1088
1293
|
coopname: IName$7;
|
|
1089
1294
|
username: IName$7;
|
|
1090
|
-
withdraw_id: IUint64$
|
|
1295
|
+
withdraw_id: IUint64$3;
|
|
1091
1296
|
type: IName$7;
|
|
1092
1297
|
amount: IAsset$5;
|
|
1093
1298
|
}
|
|
1094
1299
|
interface INewwithdrid {
|
|
1095
1300
|
username: IName$7;
|
|
1096
|
-
id: IUint64$
|
|
1301
|
+
id: IUint64$3;
|
|
1097
1302
|
}
|
|
1098
1303
|
interface IOnedeposit {
|
|
1099
|
-
id: IUint64$
|
|
1304
|
+
id: IUint64$3;
|
|
1100
1305
|
username: IName$7;
|
|
1101
1306
|
coopname: IName$7;
|
|
1102
1307
|
type: IName$7;
|
|
@@ -1108,7 +1313,7 @@ interface IOnedeposit {
|
|
|
1108
1313
|
expired_at: ITimePointSec$6;
|
|
1109
1314
|
}
|
|
1110
1315
|
interface IOnewithdraw {
|
|
1111
|
-
id: IUint64$
|
|
1316
|
+
id: IUint64$3;
|
|
1112
1317
|
username: IName$7;
|
|
1113
1318
|
coopname: IName$7;
|
|
1114
1319
|
bank_data_id: string;
|
|
@@ -1129,18 +1334,18 @@ interface IWithdraw$1 {
|
|
|
1129
1334
|
}
|
|
1130
1335
|
interface IWithdrawauth {
|
|
1131
1336
|
coopname: IName$7;
|
|
1132
|
-
withdraw_id: IUint64$
|
|
1337
|
+
withdraw_id: IUint64$3;
|
|
1133
1338
|
}
|
|
1134
1339
|
interface IWthdcomplete {
|
|
1135
1340
|
coopname: IName$7;
|
|
1136
1341
|
admin: IName$7;
|
|
1137
|
-
withdraw_id: IUint64$
|
|
1342
|
+
withdraw_id: IUint64$3;
|
|
1138
1343
|
memo: string;
|
|
1139
1344
|
}
|
|
1140
1345
|
interface IWthdfail {
|
|
1141
1346
|
coopname: IName$7;
|
|
1142
1347
|
admin: IName$7;
|
|
1143
|
-
withdraw_id: IUint64$
|
|
1348
|
+
withdraw_id: IUint64$3;
|
|
1144
1349
|
memo: string;
|
|
1145
1350
|
}
|
|
1146
1351
|
|
|
@@ -1157,14 +1362,14 @@ type gateway_IWithdrawauth = IWithdrawauth;
|
|
|
1157
1362
|
type gateway_IWthdcomplete = IWthdcomplete;
|
|
1158
1363
|
type gateway_IWthdfail = IWthdfail;
|
|
1159
1364
|
declare namespace gateway {
|
|
1160
|
-
export type { IAdduser$2 as IAdduser, IAsset$5 as IAsset, IBalances$
|
|
1365
|
+
export type { IAdduser$2 as IAdduser, IAsset$5 as IAsset, IBalances$1 as IBalances, IBalancesBase$1 as IBalancesBase, IChecksum256$5 as IChecksum256, ICounts$2 as ICounts, ICountsBase$2 as ICountsBase, gateway_IDeposit as IDeposit, IDocument$3 as IDocument, gateway_IDpcomplete as IDpcomplete, gateway_IDprefund as IDprefund, IMigrate$2 as IMigrate, IName$7 as IName, gateway_INewdeposit as INewdeposit, gateway_INewdepositid as INewdepositid, gateway_INewwithdraw as INewwithdraw, gateway_INewwithdrid as INewwithdrid, gateway_IOnedeposit as IOnedeposit, gateway_IOnewithdraw as IOnewithdraw, IPublicKey$4 as IPublicKey, ISignature$3 as ISignature, ITimePointSec$6 as ITimePointSec, IUint64$3 as IUint64, IWithdraw$1 as IWithdraw, gateway_IWithdrawauth as IWithdrawauth, gateway_IWthdcomplete as IWthdcomplete, gateway_IWthdfail as IWthdfail };
|
|
1161
1366
|
}
|
|
1162
1367
|
|
|
1163
1368
|
/**
|
|
1164
1369
|
* Имя действия
|
|
1165
1370
|
* Требуется авторизация {@link Actors._coopname | технического аккаунта кооператива} со специальным разрешением.
|
|
1166
1371
|
*/
|
|
1167
|
-
declare const authorizations$
|
|
1372
|
+
declare const authorizations$25: readonly [{
|
|
1168
1373
|
readonly permissions: readonly ["active", {
|
|
1169
1374
|
readonly contract: "_contract";
|
|
1170
1375
|
readonly action: "actionName";
|
|
@@ -1174,7 +1379,7 @@ declare const authorizations$23: readonly [{
|
|
|
1174
1379
|
/**
|
|
1175
1380
|
* Имя действия
|
|
1176
1381
|
*/
|
|
1177
|
-
declare const actionName$
|
|
1382
|
+
declare const actionName$25 = "deposit";
|
|
1178
1383
|
/**
|
|
1179
1384
|
* @interface
|
|
1180
1385
|
* Действие для создания заявки на взнос в кошелёк, которое производится уполномоченным аккаунтом от кооператива с бэкенда.
|
|
@@ -1189,14 +1394,14 @@ type ICreateDeposit = IDeposit;
|
|
|
1189
1394
|
|
|
1190
1395
|
type createDeposit_ICreateDeposit = ICreateDeposit;
|
|
1191
1396
|
declare namespace createDeposit {
|
|
1192
|
-
export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$
|
|
1397
|
+
export { type createDeposit_ICreateDeposit as ICreateDeposit, actionName$25 as actionName, authorizations$25 as authorizations };
|
|
1193
1398
|
}
|
|
1194
1399
|
|
|
1195
1400
|
/**
|
|
1196
1401
|
* Имя действия
|
|
1197
1402
|
* Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
|
|
1198
1403
|
*/
|
|
1199
|
-
declare const authorizations$
|
|
1404
|
+
declare const authorizations$24: readonly [{
|
|
1200
1405
|
readonly permissions: readonly ["active", {
|
|
1201
1406
|
readonly contract: "_contract";
|
|
1202
1407
|
readonly action: "actionName";
|
|
@@ -1206,7 +1411,7 @@ declare const authorizations$22: readonly [{
|
|
|
1206
1411
|
/**
|
|
1207
1412
|
* Имя действия
|
|
1208
1413
|
*/
|
|
1209
|
-
declare const actionName$
|
|
1414
|
+
declare const actionName$24 = "dpcomplete";
|
|
1210
1415
|
/**
|
|
1211
1416
|
* @interface
|
|
1212
1417
|
*/
|
|
@@ -1214,14 +1419,14 @@ type ICompleteDeposit = IDpcomplete;
|
|
|
1214
1419
|
|
|
1215
1420
|
type completeDeposit_ICompleteDeposit = ICompleteDeposit;
|
|
1216
1421
|
declare namespace completeDeposit {
|
|
1217
|
-
export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$
|
|
1422
|
+
export { type completeDeposit_ICompleteDeposit as ICompleteDeposit, actionName$24 as actionName, authorizations$24 as authorizations };
|
|
1218
1423
|
}
|
|
1219
1424
|
|
|
1220
1425
|
/**
|
|
1221
1426
|
* Имя действия
|
|
1222
1427
|
* Требуется авторизация {@link Actors._admin | администратором кооператива} со специальным разрешением.
|
|
1223
1428
|
*/
|
|
1224
|
-
declare const authorizations$
|
|
1429
|
+
declare const authorizations$23: readonly [{
|
|
1225
1430
|
readonly permissions: readonly ["active", {
|
|
1226
1431
|
readonly contract: "_contract";
|
|
1227
1432
|
readonly action: "actionName";
|
|
@@ -1231,7 +1436,7 @@ declare const authorizations$21: readonly [{
|
|
|
1231
1436
|
/**
|
|
1232
1437
|
* Имя действия
|
|
1233
1438
|
*/
|
|
1234
|
-
declare const actionName$
|
|
1439
|
+
declare const actionName$23 = "dprefund";
|
|
1235
1440
|
/**
|
|
1236
1441
|
* @interface
|
|
1237
1442
|
*/
|
|
@@ -1239,14 +1444,14 @@ type IRefundDeposit = IDprefund;
|
|
|
1239
1444
|
|
|
1240
1445
|
type refundDeposit_IRefundDeposit = IRefundDeposit;
|
|
1241
1446
|
declare namespace refundDeposit {
|
|
1242
|
-
export { type refundDeposit_IRefundDeposit as IRefundDeposit, actionName$
|
|
1447
|
+
export { type refundDeposit_IRefundDeposit as IRefundDeposit, actionName$23 as actionName, authorizations$23 as authorizations };
|
|
1243
1448
|
}
|
|
1244
1449
|
|
|
1245
1450
|
/**
|
|
1246
1451
|
* Имя действия
|
|
1247
1452
|
* Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
|
|
1248
1453
|
*/
|
|
1249
|
-
declare const authorizations$
|
|
1454
|
+
declare const authorizations$22: readonly [{
|
|
1250
1455
|
readonly permissions: readonly ["active"];
|
|
1251
1456
|
readonly actor: {
|
|
1252
1457
|
readonly production: "gateway";
|
|
@@ -1256,7 +1461,7 @@ declare const authorizations$20: readonly [{
|
|
|
1256
1461
|
/**
|
|
1257
1462
|
* Имя действия
|
|
1258
1463
|
*/
|
|
1259
|
-
declare const actionName$
|
|
1464
|
+
declare const actionName$22 = "newdepositid";
|
|
1260
1465
|
/**
|
|
1261
1466
|
* @interface
|
|
1262
1467
|
*/
|
|
@@ -1264,14 +1469,14 @@ type NewDepositId = INewdepositid;
|
|
|
1264
1469
|
|
|
1265
1470
|
type newDepositId_NewDepositId = NewDepositId;
|
|
1266
1471
|
declare namespace newDepositId {
|
|
1267
|
-
export { type newDepositId_NewDepositId as NewDepositId, actionName$
|
|
1472
|
+
export { type newDepositId_NewDepositId as NewDepositId, actionName$22 as actionName, authorizations$22 as authorizations };
|
|
1268
1473
|
}
|
|
1269
1474
|
|
|
1270
1475
|
/**
|
|
1271
1476
|
* Имя действия
|
|
1272
1477
|
* Требуется авторизация {@link ContractNames._gateway | аккаунта контракта шлюза}.
|
|
1273
1478
|
*/
|
|
1274
|
-
declare const authorizations$
|
|
1479
|
+
declare const authorizations$21: readonly [{
|
|
1275
1480
|
readonly permissions: readonly ["active"];
|
|
1276
1481
|
readonly actor: {
|
|
1277
1482
|
readonly production: "gateway";
|
|
@@ -1281,7 +1486,7 @@ declare const authorizations$1$: readonly [{
|
|
|
1281
1486
|
/**
|
|
1282
1487
|
* Имя действия
|
|
1283
1488
|
*/
|
|
1284
|
-
declare const actionName$
|
|
1489
|
+
declare const actionName$21 = "newwithdrid";
|
|
1285
1490
|
/**
|
|
1286
1491
|
* @interface
|
|
1287
1492
|
*/
|
|
@@ -1289,21 +1494,21 @@ type NewWithdrawId = INewwithdrid;
|
|
|
1289
1494
|
|
|
1290
1495
|
type newWithdrawId_NewWithdrawId = NewWithdrawId;
|
|
1291
1496
|
declare namespace newWithdrawId {
|
|
1292
|
-
export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$
|
|
1497
|
+
export { type newWithdrawId_NewWithdrawId as NewWithdrawId, actionName$21 as actionName, authorizations$21 as authorizations };
|
|
1293
1498
|
}
|
|
1294
1499
|
|
|
1295
1500
|
/**
|
|
1296
1501
|
* Имя действия
|
|
1297
1502
|
* Требуется авторизация {@link Actors._username | пользователя}.
|
|
1298
1503
|
*/
|
|
1299
|
-
declare const authorizations$
|
|
1504
|
+
declare const authorizations$20: readonly [{
|
|
1300
1505
|
readonly permissions: readonly ["active"];
|
|
1301
1506
|
readonly actor: "_username";
|
|
1302
1507
|
}];
|
|
1303
1508
|
/**
|
|
1304
1509
|
* Имя действия
|
|
1305
1510
|
*/
|
|
1306
|
-
declare const actionName$
|
|
1511
|
+
declare const actionName$20 = "withdraw";
|
|
1307
1512
|
/**
|
|
1308
1513
|
* @interface
|
|
1309
1514
|
* Действие для создания заявки на возврат паевого взноса из кошелька.
|
|
@@ -1311,14 +1516,14 @@ declare const actionName$1_ = "withdraw";
|
|
|
1311
1516
|
type IFailDeposit$1 = IWithdraw$1;
|
|
1312
1517
|
|
|
1313
1518
|
declare namespace createWithdraw {
|
|
1314
|
-
export { type IFailDeposit$1 as IFailDeposit, actionName$
|
|
1519
|
+
export { type IFailDeposit$1 as IFailDeposit, actionName$20 as actionName, authorizations$20 as authorizations };
|
|
1315
1520
|
}
|
|
1316
1521
|
|
|
1317
1522
|
/**
|
|
1318
1523
|
* Имя действия
|
|
1319
1524
|
* Требуется авторизация {@link Actors._admin | администратора}.
|
|
1320
1525
|
*/
|
|
1321
|
-
declare const authorizations$
|
|
1526
|
+
declare const authorizations$1$: readonly [{
|
|
1322
1527
|
readonly permissions: readonly ["active", {
|
|
1323
1528
|
readonly contract: "_contract";
|
|
1324
1529
|
readonly action: "actionName";
|
|
@@ -1328,7 +1533,7 @@ declare const authorizations$1Z: readonly [{
|
|
|
1328
1533
|
/**
|
|
1329
1534
|
* Имя действия
|
|
1330
1535
|
*/
|
|
1331
|
-
declare const actionName$
|
|
1536
|
+
declare const actionName$1$ = "wthdcomplete";
|
|
1332
1537
|
/**
|
|
1333
1538
|
* @interface
|
|
1334
1539
|
* Действие для подтверждения платежа по возврату паевого взноса пользователю.
|
|
@@ -1337,14 +1542,14 @@ type IFailDeposit = IWthdcomplete;
|
|
|
1337
1542
|
|
|
1338
1543
|
type completeWithdraw_IFailDeposit = IFailDeposit;
|
|
1339
1544
|
declare namespace completeWithdraw {
|
|
1340
|
-
export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$
|
|
1545
|
+
export { type completeWithdraw_IFailDeposit as IFailDeposit, actionName$1$ as actionName, authorizations$1$ as authorizations };
|
|
1341
1546
|
}
|
|
1342
1547
|
|
|
1343
1548
|
/**
|
|
1344
1549
|
* Имя действия
|
|
1345
1550
|
* Требуется авторизация {@link Actors._admin | администратора кооператива} со специальным разрешением.
|
|
1346
1551
|
*/
|
|
1347
|
-
declare const authorizations$
|
|
1552
|
+
declare const authorizations$1_: readonly [{
|
|
1348
1553
|
readonly permissions: readonly ["active", {
|
|
1349
1554
|
readonly contract: "_contract";
|
|
1350
1555
|
readonly action: "actionName";
|
|
@@ -1354,7 +1559,7 @@ declare const authorizations$1Y: readonly [{
|
|
|
1354
1559
|
/**
|
|
1355
1560
|
* Имя действия
|
|
1356
1561
|
*/
|
|
1357
|
-
declare const actionName$
|
|
1562
|
+
declare const actionName$1_ = "wthdfail";
|
|
1358
1563
|
/**
|
|
1359
1564
|
* @interface
|
|
1360
1565
|
*/
|
|
@@ -1362,7 +1567,7 @@ type IFailWithdraw = IWthdfail;
|
|
|
1362
1567
|
|
|
1363
1568
|
type failWithdraw_IFailWithdraw = IFailWithdraw;
|
|
1364
1569
|
declare namespace failWithdraw {
|
|
1365
|
-
export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$
|
|
1570
|
+
export { type failWithdraw_IFailWithdraw as IFailWithdraw, actionName$1_ as actionName, authorizations$1_ as authorizations };
|
|
1366
1571
|
}
|
|
1367
1572
|
|
|
1368
1573
|
/**
|
|
@@ -1439,7 +1644,6 @@ type IChecksum256$4 = string;
|
|
|
1439
1644
|
type IPublicKey$3 = string;
|
|
1440
1645
|
type ISignature$2 = string;
|
|
1441
1646
|
type ITimePointSec$5 = string;
|
|
1442
|
-
type IUint64$3 = number | string;
|
|
1443
1647
|
interface IAccount$2 {
|
|
1444
1648
|
username: IName$6;
|
|
1445
1649
|
referer: IName$6;
|
|
@@ -1463,19 +1667,16 @@ interface IAdduser$1 {
|
|
|
1463
1667
|
spread_initial: boolean;
|
|
1464
1668
|
meta: string;
|
|
1465
1669
|
}
|
|
1466
|
-
interface IBalances$1 extends IBalancesBase$1 {
|
|
1467
|
-
}
|
|
1468
|
-
interface IBalancesBase$1 {
|
|
1469
|
-
id: IUint64$3;
|
|
1470
|
-
contract: IName$6;
|
|
1471
|
-
quantity: IAsset$4;
|
|
1472
|
-
}
|
|
1473
1670
|
interface IChangekey {
|
|
1474
1671
|
coopname: IName$6;
|
|
1475
1672
|
changer: IName$6;
|
|
1476
1673
|
username: IName$6;
|
|
1477
1674
|
public_key: IPublicKey$3;
|
|
1478
1675
|
}
|
|
1676
|
+
interface IConfirmreg {
|
|
1677
|
+
coopname: IName$6;
|
|
1678
|
+
username: IName$6;
|
|
1679
|
+
}
|
|
1479
1680
|
interface ICooperative$1 {
|
|
1480
1681
|
username: IName$6;
|
|
1481
1682
|
parent_username: IName$6;
|
|
@@ -1495,16 +1696,26 @@ interface ICooperative$1 {
|
|
|
1495
1696
|
created_at: ITimePointSec$5;
|
|
1496
1697
|
document: IDocument$2;
|
|
1497
1698
|
}
|
|
1699
|
+
interface ICreatebranch {
|
|
1700
|
+
coopname: IName$6;
|
|
1701
|
+
braname: IName$6;
|
|
1702
|
+
}
|
|
1498
1703
|
interface IDelcoop {
|
|
1499
1704
|
registrator: IName$6;
|
|
1500
1705
|
coopname: IName$6;
|
|
1501
1706
|
}
|
|
1707
|
+
interface IDisbranches {
|
|
1708
|
+
coopname: IName$6;
|
|
1709
|
+
}
|
|
1502
1710
|
interface IDocument$2 {
|
|
1503
1711
|
hash: IChecksum256$4;
|
|
1504
1712
|
public_key: IPublicKey$3;
|
|
1505
1713
|
signature: ISignature$2;
|
|
1506
1714
|
meta: string;
|
|
1507
1715
|
}
|
|
1716
|
+
interface IEnabranches {
|
|
1717
|
+
coopname: IName$6;
|
|
1718
|
+
}
|
|
1508
1719
|
interface IInit$5 {
|
|
1509
1720
|
}
|
|
1510
1721
|
interface IJoincoop$1 {
|
|
@@ -1579,7 +1790,11 @@ interface IVerification {
|
|
|
1579
1790
|
}
|
|
1580
1791
|
|
|
1581
1792
|
type registrator_IChangekey = IChangekey;
|
|
1793
|
+
type registrator_IConfirmreg = IConfirmreg;
|
|
1794
|
+
type registrator_ICreatebranch = ICreatebranch;
|
|
1582
1795
|
type registrator_IDelcoop = IDelcoop;
|
|
1796
|
+
type registrator_IDisbranches = IDisbranches;
|
|
1797
|
+
type registrator_IEnabranches = IEnabranches;
|
|
1583
1798
|
type registrator_IOrgData = IOrgData;
|
|
1584
1799
|
type registrator_IRegcoop = IRegcoop;
|
|
1585
1800
|
type registrator_IReguser = IReguser;
|
|
@@ -1589,10 +1804,10 @@ type registrator_IUpdatecoop = IUpdatecoop;
|
|
|
1589
1804
|
type registrator_IVerificate = IVerificate;
|
|
1590
1805
|
type registrator_IVerification = IVerification;
|
|
1591
1806
|
declare namespace registrator {
|
|
1592
|
-
export type { IAccount$2 as IAccount, IAdduser$1 as IAdduser, IAsset$4 as IAsset,
|
|
1807
|
+
export type { IAccount$2 as IAccount, IAdduser$1 as IAdduser, IAsset$4 as IAsset, registrator_IChangekey as IChangekey, IChecksum256$4 as IChecksum256, registrator_IConfirmreg as IConfirmreg, ICooperative$1 as ICooperative, registrator_ICreatebranch as ICreatebranch, registrator_IDelcoop as IDelcoop, registrator_IDisbranches as IDisbranches, IDocument$2 as IDocument, registrator_IEnabranches as IEnabranches, IInit$5 as IInit, IJoincoop$1 as IJoincoop, IMigrate$1 as IMigrate, IName$6 as IName, INewaccount$1 as INewaccount, registrator_IOrgData as IOrgData, IPublicKey$3 as IPublicKey, registrator_IRegcoop as IRegcoop, registrator_IReguser as IReguser, ISignature$2 as ISignature, registrator_IStcoopstatus as IStcoopstatus, ITimePointSec$5 as ITimePointSec, registrator_IUpdateaccnt as IUpdateaccnt, registrator_IUpdatecoop as IUpdatecoop, registrator_IVerificate as IVerificate, registrator_IVerification as IVerification };
|
|
1593
1808
|
}
|
|
1594
1809
|
|
|
1595
|
-
declare const authorizations$
|
|
1810
|
+
declare const authorizations$1Z: readonly [{
|
|
1596
1811
|
readonly permissions: readonly ["active"];
|
|
1597
1812
|
readonly actor: {
|
|
1598
1813
|
readonly production: "eosio";
|
|
@@ -1602,7 +1817,7 @@ declare const authorizations$1X: readonly [{
|
|
|
1602
1817
|
/**
|
|
1603
1818
|
* Имя действия
|
|
1604
1819
|
*/
|
|
1605
|
-
declare const actionName$
|
|
1820
|
+
declare const actionName$1Z = "verificate";
|
|
1606
1821
|
/**
|
|
1607
1822
|
* @interface
|
|
1608
1823
|
*/
|
|
@@ -1610,17 +1825,17 @@ type IVerificateAccount = IVerificate;
|
|
|
1610
1825
|
|
|
1611
1826
|
type verificateAccount_IVerificateAccount = IVerificateAccount;
|
|
1612
1827
|
declare namespace verificateAccount {
|
|
1613
|
-
export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$
|
|
1828
|
+
export { type verificateAccount_IVerificateAccount as IVerificateAccount, actionName$1Z as actionName, authorizations$1Z as authorizations };
|
|
1614
1829
|
}
|
|
1615
1830
|
|
|
1616
|
-
declare const authorizations$
|
|
1831
|
+
declare const authorizations$1Y: readonly [{
|
|
1617
1832
|
readonly permissions: readonly ["active"];
|
|
1618
1833
|
readonly actor: "_username";
|
|
1619
1834
|
}];
|
|
1620
1835
|
/**
|
|
1621
1836
|
* Имя действия
|
|
1622
1837
|
*/
|
|
1623
|
-
declare const actionName$
|
|
1838
|
+
declare const actionName$1Y = "updateaccnt";
|
|
1624
1839
|
/**
|
|
1625
1840
|
* @interface
|
|
1626
1841
|
*/
|
|
@@ -1628,17 +1843,17 @@ type IUpdateAccount = IUpdateaccnt;
|
|
|
1628
1843
|
|
|
1629
1844
|
type updateAccount_IUpdateAccount = IUpdateAccount;
|
|
1630
1845
|
declare namespace updateAccount {
|
|
1631
|
-
export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$
|
|
1846
|
+
export { type updateAccount_IUpdateAccount as IUpdateAccount, actionName$1Y as actionName, authorizations$1Y as authorizations };
|
|
1632
1847
|
}
|
|
1633
1848
|
|
|
1634
|
-
declare const authorizations$
|
|
1849
|
+
declare const authorizations$1X: readonly [{
|
|
1635
1850
|
readonly permissions: readonly ["active"];
|
|
1636
1851
|
readonly actor: "_username";
|
|
1637
1852
|
}];
|
|
1638
1853
|
/**
|
|
1639
1854
|
* Имя действия
|
|
1640
1855
|
*/
|
|
1641
|
-
declare const actionName$
|
|
1856
|
+
declare const actionName$1X = "updatecoop";
|
|
1642
1857
|
/**
|
|
1643
1858
|
* @interface
|
|
1644
1859
|
*/
|
|
@@ -1646,13 +1861,13 @@ type IUpdateCoop = IUpdatecoop;
|
|
|
1646
1861
|
|
|
1647
1862
|
type updateCoop_IUpdateCoop = IUpdateCoop;
|
|
1648
1863
|
declare namespace updateCoop {
|
|
1649
|
-
export { type updateCoop_IUpdateCoop as IUpdateCoop, actionName$
|
|
1864
|
+
export { type updateCoop_IUpdateCoop as IUpdateCoop, actionName$1X as actionName, authorizations$1X as authorizations };
|
|
1650
1865
|
}
|
|
1651
1866
|
|
|
1652
1867
|
/**
|
|
1653
1868
|
* Требуется авторизация аккаунта {@link Actors._admin | администратора} c позитивным балансом AXON для оплаты аренды ресурсов.
|
|
1654
1869
|
*/
|
|
1655
|
-
declare const authorizations$
|
|
1870
|
+
declare const authorizations$1W: readonly [{
|
|
1656
1871
|
readonly permissions: readonly ["active", {
|
|
1657
1872
|
readonly contract: "_contract";
|
|
1658
1873
|
readonly action: "actionName";
|
|
@@ -1662,17 +1877,17 @@ declare const authorizations$1U: readonly [{
|
|
|
1662
1877
|
/**
|
|
1663
1878
|
* Имя действия
|
|
1664
1879
|
*/
|
|
1665
|
-
declare const actionName$
|
|
1880
|
+
declare const actionName$1W = "newaccount";
|
|
1666
1881
|
/**
|
|
1667
1882
|
* @interface
|
|
1668
1883
|
*/
|
|
1669
1884
|
type ICreateAccount$1 = INewaccount$1;
|
|
1670
1885
|
|
|
1671
1886
|
declare namespace createAccount$1 {
|
|
1672
|
-
export { type ICreateAccount$1 as ICreateAccount, actionName$
|
|
1887
|
+
export { type ICreateAccount$1 as ICreateAccount, actionName$1W as actionName, authorizations$1W as authorizations };
|
|
1673
1888
|
}
|
|
1674
1889
|
|
|
1675
|
-
declare const authorizations$
|
|
1890
|
+
declare const authorizations$1V: readonly [{
|
|
1676
1891
|
readonly permissions: readonly ["active", {
|
|
1677
1892
|
readonly contract: "_contract";
|
|
1678
1893
|
readonly action: "actionName";
|
|
@@ -1682,7 +1897,7 @@ declare const authorizations$1T: readonly [{
|
|
|
1682
1897
|
/**
|
|
1683
1898
|
* Имя действия
|
|
1684
1899
|
*/
|
|
1685
|
-
declare const actionName$
|
|
1900
|
+
declare const actionName$1V = "reguser";
|
|
1686
1901
|
/**
|
|
1687
1902
|
* @interface
|
|
1688
1903
|
*/
|
|
@@ -1690,10 +1905,10 @@ type IRegistrerUser = IReguser;
|
|
|
1690
1905
|
|
|
1691
1906
|
type registerUser_IRegistrerUser = IRegistrerUser;
|
|
1692
1907
|
declare namespace registerUser {
|
|
1693
|
-
export { type registerUser_IRegistrerUser as IRegistrerUser, actionName$
|
|
1908
|
+
export { type registerUser_IRegistrerUser as IRegistrerUser, actionName$1V as actionName, authorizations$1V as authorizations };
|
|
1694
1909
|
}
|
|
1695
1910
|
|
|
1696
|
-
declare const authorizations$
|
|
1911
|
+
declare const authorizations$1U: readonly [{
|
|
1697
1912
|
readonly permissions: readonly ["active", {
|
|
1698
1913
|
readonly contract: "_contract";
|
|
1699
1914
|
readonly action: "actionName";
|
|
@@ -1703,7 +1918,7 @@ declare const authorizations$1S: readonly [{
|
|
|
1703
1918
|
/**
|
|
1704
1919
|
* Имя действия
|
|
1705
1920
|
*/
|
|
1706
|
-
declare const actionName$
|
|
1921
|
+
declare const actionName$1U = "regcoop";
|
|
1707
1922
|
/**
|
|
1708
1923
|
* @interface
|
|
1709
1924
|
*/
|
|
@@ -1711,10 +1926,10 @@ type IRegisterCooperative = IRegcoop;
|
|
|
1711
1926
|
|
|
1712
1927
|
type registerCooperative_IRegisterCooperative = IRegisterCooperative;
|
|
1713
1928
|
declare namespace registerCooperative {
|
|
1714
|
-
export { type registerCooperative_IRegisterCooperative as IRegisterCooperative, actionName$
|
|
1929
|
+
export { type registerCooperative_IRegisterCooperative as IRegisterCooperative, actionName$1U as actionName, authorizations$1U as authorizations };
|
|
1715
1930
|
}
|
|
1716
1931
|
|
|
1717
|
-
declare const authorizations$
|
|
1932
|
+
declare const authorizations$1T: readonly [{
|
|
1718
1933
|
readonly permissions: readonly ["active"];
|
|
1719
1934
|
readonly actor: {
|
|
1720
1935
|
readonly production: "eosio";
|
|
@@ -1724,7 +1939,7 @@ declare const authorizations$1R: readonly [{
|
|
|
1724
1939
|
/**
|
|
1725
1940
|
* Имя действия
|
|
1726
1941
|
*/
|
|
1727
|
-
declare const actionName$
|
|
1942
|
+
declare const actionName$1T = "changekey";
|
|
1728
1943
|
/**
|
|
1729
1944
|
* @interface
|
|
1730
1945
|
*/
|
|
@@ -1732,13 +1947,13 @@ type IChangeKey = IChangekey;
|
|
|
1732
1947
|
|
|
1733
1948
|
type changeKey_IChangeKey = IChangeKey;
|
|
1734
1949
|
declare namespace changeKey {
|
|
1735
|
-
export { type changeKey_IChangeKey as IChangeKey, actionName$
|
|
1950
|
+
export { type changeKey_IChangeKey as IChangeKey, actionName$1T as actionName, authorizations$1T as authorizations };
|
|
1736
1951
|
}
|
|
1737
1952
|
|
|
1738
1953
|
/**
|
|
1739
1954
|
* Требуется авторизация администратора кооператива или пользователя.
|
|
1740
1955
|
*/
|
|
1741
|
-
declare const authorizations$
|
|
1956
|
+
declare const authorizations$1S: readonly [{
|
|
1742
1957
|
readonly permissions: readonly ["active", {
|
|
1743
1958
|
readonly contract: "_contract";
|
|
1744
1959
|
readonly action: "actionName";
|
|
@@ -1751,7 +1966,7 @@ declare const authorizations$1Q: readonly [{
|
|
|
1751
1966
|
/**
|
|
1752
1967
|
* Имя действия
|
|
1753
1968
|
*/
|
|
1754
|
-
declare const actionName$
|
|
1969
|
+
declare const actionName$1S = "joincoop";
|
|
1755
1970
|
/**
|
|
1756
1971
|
* @interface
|
|
1757
1972
|
*/
|
|
@@ -1759,10 +1974,10 @@ type IJoinCooperative = IJoincoop$1;
|
|
|
1759
1974
|
|
|
1760
1975
|
type joinCooperative_IJoinCooperative = IJoinCooperative;
|
|
1761
1976
|
declare namespace joinCooperative {
|
|
1762
|
-
export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$
|
|
1977
|
+
export { type joinCooperative_IJoinCooperative as IJoinCooperative, actionName$1S as actionName, authorizations$1S as authorizations };
|
|
1763
1978
|
}
|
|
1764
1979
|
|
|
1765
|
-
declare const authorizations$
|
|
1980
|
+
declare const authorizations$1R: readonly [{
|
|
1766
1981
|
readonly permissions: readonly ["active"];
|
|
1767
1982
|
readonly actor: {
|
|
1768
1983
|
readonly production: "eosio";
|
|
@@ -1772,17 +1987,17 @@ declare const authorizations$1P: readonly [{
|
|
|
1772
1987
|
/**
|
|
1773
1988
|
* Имя действия
|
|
1774
1989
|
*/
|
|
1775
|
-
declare const actionName$
|
|
1990
|
+
declare const actionName$1R = "init";
|
|
1776
1991
|
/**
|
|
1777
1992
|
* @interface
|
|
1778
1993
|
*/
|
|
1779
1994
|
type IInit$4 = IInit$5;
|
|
1780
1995
|
|
|
1781
1996
|
declare namespace init$2 {
|
|
1782
|
-
export { type IInit$4 as IInit, actionName$
|
|
1997
|
+
export { type IInit$4 as IInit, actionName$1R as actionName, authorizations$1R as authorizations };
|
|
1783
1998
|
}
|
|
1784
1999
|
|
|
1785
|
-
declare const authorizations$
|
|
2000
|
+
declare const authorizations$1Q: readonly [{
|
|
1786
2001
|
readonly permissions: readonly ["active", {
|
|
1787
2002
|
readonly contract: "_contract";
|
|
1788
2003
|
readonly action: "actionName";
|
|
@@ -1792,7 +2007,7 @@ declare const authorizations$1O: readonly [{
|
|
|
1792
2007
|
/**
|
|
1793
2008
|
* Имя действия
|
|
1794
2009
|
*/
|
|
1795
|
-
declare const actionName$
|
|
2010
|
+
declare const actionName$1Q = "adduser";
|
|
1796
2011
|
/**
|
|
1797
2012
|
* @interface
|
|
1798
2013
|
*/
|
|
@@ -1800,10 +2015,10 @@ type IAddUser = IAdduser$1;
|
|
|
1800
2015
|
|
|
1801
2016
|
type addUser_IAddUser = IAddUser;
|
|
1802
2017
|
declare namespace addUser {
|
|
1803
|
-
export { type addUser_IAddUser as IAddUser, actionName$
|
|
2018
|
+
export { type addUser_IAddUser as IAddUser, actionName$1Q as actionName, authorizations$1Q as authorizations };
|
|
1804
2019
|
}
|
|
1805
2020
|
|
|
1806
|
-
declare const authorizations$
|
|
2021
|
+
declare const authorizations$1P: readonly [{
|
|
1807
2022
|
readonly permissions: readonly ["active", {
|
|
1808
2023
|
readonly contract: "_contract";
|
|
1809
2024
|
readonly action: "actionName";
|
|
@@ -1813,7 +2028,7 @@ declare const authorizations$1N: readonly [{
|
|
|
1813
2028
|
/**
|
|
1814
2029
|
* Имя действия
|
|
1815
2030
|
*/
|
|
1816
|
-
declare const actionName$
|
|
2031
|
+
declare const actionName$1P = "stcoopstatus";
|
|
1817
2032
|
/**
|
|
1818
2033
|
* @interface
|
|
1819
2034
|
*/
|
|
@@ -1821,10 +2036,10 @@ type ISetCoopStatus = IStcoopstatus;
|
|
|
1821
2036
|
|
|
1822
2037
|
type setCoopStatus_ISetCoopStatus = ISetCoopStatus;
|
|
1823
2038
|
declare namespace setCoopStatus {
|
|
1824
|
-
export { type setCoopStatus_ISetCoopStatus as ISetCoopStatus, actionName$
|
|
2039
|
+
export { type setCoopStatus_ISetCoopStatus as ISetCoopStatus, actionName$1P as actionName, authorizations$1P as authorizations };
|
|
1825
2040
|
}
|
|
1826
2041
|
|
|
1827
|
-
declare const authorizations$
|
|
2042
|
+
declare const authorizations$1O: readonly [{
|
|
1828
2043
|
readonly permissions: readonly ["active", {
|
|
1829
2044
|
readonly contract: "_contract";
|
|
1830
2045
|
readonly action: "actionName";
|
|
@@ -1834,7 +2049,7 @@ declare const authorizations$1M: readonly [{
|
|
|
1834
2049
|
/**
|
|
1835
2050
|
* Имя действия
|
|
1836
2051
|
*/
|
|
1837
|
-
declare const actionName$
|
|
2052
|
+
declare const actionName$1O = "delcoop";
|
|
1838
2053
|
/**
|
|
1839
2054
|
* @interface
|
|
1840
2055
|
*/
|
|
@@ -1842,7 +2057,45 @@ type IDeleteCooperative = IDelcoop;
|
|
|
1842
2057
|
|
|
1843
2058
|
type deleteCooperative_IDeleteCooperative = IDeleteCooperative;
|
|
1844
2059
|
declare namespace deleteCooperative {
|
|
1845
|
-
export { type deleteCooperative_IDeleteCooperative as IDeleteCooperative, actionName$
|
|
2060
|
+
export { type deleteCooperative_IDeleteCooperative as IDeleteCooperative, actionName$1O as actionName, authorizations$1O as authorizations };
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
declare const authorizations$1N: readonly [{
|
|
2064
|
+
readonly permissions: readonly ["active"];
|
|
2065
|
+
readonly actor: "_coopname";
|
|
2066
|
+
}];
|
|
2067
|
+
/**
|
|
2068
|
+
* Имя действия
|
|
2069
|
+
*/
|
|
2070
|
+
declare const actionName$1N = "enabranches";
|
|
2071
|
+
/**
|
|
2072
|
+
* @interface
|
|
2073
|
+
* @private
|
|
2074
|
+
*/
|
|
2075
|
+
type IEnableBranches = IEnabranches;
|
|
2076
|
+
|
|
2077
|
+
type enableBranches_IEnableBranches = IEnableBranches;
|
|
2078
|
+
declare namespace enableBranches {
|
|
2079
|
+
export { type enableBranches_IEnableBranches as IEnableBranches, actionName$1N as actionName, authorizations$1N as authorizations };
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
declare const authorizations$1M: readonly [{
|
|
2083
|
+
readonly permissions: readonly ["active"];
|
|
2084
|
+
readonly actor: "_coopname";
|
|
2085
|
+
}];
|
|
2086
|
+
/**
|
|
2087
|
+
* Имя действия
|
|
2088
|
+
*/
|
|
2089
|
+
declare const actionName$1M = "disbranches";
|
|
2090
|
+
/**
|
|
2091
|
+
* @interface
|
|
2092
|
+
* @private
|
|
2093
|
+
*/
|
|
2094
|
+
type IDisableBranches = IDisbranches;
|
|
2095
|
+
|
|
2096
|
+
type disableBranches_IDisableBranches = IDisableBranches;
|
|
2097
|
+
declare namespace disableBranches {
|
|
2098
|
+
export { type disableBranches_IDisableBranches as IDisableBranches, actionName$1M as actionName, authorizations$1M as authorizations };
|
|
1846
2099
|
}
|
|
1847
2100
|
|
|
1848
2101
|
/**
|
|
@@ -1850,7 +2103,7 @@ declare namespace deleteCooperative {
|
|
|
1850
2103
|
*/
|
|
1851
2104
|
|
|
1852
2105
|
declare namespace index$F {
|
|
1853
|
-
export { addUser as AddUser, changeKey as ChangeKey, createAccount$1 as CreateAccount, deleteCooperative as DeleteCooperative, init$2 as Init, joinCooperative as JoinCooperative, registerCooperative as RegisterCooperative, registerUser as RegisterUser, setCoopStatus as SetCoopStatus, updateAccount as UpdateAccount, updateCoop as UpdateCoop, verificateAccount as VerificateAccount };
|
|
2106
|
+
export { addUser as AddUser, changeKey as ChangeKey, createAccount$1 as CreateAccount, deleteCooperative as DeleteCooperative, disableBranches as DisableBranches, enableBranches as EnableBranches, init$2 as Init, joinCooperative as JoinCooperative, registerCooperative as RegisterCooperative, registerUser as RegisterUser, setCoopStatus as SetCoopStatus, updateAccount as UpdateAccount, updateCoop as UpdateCoop, verificateAccount as VerificateAccount };
|
|
1854
2107
|
}
|
|
1855
2108
|
|
|
1856
2109
|
/**
|
|
@@ -2318,15 +2571,6 @@ interface ICreateboard$1 {
|
|
|
2318
2571
|
name: string;
|
|
2319
2572
|
description: string;
|
|
2320
2573
|
}
|
|
2321
|
-
interface ICreatebranch {
|
|
2322
|
-
coopname: IName$4;
|
|
2323
|
-
chairman: IName$4;
|
|
2324
|
-
braname: IName$4;
|
|
2325
|
-
name: string;
|
|
2326
|
-
description: string;
|
|
2327
|
-
authorizer: IName$4;
|
|
2328
|
-
trusted: IName$4[];
|
|
2329
|
-
}
|
|
2330
2574
|
interface ICreateprog {
|
|
2331
2575
|
coopname: IName$4;
|
|
2332
2576
|
username: IName$4;
|
|
@@ -2369,11 +2613,6 @@ interface IDeladdress {
|
|
|
2369
2613
|
chairman: IName$4;
|
|
2370
2614
|
address_id: IUint64$2;
|
|
2371
2615
|
}
|
|
2372
|
-
interface IDeletebranch {
|
|
2373
|
-
coopname: IName$4;
|
|
2374
|
-
chairman: IName$4;
|
|
2375
|
-
braname: IName$4;
|
|
2376
|
-
}
|
|
2377
2616
|
interface IDisableprog {
|
|
2378
2617
|
coopname: IName$4;
|
|
2379
2618
|
program_id: IUint64$2;
|
|
@@ -2397,15 +2636,6 @@ interface IEditaddress {
|
|
|
2397
2636
|
address_id: IUint64$2;
|
|
2398
2637
|
data: IAddressData;
|
|
2399
2638
|
}
|
|
2400
|
-
interface IEditbranch {
|
|
2401
|
-
coopname: IName$4;
|
|
2402
|
-
chairman: IName$4;
|
|
2403
|
-
braname: IName$4;
|
|
2404
|
-
name: string;
|
|
2405
|
-
description: string;
|
|
2406
|
-
authorizer: IName$4;
|
|
2407
|
-
trusted: IName$4[];
|
|
2408
|
-
}
|
|
2409
2639
|
interface IEditprog {
|
|
2410
2640
|
coopname: IName$4;
|
|
2411
2641
|
username: IName$4;
|
|
@@ -2641,14 +2871,11 @@ type soviet_IChange = IChange;
|
|
|
2641
2871
|
type soviet_ICoagreement = ICoagreement;
|
|
2642
2872
|
type soviet_IConfirmagree = IConfirmagree;
|
|
2643
2873
|
type soviet_ICreaddress = ICreaddress;
|
|
2644
|
-
type soviet_ICreatebranch = ICreatebranch;
|
|
2645
2874
|
type soviet_ICreateprog = ICreateprog;
|
|
2646
2875
|
type soviet_IDeclineagree = IDeclineagree;
|
|
2647
2876
|
type soviet_IDeladdress = IDeladdress;
|
|
2648
|
-
type soviet_IDeletebranch = IDeletebranch;
|
|
2649
2877
|
type soviet_IDisableprog = IDisableprog;
|
|
2650
2878
|
type soviet_IEditaddress = IEditaddress;
|
|
2651
|
-
type soviet_IEditbranch = IEditbranch;
|
|
2652
2879
|
type soviet_IEditprog = IEditprog;
|
|
2653
2880
|
type soviet_IFundwithdraw = IFundwithdraw;
|
|
2654
2881
|
type soviet_IJoincoop = IJoincoop;
|
|
@@ -2680,7 +2907,7 @@ type soviet_IVoteagainst = IVoteagainst;
|
|
|
2680
2907
|
type soviet_IVotefor = IVotefor;
|
|
2681
2908
|
type soviet_IWithdraw = IWithdraw;
|
|
2682
2909
|
declare namespace soviet {
|
|
2683
|
-
export type { soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal, IAddress$1 as IAddress, soviet_IAddressData as IAddressData, soviet_IAddstaff as IAddstaff, soviet_IAdduser as IAdduser, IAgreement$1 as IAgreement, IAsset$2 as IAsset, IAuthorize$3 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, soviet_IBlock as IBlock, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelreg as ICancelreg, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, IChecksum256$3 as IChecksum256, soviet_ICoagreement as ICoagreement, soviet_IConfirmagree as IConfirmagree, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, soviet_ICreaddress as ICreaddress, ICreateboard$1 as ICreateboard,
|
|
2910
|
+
export type { soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal, IAddress$1 as IAddress, soviet_IAddressData as IAddressData, soviet_IAddstaff as IAddstaff, soviet_IAdduser as IAdduser, IAgreement$1 as IAgreement, IAsset$2 as IAsset, IAuthorize$3 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, soviet_IBlock as IBlock, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelreg as ICancelreg, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, IChecksum256$3 as IChecksum256, soviet_ICoagreement as ICoagreement, soviet_IConfirmagree as IConfirmagree, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, soviet_ICreaddress as ICreaddress, ICreateboard$1 as ICreateboard, soviet_ICreateprog as ICreateprog, IDecision$1 as IDecision, soviet_IDeclineagree as IDeclineagree, soviet_IDeladdress as IDeladdress, soviet_IDisableprog as IDisableprog, IDisautomate$1 as IDisautomate, IDocument$1 as IDocument, soviet_IEditaddress as IEditaddress, soviet_IEditprog as IEditprog, IExec$4 as IExec, soviet_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_IUnblock as IUnblock, soviet_IUnblockbal as IUnblockbal, soviet_IUpdateboard as IUpdateboard, IValidate$1 as IValidate, soviet_IVoteagainst as IVoteagainst, soviet_IVotefor as IVotefor, soviet_IWithdraw as IWithdraw };
|
|
2684
2911
|
}
|
|
2685
2912
|
|
|
2686
2913
|
/**
|
|
@@ -6777,43 +7004,6 @@ declare namespace index$e {
|
|
|
6777
7004
|
export { index$g as Actions, system as Interfaces, index$f as Tables, index$e_contractName as contractName };
|
|
6778
7005
|
}
|
|
6779
7006
|
|
|
6780
|
-
type Currency = 'RUB' | 'Other';
|
|
6781
|
-
interface IBankAccount {
|
|
6782
|
-
currency: Currency;
|
|
6783
|
-
card_number?: string;
|
|
6784
|
-
bank_name: string;
|
|
6785
|
-
account_number: string;
|
|
6786
|
-
details: {
|
|
6787
|
-
bik: string;
|
|
6788
|
-
corr: string;
|
|
6789
|
-
kpp: string;
|
|
6790
|
-
};
|
|
6791
|
-
}
|
|
6792
|
-
interface ISbpDetails {
|
|
6793
|
-
phone: string;
|
|
6794
|
-
}
|
|
6795
|
-
type MethodTypes = 'sbp' | 'bank_transfer';
|
|
6796
|
-
interface IPaymentData {
|
|
6797
|
-
username: string;
|
|
6798
|
-
method_id: number;
|
|
6799
|
-
user_type: 'individual' | 'entrepreneur' | 'organization';
|
|
6800
|
-
method_type: MethodTypes;
|
|
6801
|
-
is_default: boolean;
|
|
6802
|
-
data: ISbpDetails | IBankAccount;
|
|
6803
|
-
deleted?: boolean;
|
|
6804
|
-
block_num?: number;
|
|
6805
|
-
}
|
|
6806
|
-
|
|
6807
|
-
type index$d_Currency = Currency;
|
|
6808
|
-
type index$d_IBankAccount = IBankAccount;
|
|
6809
|
-
type index$d_IPaymentData = IPaymentData;
|
|
6810
|
-
type index$d_ISbpDetails = ISbpDetails;
|
|
6811
|
-
type index$d_MethodTypes = MethodTypes;
|
|
6812
|
-
declare namespace index$d {
|
|
6813
|
-
export type { index$d_Currency as Currency, index$d_IBankAccount as IBankAccount, index$d_IPaymentData as IPaymentData, index$d_ISbpDetails as ISbpDetails, index$d_MethodTypes as MethodTypes };
|
|
6814
|
-
}
|
|
6815
|
-
|
|
6816
|
-
type Country = 'Russia' | 'Other';
|
|
6817
7007
|
interface IPassportData {
|
|
6818
7008
|
series: number;
|
|
6819
7009
|
number: number;
|
|
@@ -6837,7 +7027,6 @@ interface IIndividualData {
|
|
|
6837
7027
|
interface IOrganizationData {
|
|
6838
7028
|
username: string;
|
|
6839
7029
|
type: 'coop' | 'ooo' | 'oao' | 'zao' | 'pao' | 'ao';
|
|
6840
|
-
is_cooperative: boolean;
|
|
6841
7030
|
short_name: string;
|
|
6842
7031
|
full_name: string;
|
|
6843
7032
|
represented_by: {
|
|
@@ -6847,9 +7036,10 @@ interface IOrganizationData {
|
|
|
6847
7036
|
position: string;
|
|
6848
7037
|
based_on: string;
|
|
6849
7038
|
};
|
|
6850
|
-
country:
|
|
7039
|
+
country: string;
|
|
6851
7040
|
city: string;
|
|
6852
7041
|
full_address: string;
|
|
7042
|
+
fact_address: string;
|
|
6853
7043
|
phone: string;
|
|
6854
7044
|
email: string;
|
|
6855
7045
|
details: {
|
|
@@ -6857,7 +7047,6 @@ interface IOrganizationData {
|
|
|
6857
7047
|
ogrn: string;
|
|
6858
7048
|
kpp: string;
|
|
6859
7049
|
};
|
|
6860
|
-
bank_account: IBankAccount;
|
|
6861
7050
|
block_num?: number;
|
|
6862
7051
|
deleted?: boolean;
|
|
6863
7052
|
}
|
|
@@ -6869,14 +7058,13 @@ interface IEntrepreneurData {
|
|
|
6869
7058
|
birthdate: string;
|
|
6870
7059
|
phone: string;
|
|
6871
7060
|
email: string;
|
|
6872
|
-
country:
|
|
7061
|
+
country: string;
|
|
6873
7062
|
city: string;
|
|
6874
7063
|
full_address: string;
|
|
6875
7064
|
details: {
|
|
6876
7065
|
inn: string;
|
|
6877
7066
|
ogrn: string;
|
|
6878
7067
|
};
|
|
6879
|
-
bank_account: IBankAccount;
|
|
6880
7068
|
block_num?: number;
|
|
6881
7069
|
deleted?: boolean;
|
|
6882
7070
|
}
|
|
@@ -6886,15 +7074,14 @@ interface IAccountMeta {
|
|
|
6886
7074
|
email: string;
|
|
6887
7075
|
}
|
|
6888
7076
|
|
|
6889
|
-
type index$
|
|
6890
|
-
type index$
|
|
6891
|
-
type index$
|
|
6892
|
-
type index$
|
|
6893
|
-
type index$
|
|
6894
|
-
type index$
|
|
6895
|
-
|
|
6896
|
-
|
|
6897
|
-
export type { index$c_Country as Country, index$c_IAccountMeta as IAccountMeta, index$c_IEntrepreneurData as IEntrepreneurData, index$c_IIndividualData as IIndividualData, index$c_IOrganizationData as IOrganizationData, index$c_IPassportData as IPassportData, index$c_IUserData as IUserData };
|
|
7077
|
+
type index$d_IAccountMeta = IAccountMeta;
|
|
7078
|
+
type index$d_IEntrepreneurData = IEntrepreneurData;
|
|
7079
|
+
type index$d_IIndividualData = IIndividualData;
|
|
7080
|
+
type index$d_IOrganizationData = IOrganizationData;
|
|
7081
|
+
type index$d_IPassportData = IPassportData;
|
|
7082
|
+
type index$d_IUserData = IUserData;
|
|
7083
|
+
declare namespace index$d {
|
|
7084
|
+
export type { index$d_IAccountMeta as IAccountMeta, index$d_IEntrepreneurData as IEntrepreneurData, index$d_IIndividualData as IIndividualData, index$d_IOrganizationData as IOrganizationData, index$d_IPassportData as IPassportData, index$d_IUserData as IUserData };
|
|
6898
7085
|
}
|
|
6899
7086
|
|
|
6900
7087
|
interface ITable {
|
|
@@ -6960,16 +7147,19 @@ interface IGetTables {
|
|
|
6960
7147
|
limit: number;
|
|
6961
7148
|
}
|
|
6962
7149
|
|
|
6963
|
-
type index$
|
|
6964
|
-
type index$
|
|
6965
|
-
type index$
|
|
6966
|
-
type index$
|
|
6967
|
-
type index$
|
|
6968
|
-
type index$
|
|
6969
|
-
declare namespace index$
|
|
6970
|
-
export type { index$
|
|
7150
|
+
type index$c_IAction = IAction;
|
|
7151
|
+
type index$c_IExtendedAction = IExtendedAction;
|
|
7152
|
+
type index$c_IExtendedTable = IExtendedTable;
|
|
7153
|
+
type index$c_IGetActions = IGetActions;
|
|
7154
|
+
type index$c_IGetTables = IGetTables;
|
|
7155
|
+
type index$c_ITable = ITable;
|
|
7156
|
+
declare namespace index$c {
|
|
7157
|
+
export type { index$c_IAction as IAction, index$c_IExtendedAction as IExtendedAction, index$c_IExtendedTable as IExtendedTable, index$c_IGetActions as IGetActions, index$c_IGetTables as IGetTables, index$c_ITable as ITable };
|
|
6971
7158
|
}
|
|
6972
7159
|
|
|
7160
|
+
interface IGenerationOptions {
|
|
7161
|
+
skip_save?: boolean;
|
|
7162
|
+
}
|
|
6973
7163
|
type LangType = 'ru';
|
|
6974
7164
|
interface IChainDocument {
|
|
6975
7165
|
hash: string;
|
|
@@ -7073,30 +7263,27 @@ interface IDecisionData {
|
|
|
7073
7263
|
votes_abstained: number;
|
|
7074
7264
|
voters_percent: number;
|
|
7075
7265
|
}
|
|
7076
|
-
interface IGenerationOptions {
|
|
7077
|
-
skip_save: boolean;
|
|
7078
|
-
}
|
|
7079
7266
|
|
|
7080
|
-
type index$
|
|
7081
|
-
type index$
|
|
7082
|
-
type index$
|
|
7083
|
-
type index$
|
|
7084
|
-
type index$
|
|
7085
|
-
type index$
|
|
7086
|
-
type index$
|
|
7087
|
-
type index$
|
|
7088
|
-
type index$
|
|
7089
|
-
type index$
|
|
7090
|
-
type index$
|
|
7091
|
-
type index$
|
|
7092
|
-
type index$
|
|
7093
|
-
type index$
|
|
7094
|
-
type index$
|
|
7095
|
-
type index$
|
|
7096
|
-
type index$
|
|
7097
|
-
type index$
|
|
7098
|
-
declare namespace index$
|
|
7099
|
-
export type { index$
|
|
7267
|
+
type index$b_IAgenda = IAgenda;
|
|
7268
|
+
type index$b_IChainDocument = IChainDocument;
|
|
7269
|
+
type index$b_IComplexAct = IComplexAct;
|
|
7270
|
+
type index$b_IComplexAgenda = IComplexAgenda;
|
|
7271
|
+
type index$b_IComplexDecision = IComplexDecision;
|
|
7272
|
+
type index$b_IComplexDocument = IComplexDocument;
|
|
7273
|
+
type index$b_IComplexStatement = IComplexStatement;
|
|
7274
|
+
type index$b_IDecisionData = IDecisionData;
|
|
7275
|
+
type index$b_IGenerate = IGenerate;
|
|
7276
|
+
type index$b_IGenerateJoinCoop = IGenerateJoinCoop;
|
|
7277
|
+
type index$b_IGenerateJoinCoopDecision = IGenerateJoinCoopDecision;
|
|
7278
|
+
type index$b_IGenerateWalletAgreement = IGenerateWalletAgreement;
|
|
7279
|
+
type index$b_IGeneratedDocument = IGeneratedDocument;
|
|
7280
|
+
type index$b_IGenerationOptions = IGenerationOptions;
|
|
7281
|
+
type index$b_IGetComplexDocuments = IGetComplexDocuments;
|
|
7282
|
+
type index$b_IGetResponse<T> = IGetResponse<T>;
|
|
7283
|
+
type index$b_IMetaDocument = IMetaDocument;
|
|
7284
|
+
type index$b_LangType = LangType;
|
|
7285
|
+
declare namespace index$b {
|
|
7286
|
+
export type { index$b_IAgenda as IAgenda, index$b_IChainDocument as IChainDocument, index$b_IComplexAct as IComplexAct, index$b_IComplexAgenda as IComplexAgenda, index$b_IComplexDecision as IComplexDecision, index$b_IComplexDocument as IComplexDocument, index$b_IComplexStatement as IComplexStatement, index$b_IDecisionData as IDecisionData, index$b_IGenerate as IGenerate, index$b_IGenerateJoinCoop as IGenerateJoinCoop, index$b_IGenerateJoinCoopDecision as IGenerateJoinCoopDecision, index$b_IGenerateWalletAgreement as IGenerateWalletAgreement, index$b_IGeneratedDocument as IGeneratedDocument, index$b_IGenerationOptions as IGenerationOptions, index$b_IGetComplexDocuments as IGetComplexDocuments, index$b_IGetResponse as IGetResponse, index$b_IMetaDocument as IMetaDocument, index$b_LangType as LangType };
|
|
7100
7287
|
}
|
|
7101
7288
|
|
|
7102
7289
|
interface ICooperativeData extends IOrganizationData, ICooperative {
|
|
@@ -7161,15 +7348,52 @@ interface IVars {
|
|
|
7161
7348
|
protocol_number: string;
|
|
7162
7349
|
protocol_day_month_year: string;
|
|
7163
7350
|
};
|
|
7351
|
+
coopenomics_agreement?: {
|
|
7352
|
+
protocol_number: string;
|
|
7353
|
+
protocol_day_month_year: string;
|
|
7354
|
+
};
|
|
7355
|
+
}
|
|
7356
|
+
|
|
7357
|
+
type index$a_IAnnounce = IAnnounce;
|
|
7358
|
+
type index$a_IContacts = IContacts;
|
|
7359
|
+
type index$a_ICooperativeData = ICooperativeData;
|
|
7360
|
+
type index$a_IVars = IVars;
|
|
7361
|
+
type index$a_MembersData = MembersData;
|
|
7362
|
+
declare namespace index$a {
|
|
7363
|
+
export type { index$a_IAnnounce as IAnnounce, index$a_IContacts as IContacts, index$a_ICooperativeData as ICooperativeData, index$a_IVars as IVars, index$a_MembersData as MembersData };
|
|
7364
|
+
}
|
|
7365
|
+
|
|
7366
|
+
interface IBankAccount {
|
|
7367
|
+
currency: string;
|
|
7368
|
+
card_number?: string;
|
|
7369
|
+
bank_name: string;
|
|
7370
|
+
account_number: string;
|
|
7371
|
+
details: {
|
|
7372
|
+
bik: string;
|
|
7373
|
+
corr: string;
|
|
7374
|
+
kpp: string;
|
|
7375
|
+
};
|
|
7376
|
+
}
|
|
7377
|
+
interface ISbpDetails {
|
|
7378
|
+
phone: string;
|
|
7379
|
+
}
|
|
7380
|
+
type MethodTypes = 'sbp' | 'bank_transfer';
|
|
7381
|
+
interface IPaymentData {
|
|
7382
|
+
username: string;
|
|
7383
|
+
method_id: string;
|
|
7384
|
+
method_type: MethodTypes;
|
|
7385
|
+
is_default: boolean;
|
|
7386
|
+
data: ISbpDetails | IBankAccount;
|
|
7387
|
+
deleted?: boolean;
|
|
7388
|
+
block_num?: number;
|
|
7164
7389
|
}
|
|
7165
7390
|
|
|
7166
|
-
type index$
|
|
7167
|
-
type index$
|
|
7168
|
-
type index$
|
|
7169
|
-
type index$
|
|
7170
|
-
type index$9_MembersData = MembersData;
|
|
7391
|
+
type index$9_IBankAccount = IBankAccount;
|
|
7392
|
+
type index$9_IPaymentData = IPaymentData;
|
|
7393
|
+
type index$9_ISbpDetails = ISbpDetails;
|
|
7394
|
+
type index$9_MethodTypes = MethodTypes;
|
|
7171
7395
|
declare namespace index$9 {
|
|
7172
|
-
export type { index$
|
|
7396
|
+
export type { index$9_IBankAccount as IBankAccount, index$9_IPaymentData as IPaymentData, index$9_ISbpDetails as ISbpDetails, index$9_MethodTypes as MethodTypes };
|
|
7173
7397
|
}
|
|
7174
7398
|
|
|
7175
7399
|
declare const registry_id$6 = 1;
|
|
@@ -7432,7 +7656,9 @@ interface Action$1 extends IGenerate {
|
|
|
7432
7656
|
interface Model$1 {
|
|
7433
7657
|
type: string;
|
|
7434
7658
|
individual?: IIndividualData;
|
|
7435
|
-
organization?: IOrganizationData
|
|
7659
|
+
organization?: IOrganizationData & {
|
|
7660
|
+
bank_account: IBankAccount;
|
|
7661
|
+
};
|
|
7436
7662
|
entrepreneur?: IEntrepreneurData;
|
|
7437
7663
|
coop: ICooperativeData;
|
|
7438
7664
|
meta: IMetaDocument;
|
|
@@ -7441,7 +7667,7 @@ interface Model$1 {
|
|
|
7441
7667
|
}
|
|
7442
7668
|
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";
|
|
7443
7669
|
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";
|
|
7444
|
-
declare const context$1 = "<style>\n.digital-document h1 {\nmargin: 0px;\ntext-align:center;\n}\n.digital-document {padding: 20px;}\n.subheader {\npadding-bottom: 20px;\n}\n</style>\n<div class=\"digital-document\">\n<div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.participant_application.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }}</p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.participant_application.protocol_day_month_year }}</p>\n</div>\n\n{% if type == 'individual' %}\n<h1 class=\"header\">{% trans 'application_individual' %}</h1>\n<p style=\"text-align: center\" class=\"subheader\">{% trans 'in' %} {{ coop.full_name }}<p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n<p>{% trans 'to_council_of' %} {{ coop.short_name }} {% trans 'from' %} {{ individual.last_name }} {{ individual.first_name }} {{ individual.middle_name }}, {% trans 'birthdate' %} {{ individual.birthdate }}, {% trans 'registration_address' %} {{ individual.full_address }}, {% trans 'phone_and_email_notice', individual.phone, individual.email %}{% if vars.passport_request == 'yes' %} {% trans 'passport' %} \u2116 {{individual.passport.series}} {{individual.passport.number}}, \n{% trans 'passport_code' %} {{individual.passport.code}}, {% trans 'passport_issued' %} {{individual.passport.issued_by}} {% trans 'passport_from' %} {{individual.passport.issued_at}}. {% endif %}</p>\n<p>{% trans 'request_to_join' %} {{ coop.full_name }}. {% trans 'acknowledge_documents_individual' %} {% if coop.is_branched %}</p> \n<p>{% trans 'authorize_chairman_branch', 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.org_initial, coop.org_minimum %}</p>\n<p>{% trans 'agreement_on_sms_email_notice_legal_entity' %}</p>\n<div class=\"signature\">\n<img style=\"max-width: 150px;\" src=\"{{ signature }}\"/>\n<p>{% trans 'signature' %} </p>\n<p style=\"text-align: right;\">{{ organization.represented_by.last_name }} {{ organization.represented_by.first_name }} {{ organization.represented_by.middle_name }}</p>\n</div>\n\n{% endif %}\n</div>\n";
|
|
7670
|
+
declare const context$1 = "<style>\n.digital-document h1 {\nmargin: 0px;\ntext-align:center;\n}\n.digital-document {padding: 20px;}\n.subheader {\npadding-bottom: 20px;\n}\n</style>\n<div class=\"digital-document\">\n<div style=\"text-align: right; margin:\">\n<p style=\"margin: 0px !important\">{% trans 'APPROVED' %}</p>\n<p style=\"margin: 0px !important\">{% trans 'protocol' %} {{ vars.participant_application.protocol_number }}</p>\n<p style=\"margin: 0px !important\">{{ coop.full_name }}</p>\n<p style=\"margin: 0px !important\">{% trans 'from' %} {{ vars.participant_application.protocol_day_month_year }}</p>\n</div>\n\n{% if type == 'individual' %}\n<h1 class=\"header\">{% trans 'application_individual' %}</h1>\n<p style=\"text-align: center\" class=\"subheader\">{% trans 'in' %} {{ coop.full_name }}<p>\n<p style=\"text-align: right\">{{ meta.created_at }}, {{coop.city}}</p>\n<p>{% trans 'to_council_of' %} {{ coop.short_name }} {% trans 'from' %} {{ individual.last_name }} {{ individual.first_name }} {{ individual.middle_name }}, {% trans 'birthdate' %} {{ individual.birthdate }}, {% trans 'registration_address' %} {{ individual.full_address }}, {% trans 'phone_and_email_notice', individual.phone, individual.email %}{% if vars.passport_request == 'yes' %} {% trans 'passport' %} \u2116 {{individual.passport.series}} {{individual.passport.number}}, \n{% trans 'passport_code' %} {{individual.passport.code}}, {% trans 'passport_issued' %} {{individual.passport.issued_by}} {% trans 'passport_from' %} {{individual.passport.issued_at}}. {% endif %}</p>\n<p>{% trans 'request_to_join' %} {{ coop.full_name }}. {% trans 'acknowledge_documents_individual' %} {% if coop.is_branched %}</p> \n<p>{% trans 'authorize_chairman_branch', 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 'fact_address' %}: {{organization.fact_address}}, {% trans 'legal_entity_details', organization.details.inn, organization.details.ogrn, organization.bank_account.account_number, organization.bank_account.details.kpp, organization.bank_account.details.corr, organization.bank_account.details.bik, organization.bank_account.bank_name %}, {% trans 'phone_and_email_notice', organization.phone, organization.email %}</p>\n<p>{% trans 'request_to_join_legal_entity', organization.represented_by.position, organization.represented_by.last_name, organization.represented_by.first_name, organization.represented_by.middle_name, organization.represented_by.based_on %} {{ coop.full_name }}.</p>\n<p>{% trans 'acknowledge_documents_legal_entity' %}</p> \n<p>{% if coop.is_branched %}{% trans 'authorize_chairman_branch_organization', organization.branch_name %} {% endif %}</p>\n<p>{% trans 'obligation_to_pay_legal_entity', coop.org_initial, coop.org_minimum %}</p>\n<p>{% trans 'agreement_on_sms_email_notice_legal_entity' %}</p>\n<div class=\"signature\">\n<img style=\"max-width: 150px;\" src=\"{{ signature }}\"/>\n<p>{% trans 'signature' %} </p>\n<p style=\"text-align: right;\">{{ organization.represented_by.last_name }} {{ organization.represented_by.first_name }} {{ organization.represented_by.middle_name }}</p>\n</div>\n\n{% endif %}\n</div>\n";
|
|
7445
7671
|
declare const translations$1: {
|
|
7446
7672
|
ru: {
|
|
7447
7673
|
from: string;
|
|
@@ -7478,6 +7704,7 @@ declare const translations$1: {
|
|
|
7478
7704
|
passport_code: string;
|
|
7479
7705
|
passport_issued: string;
|
|
7480
7706
|
passport_from: string;
|
|
7707
|
+
fact_address: string;
|
|
7481
7708
|
};
|
|
7482
7709
|
};
|
|
7483
7710
|
|
|
@@ -7551,7 +7778,7 @@ declare namespace index$1 {
|
|
|
7551
7778
|
}
|
|
7552
7779
|
|
|
7553
7780
|
declare namespace index {
|
|
7554
|
-
export { index$
|
|
7781
|
+
export { index$c as Blockchain, index$b as Document, index$a as Model, index$9 as Payments, index$1 as Registry, index$d as Users };
|
|
7555
7782
|
}
|
|
7556
7783
|
|
|
7557
|
-
export { index as Cooperative, index$
|
|
7784
|
+
export { index$M as BranchContract, index as Cooperative, index$P as DraftContract, index$J as FundContract, index$G as GatewayContract, index$m as MarketContract, index$j as MsigContract, index$D as RegistratorContract, index$p as SovietContract, index$e as SystemContract, index$A as TokenContract, index$h as WrapContract, index$S as _Common };
|