cooptypes 0.5.5 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +38 -48
- package/dist/index.d.cts +246 -297
- package/dist/index.d.mts +246 -297
- package/dist/index.d.ts +246 -297
- package/dist/index.mjs +38 -48
- package/package.json +4 -1
package/dist/index.d.mts
CHANGED
|
@@ -132,9 +132,9 @@ declare namespace index$z {
|
|
|
132
132
|
|
|
133
133
|
type IName$9 = string;
|
|
134
134
|
type IUint64$6 = number | string;
|
|
135
|
-
interface ICounts$
|
|
135
|
+
interface ICounts$4 extends ICountsBase$4 {
|
|
136
136
|
}
|
|
137
|
-
interface ICountsBase$
|
|
137
|
+
interface ICountsBase$4 {
|
|
138
138
|
key: IName$9;
|
|
139
139
|
secondary_key: IName$9;
|
|
140
140
|
value: IUint64$6;
|
|
@@ -159,7 +159,14 @@ interface IDeldraft {
|
|
|
159
159
|
interface IDeltrans {
|
|
160
160
|
translate_id: IUint64$6;
|
|
161
161
|
}
|
|
162
|
-
interface
|
|
162
|
+
interface IEdittrans {
|
|
163
|
+
translate_id: IUint64$6;
|
|
164
|
+
data: string;
|
|
165
|
+
}
|
|
166
|
+
interface INewid$1 {
|
|
167
|
+
id: IUint64$6;
|
|
168
|
+
}
|
|
169
|
+
interface IOnedraft {
|
|
163
170
|
id: IUint64$6;
|
|
164
171
|
registry_id: IUint64$6;
|
|
165
172
|
creator: IName$9;
|
|
@@ -171,14 +178,7 @@ interface IDrafts$1 {
|
|
|
171
178
|
context: string;
|
|
172
179
|
model: string;
|
|
173
180
|
}
|
|
174
|
-
interface
|
|
175
|
-
translate_id: IUint64$6;
|
|
176
|
-
data: string;
|
|
177
|
-
}
|
|
178
|
-
interface INewid$1 {
|
|
179
|
-
id: IUint64$6;
|
|
180
|
-
}
|
|
181
|
-
interface ITranslations$1 {
|
|
181
|
+
interface ITranslation$1 {
|
|
182
182
|
id: IUint64$6;
|
|
183
183
|
creator: IName$9;
|
|
184
184
|
draft_id: IUint64$6;
|
|
@@ -193,8 +193,9 @@ type draft$1_ICreatetrans = ICreatetrans;
|
|
|
193
193
|
type draft$1_IDeldraft = IDeldraft;
|
|
194
194
|
type draft$1_IDeltrans = IDeltrans;
|
|
195
195
|
type draft$1_IEdittrans = IEdittrans;
|
|
196
|
+
type draft$1_IOnedraft = IOnedraft;
|
|
196
197
|
declare namespace draft$1 {
|
|
197
|
-
export type { ICounts$
|
|
198
|
+
export type { ICounts$4 as ICounts, ICountsBase$4 as ICountsBase, draft$1_ICreatedraft as ICreatedraft, draft$1_ICreatetrans as ICreatetrans, draft$1_IDeldraft as IDeldraft, draft$1_IDeltrans as IDeltrans, draft$1_IEdittrans as IEdittrans, IName$9 as IName, INewid$1 as INewid, draft$1_IOnedraft as IOnedraft, ITranslation$1 as ITranslation, IUint64$6 as IUint64 };
|
|
198
199
|
}
|
|
199
200
|
|
|
200
201
|
declare const authorizations$27: readonly [{
|
|
@@ -311,39 +312,38 @@ declare namespace index$y {
|
|
|
311
312
|
/**
|
|
312
313
|
* Имя таблицы
|
|
313
314
|
*/
|
|
314
|
-
declare const tableName$
|
|
315
|
+
declare const tableName$E = "drafts";
|
|
315
316
|
/**
|
|
316
317
|
* Таблица хранится в {@link Actors._contract | области памяти контракта}.
|
|
317
318
|
*/
|
|
318
|
-
declare const scope$
|
|
319
|
+
declare const scope$E = "_contract";
|
|
319
320
|
/**
|
|
320
321
|
* @interface
|
|
321
322
|
* Таблица содержит переводы черновиков документов.
|
|
322
323
|
*/
|
|
323
|
-
type
|
|
324
|
+
type IDraft$2 = IOnedraft;
|
|
324
325
|
|
|
325
|
-
type drafts_IDrafts = IDrafts;
|
|
326
326
|
declare namespace drafts {
|
|
327
|
-
export { type
|
|
327
|
+
export { type IDraft$2 as IDraft, scope$E as scope, tableName$E as tableName };
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
/**
|
|
331
331
|
* Имя таблицы
|
|
332
332
|
*/
|
|
333
|
-
declare const tableName$
|
|
333
|
+
declare const tableName$D = "translations";
|
|
334
334
|
/**
|
|
335
335
|
* Область хранения в памяти
|
|
336
336
|
*/
|
|
337
|
-
declare const scope$
|
|
337
|
+
declare const scope$D = "_contract";
|
|
338
338
|
/**
|
|
339
339
|
* @interface
|
|
340
340
|
* Таблица содержит переводы черновиков документов.
|
|
341
341
|
*/
|
|
342
|
-
type
|
|
342
|
+
type ITranslation = ITranslation$1;
|
|
343
343
|
|
|
344
|
-
type
|
|
344
|
+
type translations_ITranslation = ITranslation;
|
|
345
345
|
declare namespace translations {
|
|
346
|
-
export { type
|
|
346
|
+
export { type translations_ITranslation as ITranslation, scope$D as scope, tableName$D as tableName };
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
declare namespace index$x {
|
|
@@ -361,9 +361,12 @@ declare namespace index$w {
|
|
|
361
361
|
|
|
362
362
|
type IAsset$6 = string;
|
|
363
363
|
type IName$8 = string;
|
|
364
|
+
type IChecksum256$6 = string;
|
|
365
|
+
type IPublicKey$5 = string;
|
|
366
|
+
type ISignature$4 = string;
|
|
364
367
|
type ITimePointSec$7 = string;
|
|
365
368
|
type IUint64$5 = number | string;
|
|
366
|
-
interface
|
|
369
|
+
interface IAccfund {
|
|
367
370
|
id: IUint64$5;
|
|
368
371
|
coopname: IName$8;
|
|
369
372
|
contract: IName$8;
|
|
@@ -397,9 +400,9 @@ interface IComplete$1 {
|
|
|
397
400
|
username: IName$8;
|
|
398
401
|
withdraw_id: IUint64$5;
|
|
399
402
|
}
|
|
400
|
-
interface ICounts$
|
|
403
|
+
interface ICounts$3 extends ICountsBase$3 {
|
|
401
404
|
}
|
|
402
|
-
interface ICountsBase$
|
|
405
|
+
interface ICountsBase$3 {
|
|
403
406
|
key: IName$8;
|
|
404
407
|
secondary_key: IName$8;
|
|
405
408
|
value: IUint64$5;
|
|
@@ -420,9 +423,9 @@ interface IDelfund {
|
|
|
420
423
|
fund_id: IUint64$5;
|
|
421
424
|
}
|
|
422
425
|
interface IDocument$4 {
|
|
423
|
-
hash:
|
|
424
|
-
|
|
425
|
-
|
|
426
|
+
hash: IChecksum256$6;
|
|
427
|
+
public_key: IPublicKey$5;
|
|
428
|
+
signature: ISignature$4;
|
|
426
429
|
meta: string;
|
|
427
430
|
}
|
|
428
431
|
interface IEditfund {
|
|
@@ -435,7 +438,7 @@ interface IEditfund {
|
|
|
435
438
|
description: string;
|
|
436
439
|
percent: IUint64$5;
|
|
437
440
|
}
|
|
438
|
-
interface
|
|
441
|
+
interface IExpfund {
|
|
439
442
|
id: IUint64$5;
|
|
440
443
|
coopname: IName$8;
|
|
441
444
|
contract: IName$8;
|
|
@@ -462,7 +465,7 @@ interface IFundwithdraw$1 {
|
|
|
462
465
|
quantity: IAsset$6;
|
|
463
466
|
bank_data_id: string;
|
|
464
467
|
}
|
|
465
|
-
interface
|
|
468
|
+
interface IFwithdraw {
|
|
466
469
|
id: IUint64$5;
|
|
467
470
|
coopname: IName$8;
|
|
468
471
|
username: IName$8;
|
|
@@ -474,7 +477,7 @@ interface IFwithdraws {
|
|
|
474
477
|
bank_data_id: string;
|
|
475
478
|
expired_at: ITimePointSec$7;
|
|
476
479
|
}
|
|
477
|
-
interface IInit$
|
|
480
|
+
interface IInit$5 {
|
|
478
481
|
coopname: IName$8;
|
|
479
482
|
initial: IAsset$6;
|
|
480
483
|
}
|
|
@@ -502,22 +505,22 @@ interface ISubcirculate {
|
|
|
502
505
|
quantity: IAsset$6;
|
|
503
506
|
}
|
|
504
507
|
|
|
505
|
-
type
|
|
508
|
+
type fund_IAccfund = IAccfund;
|
|
506
509
|
type fund_IAddaccum = IAddaccum;
|
|
507
510
|
type fund_IAddcirculate = IAddcirculate;
|
|
508
511
|
type fund_IAddexpense = IAddexpense;
|
|
509
512
|
type fund_ICreatefund = ICreatefund;
|
|
510
513
|
type fund_IDelfund = IDelfund;
|
|
511
514
|
type fund_IEditfund = IEditfund;
|
|
512
|
-
type
|
|
515
|
+
type fund_IExpfund = IExpfund;
|
|
513
516
|
type fund_IFundwallet = IFundwallet;
|
|
514
|
-
type
|
|
517
|
+
type fund_IFwithdraw = IFwithdraw;
|
|
515
518
|
type fund_INewwithdraw = INewwithdraw;
|
|
516
519
|
type fund_ISpreadamount = ISpreadamount;
|
|
517
520
|
type fund_ISubaccum = ISubaccum;
|
|
518
521
|
type fund_ISubcirculate = ISubcirculate;
|
|
519
522
|
declare namespace fund {
|
|
520
|
-
export type {
|
|
523
|
+
export type { fund_IAccfund as IAccfund, fund_IAddaccum as IAddaccum, fund_IAddcirculate as IAddcirculate, fund_IAddexpense as IAddexpense, IAsset$6 as IAsset, IAuthorize$5 as IAuthorize, IChecksum256$6 as IChecksum256, IComplete$1 as IComplete, 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$5 as IInit, IName$8 as IName, INewfund$1 as INewfund, fund_INewwithdraw as INewwithdraw, IPublicKey$5 as IPublicKey, ISignature$4 as ISignature, fund_ISpreadamount as ISpreadamount, fund_ISubaccum as ISubaccum, fund_ISubcirculate as ISubcirculate, ITimePointSec$7 as ITimePointSec, IUint64$5 as IUint64 };
|
|
521
524
|
}
|
|
522
525
|
|
|
523
526
|
declare const authorizations$22: readonly [{
|
|
@@ -767,10 +770,10 @@ declare const actionName$1T = "init";
|
|
|
767
770
|
/**
|
|
768
771
|
* @interface
|
|
769
772
|
*/
|
|
770
|
-
type IInit$
|
|
773
|
+
type IInit$4 = IInit$5;
|
|
771
774
|
|
|
772
775
|
declare namespace init$1 {
|
|
773
|
-
export { type IInit$
|
|
776
|
+
export { type IInit$4 as IInit, actionName$1T as actionName, authorizations$1T as authorizations };
|
|
774
777
|
}
|
|
775
778
|
|
|
776
779
|
declare const authorizations$1S: readonly [{
|
|
@@ -854,11 +857,11 @@ declare namespace index$v {
|
|
|
854
857
|
/**
|
|
855
858
|
* Имя таблицы
|
|
856
859
|
*/
|
|
857
|
-
declare const tableName$
|
|
860
|
+
declare const tableName$C = "accfunds";
|
|
858
861
|
/**
|
|
859
862
|
* Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
|
|
860
863
|
*/
|
|
861
|
-
declare const scope$
|
|
864
|
+
declare const scope$C: {
|
|
862
865
|
/**
|
|
863
866
|
* Имя таблицы
|
|
864
867
|
*/
|
|
@@ -869,21 +872,21 @@ declare const scope$D: {
|
|
|
869
872
|
* @interface
|
|
870
873
|
* Таблица содержит переводы черновиков документов.
|
|
871
874
|
*/
|
|
872
|
-
type
|
|
875
|
+
type IAccumulatedFund = IAccfund;
|
|
873
876
|
|
|
874
|
-
type
|
|
877
|
+
type accumulationFunds_IAccumulatedFund = IAccumulatedFund;
|
|
875
878
|
declare namespace accumulationFunds {
|
|
876
|
-
export { type
|
|
879
|
+
export { type accumulationFunds_IAccumulatedFund as IAccumulatedFund, scope$C as scope, tableName$C as tableName };
|
|
877
880
|
}
|
|
878
881
|
|
|
879
882
|
/**
|
|
880
883
|
* Имя таблицы
|
|
881
884
|
*/
|
|
882
|
-
declare const tableName$
|
|
885
|
+
declare const tableName$B = "expfunds";
|
|
883
886
|
/**
|
|
884
887
|
* Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
|
|
885
888
|
*/
|
|
886
|
-
declare const scope$
|
|
889
|
+
declare const scope$B: {
|
|
887
890
|
/**
|
|
888
891
|
* Имя таблицы
|
|
889
892
|
*/
|
|
@@ -893,21 +896,21 @@ declare const scope$C: {
|
|
|
893
896
|
/**
|
|
894
897
|
* @interface
|
|
895
898
|
*/
|
|
896
|
-
type
|
|
899
|
+
type IExpensedFund = IExpfund;
|
|
897
900
|
|
|
898
|
-
type
|
|
901
|
+
type expenseFunds_IExpensedFund = IExpensedFund;
|
|
899
902
|
declare namespace expenseFunds {
|
|
900
|
-
export { type
|
|
903
|
+
export { type expenseFunds_IExpensedFund as IExpensedFund, scope$B as scope, tableName$B as tableName };
|
|
901
904
|
}
|
|
902
905
|
|
|
903
906
|
/**
|
|
904
907
|
* Имя таблицы
|
|
905
908
|
*/
|
|
906
|
-
declare const tableName$
|
|
909
|
+
declare const tableName$A = "fundwallet";
|
|
907
910
|
/**
|
|
908
911
|
* Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
|
|
909
912
|
*/
|
|
910
|
-
declare const scope$
|
|
913
|
+
declare const scope$A: {
|
|
911
914
|
/**
|
|
912
915
|
* Имя таблицы
|
|
913
916
|
*/
|
|
@@ -921,17 +924,17 @@ type IFundWallet = IFundwallet;
|
|
|
921
924
|
|
|
922
925
|
type fundWallet_IFundWallet = IFundWallet;
|
|
923
926
|
declare namespace fundWallet {
|
|
924
|
-
export { type fundWallet_IFundWallet as IFundWallet, scope$
|
|
927
|
+
export { type fundWallet_IFundWallet as IFundWallet, scope$A as scope, tableName$A as tableName };
|
|
925
928
|
}
|
|
926
929
|
|
|
927
930
|
/**
|
|
928
931
|
* Имя таблицы
|
|
929
932
|
*/
|
|
930
|
-
declare const tableName$
|
|
933
|
+
declare const tableName$z = "fwithdraws";
|
|
931
934
|
/**
|
|
932
935
|
* Таблица хранится в {@link ContractNames._fund | области памяти контракта}.
|
|
933
936
|
*/
|
|
934
|
-
declare const scope$
|
|
937
|
+
declare const scope$z: {
|
|
935
938
|
/**
|
|
936
939
|
* Имя таблицы
|
|
937
940
|
*/
|
|
@@ -941,11 +944,11 @@ declare const scope$A: {
|
|
|
941
944
|
/**
|
|
942
945
|
* @interface
|
|
943
946
|
*/
|
|
944
|
-
type
|
|
947
|
+
type IFundWithdraw = IFwithdraw;
|
|
945
948
|
|
|
946
|
-
type
|
|
949
|
+
type fundWithdraws_IFundWithdraw = IFundWithdraw;
|
|
947
950
|
declare namespace fundWithdraws {
|
|
948
|
-
export { type
|
|
951
|
+
export { type fundWithdraws_IFundWithdraw as IFundWithdraw, scope$z as scope, tableName$z as tableName };
|
|
949
952
|
}
|
|
950
953
|
|
|
951
954
|
/**
|
|
@@ -968,18 +971,21 @@ declare namespace index$t {
|
|
|
968
971
|
|
|
969
972
|
type IAsset$5 = string;
|
|
970
973
|
type IName$7 = string;
|
|
974
|
+
type IChecksum256$5 = string;
|
|
975
|
+
type IPublicKey$4 = string;
|
|
976
|
+
type ISignature$3 = string;
|
|
971
977
|
type ITimePointSec$6 = string;
|
|
972
978
|
type IUint64$4 = number | string;
|
|
973
|
-
interface IBalances$
|
|
979
|
+
interface IBalances$2 extends IBalancesBase$2 {
|
|
974
980
|
}
|
|
975
|
-
interface IBalancesBase$
|
|
981
|
+
interface IBalancesBase$2 {
|
|
976
982
|
id: IUint64$4;
|
|
977
983
|
contract: IName$7;
|
|
978
984
|
quantity: IAsset$5;
|
|
979
985
|
}
|
|
980
|
-
interface ICounts$
|
|
986
|
+
interface ICounts$2 extends ICountsBase$2 {
|
|
981
987
|
}
|
|
982
|
-
interface ICountsBase$
|
|
988
|
+
interface ICountsBase$2 {
|
|
983
989
|
key: IName$7;
|
|
984
990
|
secondary_key: IName$7;
|
|
985
991
|
value: IUint64$4;
|
|
@@ -1003,9 +1009,9 @@ interface IDeposits$1 {
|
|
|
1003
1009
|
expired_at: ITimePointSec$6;
|
|
1004
1010
|
}
|
|
1005
1011
|
interface IDocument$3 {
|
|
1006
|
-
hash:
|
|
1007
|
-
|
|
1008
|
-
|
|
1012
|
+
hash: IChecksum256$5;
|
|
1013
|
+
public_key: IPublicKey$4;
|
|
1014
|
+
signature: ISignature$3;
|
|
1009
1015
|
meta: string;
|
|
1010
1016
|
}
|
|
1011
1017
|
interface IDpcomplete {
|
|
@@ -1074,7 +1080,7 @@ type gateway_IWithdrawauth = IWithdrawauth;
|
|
|
1074
1080
|
type gateway_IWthdcomplete = IWthdcomplete;
|
|
1075
1081
|
type gateway_IWthdfail = IWthdfail;
|
|
1076
1082
|
declare namespace gateway {
|
|
1077
|
-
export type { IAsset$5 as IAsset, IBalances$
|
|
1083
|
+
export type { IAsset$5 as IAsset, IBalances$2 as IBalances, IBalancesBase$2 as IBalancesBase, IChecksum256$5 as IChecksum256, ICounts$2 as ICounts, ICountsBase$2 as ICountsBase, gateway_IDeposit as IDeposit, IDeposits$1 as IDeposits, IDocument$3 as IDocument, gateway_IDpcomplete as IDpcomplete, gateway_IDpfail as IDpfail, IName$7 as IName, gateway_INewdepositid as INewdepositid, gateway_INewwithdrid as INewwithdrid, IPublicKey$4 as IPublicKey, ISignature$3 as ISignature, ITimePointSec$6 as ITimePointSec, IUint64$4 as IUint64, IWithdraw$1 as IWithdraw, gateway_IWithdrawauth as IWithdrawauth, IWithdraws$1 as IWithdraws, gateway_IWthdcomplete as IWthdcomplete, gateway_IWthdfail as IWthdfail };
|
|
1078
1084
|
}
|
|
1079
1085
|
|
|
1080
1086
|
/**
|
|
@@ -1292,14 +1298,14 @@ declare namespace index$s {
|
|
|
1292
1298
|
/**
|
|
1293
1299
|
* Имя таблицы
|
|
1294
1300
|
*/
|
|
1295
|
-
declare const tableName$
|
|
1301
|
+
declare const tableName$y = "deposits";
|
|
1296
1302
|
/**
|
|
1297
1303
|
* Таблица хранится в {@link ContractNames._gateway | области памяти контракта}.
|
|
1298
1304
|
*/
|
|
1299
1305
|
/**
|
|
1300
1306
|
* Этот файл содержит интерфейс для таблицы "deposits".
|
|
1301
1307
|
*/
|
|
1302
|
-
declare const scope$
|
|
1308
|
+
declare const scope$y: {
|
|
1303
1309
|
readonly production: "gateway";
|
|
1304
1310
|
readonly testnet: "gateway2222";
|
|
1305
1311
|
};
|
|
@@ -1311,17 +1317,17 @@ type IDeposits = IDeposits$1;
|
|
|
1311
1317
|
|
|
1312
1318
|
type deposits_IDeposits = IDeposits;
|
|
1313
1319
|
declare namespace deposits {
|
|
1314
|
-
export { type deposits_IDeposits as IDeposits, scope$
|
|
1320
|
+
export { type deposits_IDeposits as IDeposits, scope$y as scope, tableName$y as tableName };
|
|
1315
1321
|
}
|
|
1316
1322
|
|
|
1317
1323
|
/**
|
|
1318
1324
|
* Имя таблицы
|
|
1319
1325
|
*/
|
|
1320
|
-
declare const tableName$
|
|
1326
|
+
declare const tableName$x = "withdraws";
|
|
1321
1327
|
/**
|
|
1322
1328
|
* Таблица хранится в {@link ContractNames._gateway | области памяти контракта}.
|
|
1323
1329
|
*/
|
|
1324
|
-
declare const scope$
|
|
1330
|
+
declare const scope$x: {
|
|
1325
1331
|
readonly production: "gateway";
|
|
1326
1332
|
readonly testnet: "gateway2222";
|
|
1327
1333
|
};
|
|
@@ -1333,7 +1339,7 @@ type IWithdraws = IWithdraws$1;
|
|
|
1333
1339
|
|
|
1334
1340
|
type withdraws_IWithdraws = IWithdraws;
|
|
1335
1341
|
declare namespace withdraws {
|
|
1336
|
-
export { type withdraws_IWithdraws as IWithdraws, scope$
|
|
1342
|
+
export { type withdraws_IWithdraws as IWithdraws, scope$x as scope, tableName$x as tableName };
|
|
1337
1343
|
}
|
|
1338
1344
|
|
|
1339
1345
|
declare namespace index$r {
|
|
@@ -1351,113 +1357,105 @@ declare namespace index$q {
|
|
|
1351
1357
|
|
|
1352
1358
|
type IAsset$4 = string;
|
|
1353
1359
|
type IName$6 = string;
|
|
1354
|
-
type
|
|
1360
|
+
type IChecksum256$4 = string;
|
|
1361
|
+
type IPublicKey$3 = string;
|
|
1362
|
+
type ISignature$2 = string;
|
|
1355
1363
|
type ITimePointSec$5 = string;
|
|
1356
1364
|
type IUint64$3 = number | string;
|
|
1357
|
-
interface
|
|
1365
|
+
interface IAccount$2 {
|
|
1358
1366
|
username: IName$6;
|
|
1359
1367
|
referer: IName$6;
|
|
1360
1368
|
registrator: IName$6;
|
|
1361
1369
|
type: IName$6;
|
|
1362
1370
|
status: IName$6;
|
|
1363
1371
|
meta: string;
|
|
1364
|
-
|
|
1365
|
-
|
|
1372
|
+
storages: IName$6[];
|
|
1373
|
+
verifications: IVerification[];
|
|
1366
1374
|
registered_at: ITimePointSec$5;
|
|
1367
1375
|
signature_expires_at: ITimePointSec$5;
|
|
1368
1376
|
}
|
|
1369
|
-
interface IBalances extends IBalancesBase {
|
|
1377
|
+
interface IBalances$1 extends IBalancesBase$1 {
|
|
1370
1378
|
}
|
|
1371
|
-
interface IBalancesBase {
|
|
1379
|
+
interface IBalancesBase$1 {
|
|
1372
1380
|
id: IUint64$3;
|
|
1373
1381
|
contract: IName$6;
|
|
1374
1382
|
quantity: IAsset$4;
|
|
1375
1383
|
}
|
|
1376
1384
|
interface IChangekey {
|
|
1377
1385
|
username: IName$6;
|
|
1378
|
-
public_key: IPublicKey$
|
|
1386
|
+
public_key: IPublicKey$3;
|
|
1379
1387
|
}
|
|
1380
1388
|
interface IConfirmreg {
|
|
1381
1389
|
coopname: IName$6;
|
|
1382
1390
|
member: IName$6;
|
|
1383
1391
|
}
|
|
1384
1392
|
interface IDocument$2 {
|
|
1385
|
-
hash:
|
|
1386
|
-
|
|
1387
|
-
|
|
1393
|
+
hash: IChecksum256$4;
|
|
1394
|
+
public_key: IPublicKey$3;
|
|
1395
|
+
signature: ISignature$2;
|
|
1388
1396
|
meta: string;
|
|
1389
1397
|
}
|
|
1398
|
+
interface IInit$3 {
|
|
1399
|
+
}
|
|
1390
1400
|
interface IJoincoop$1 {
|
|
1401
|
+
registrator: IName$6;
|
|
1391
1402
|
coopname: IName$6;
|
|
1392
1403
|
username: IName$6;
|
|
1393
1404
|
document: IDocument$2;
|
|
1394
1405
|
}
|
|
1395
1406
|
interface INewaccount$1 {
|
|
1396
1407
|
registrator: IName$6;
|
|
1408
|
+
coopname: IName$6;
|
|
1397
1409
|
referer: IName$6;
|
|
1398
1410
|
username: IName$6;
|
|
1399
|
-
public_key: IPublicKey$
|
|
1411
|
+
public_key: IPublicKey$3;
|
|
1400
1412
|
signature_hash: string;
|
|
1401
1413
|
meta: string;
|
|
1402
1414
|
}
|
|
1403
1415
|
interface IOrgData {
|
|
1404
|
-
storage: IStorage;
|
|
1405
1416
|
is_cooperative: boolean;
|
|
1406
1417
|
coop_type: IName$6;
|
|
1407
|
-
token_contract: IName$6;
|
|
1408
1418
|
announce: string;
|
|
1409
1419
|
description: string;
|
|
1410
1420
|
initial: IAsset$4;
|
|
1411
1421
|
minimum: IAsset$4;
|
|
1412
1422
|
}
|
|
1413
|
-
interface
|
|
1423
|
+
interface IOrganization$1 {
|
|
1414
1424
|
username: IName$6;
|
|
1415
1425
|
parent_username: IName$6;
|
|
1416
|
-
verifications: IVerification[];
|
|
1417
|
-
storages: IStorage[];
|
|
1418
|
-
is_cooperative: boolean;
|
|
1419
|
-
is_active: boolean;
|
|
1420
|
-
coop_type: IName$6;
|
|
1421
|
-
token_contract: IName$6;
|
|
1422
1426
|
announce: string;
|
|
1423
1427
|
description: string;
|
|
1428
|
+
is_cooperative: boolean;
|
|
1429
|
+
coop_type: IName$6;
|
|
1424
1430
|
registration: IAsset$4;
|
|
1425
1431
|
initial: IAsset$4;
|
|
1426
1432
|
minimum: IAsset$4;
|
|
1427
1433
|
}
|
|
1428
1434
|
interface IPlotData {
|
|
1429
|
-
storage: IStorage;
|
|
1430
1435
|
announce: string;
|
|
1431
1436
|
description: string;
|
|
1432
1437
|
}
|
|
1433
|
-
interface
|
|
1438
|
+
interface IRegdepartmnt {
|
|
1439
|
+
registrator: IName$6;
|
|
1434
1440
|
coopname: IName$6;
|
|
1435
1441
|
username: IName$6;
|
|
1436
|
-
params:
|
|
1442
|
+
params: IPlotData;
|
|
1437
1443
|
}
|
|
1438
|
-
interface
|
|
1444
|
+
interface IRegorg {
|
|
1445
|
+
registrator: IName$6;
|
|
1439
1446
|
coopname: IName$6;
|
|
1440
1447
|
username: IName$6;
|
|
1441
|
-
params:
|
|
1448
|
+
params: IOrgData;
|
|
1442
1449
|
}
|
|
1443
1450
|
interface IReguser {
|
|
1451
|
+
registrator: IName$6;
|
|
1444
1452
|
coopname: IName$6;
|
|
1445
1453
|
username: IName$6;
|
|
1446
|
-
storage: IStorage;
|
|
1447
|
-
}
|
|
1448
|
-
interface IStorage {
|
|
1449
|
-
storage_username: IName$6;
|
|
1450
1454
|
}
|
|
1451
1455
|
interface IUpdate$1 {
|
|
1452
1456
|
username: IName$6;
|
|
1453
1457
|
meta: string;
|
|
1454
1458
|
}
|
|
1455
|
-
interface IUsers$2 {
|
|
1456
|
-
username: IName$6;
|
|
1457
|
-
is_active: boolean;
|
|
1458
|
-
storages: IStorage[];
|
|
1459
|
-
verifications: IVerification[];
|
|
1460
|
-
}
|
|
1461
1459
|
interface IVerificate {
|
|
1462
1460
|
username: IName$6;
|
|
1463
1461
|
procedure: IName$6;
|
|
@@ -1471,21 +1469,17 @@ interface IVerification {
|
|
|
1471
1469
|
notice: string;
|
|
1472
1470
|
}
|
|
1473
1471
|
|
|
1474
|
-
type registrator_IBalances = IBalances;
|
|
1475
|
-
type registrator_IBalancesBase = IBalancesBase;
|
|
1476
1472
|
type registrator_IChangekey = IChangekey;
|
|
1477
1473
|
type registrator_IConfirmreg = IConfirmreg;
|
|
1478
1474
|
type registrator_IOrgData = IOrgData;
|
|
1479
|
-
type registrator_IOrgs = IOrgs;
|
|
1480
1475
|
type registrator_IPlotData = IPlotData;
|
|
1476
|
+
type registrator_IRegdepartmnt = IRegdepartmnt;
|
|
1481
1477
|
type registrator_IRegorg = IRegorg;
|
|
1482
|
-
type registrator_IRegplot = IRegplot;
|
|
1483
1478
|
type registrator_IReguser = IReguser;
|
|
1484
|
-
type registrator_IStorage = IStorage;
|
|
1485
1479
|
type registrator_IVerificate = IVerificate;
|
|
1486
1480
|
type registrator_IVerification = IVerification;
|
|
1487
1481
|
declare namespace registrator {
|
|
1488
|
-
export type {
|
|
1482
|
+
export type { IAccount$2 as IAccount, IAsset$4 as IAsset, IBalances$1 as IBalances, IBalancesBase$1 as IBalancesBase, registrator_IChangekey as IChangekey, IChecksum256$4 as IChecksum256, registrator_IConfirmreg as IConfirmreg, IDocument$2 as IDocument, IInit$3 as IInit, IJoincoop$1 as IJoincoop, IName$6 as IName, INewaccount$1 as INewaccount, registrator_IOrgData as IOrgData, IOrganization$1 as IOrganization, registrator_IPlotData as IPlotData, IPublicKey$3 as IPublicKey, registrator_IRegdepartmnt as IRegdepartmnt, registrator_IRegorg as IRegorg, registrator_IReguser as IReguser, ISignature$2 as ISignature, ITimePointSec$5 as ITimePointSec, IUint64$3 as IUint64, IUpdate$1 as IUpdate, registrator_IVerificate as IVerificate, registrator_IVerification as IVerification };
|
|
1489
1483
|
}
|
|
1490
1484
|
|
|
1491
1485
|
declare const authorizations$1H: readonly [{
|
|
@@ -1655,11 +1649,11 @@ declare namespace index$p {
|
|
|
1655
1649
|
/**
|
|
1656
1650
|
* Имя таблицы
|
|
1657
1651
|
*/
|
|
1658
|
-
declare const tableName$
|
|
1652
|
+
declare const tableName$w = "accounts";
|
|
1659
1653
|
/**
|
|
1660
1654
|
* Таблица хранится в {@link ContractNames._registrator | области памяти контракта}.
|
|
1661
1655
|
*/
|
|
1662
|
-
declare const scope$
|
|
1656
|
+
declare const scope$w: {
|
|
1663
1657
|
readonly production: "registrator";
|
|
1664
1658
|
readonly testnet: "regtest22222";
|
|
1665
1659
|
};
|
|
@@ -1667,21 +1661,20 @@ declare const scope$x: {
|
|
|
1667
1661
|
* @interface
|
|
1668
1662
|
* Таблица содержит реестр аккаунтов системы.
|
|
1669
1663
|
*/
|
|
1670
|
-
type
|
|
1664
|
+
type IAccount$1 = IAccount$2;
|
|
1671
1665
|
|
|
1672
|
-
type accounts_IAccounts = IAccounts;
|
|
1673
1666
|
declare namespace accounts {
|
|
1674
|
-
export { type
|
|
1667
|
+
export { type IAccount$1 as IAccount, scope$w as scope, tableName$w as tableName };
|
|
1675
1668
|
}
|
|
1676
1669
|
|
|
1677
1670
|
/**
|
|
1678
1671
|
* Имя таблицы
|
|
1679
1672
|
*/
|
|
1680
|
-
declare const tableName$
|
|
1673
|
+
declare const tableName$v = "orgs";
|
|
1681
1674
|
/**
|
|
1682
1675
|
* Таблица хранится в {@link ContractNames._registrator | области памяти контракта}.
|
|
1683
1676
|
*/
|
|
1684
|
-
declare const scope$
|
|
1677
|
+
declare const scope$v: {
|
|
1685
1678
|
readonly production: "registrator";
|
|
1686
1679
|
readonly testnet: "regtest22222";
|
|
1687
1680
|
};
|
|
@@ -1689,29 +1682,11 @@ declare const scope$w: {
|
|
|
1689
1682
|
* @interface
|
|
1690
1683
|
* Таблица содержит реестр организаций-пайщиков кооператива.
|
|
1691
1684
|
*/
|
|
1692
|
-
type
|
|
1685
|
+
type IOrganization = IOrganization$1;
|
|
1693
1686
|
|
|
1687
|
+
type organizations_IOrganization = IOrganization;
|
|
1694
1688
|
declare namespace organizations {
|
|
1695
|
-
export { type
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
|
-
/**
|
|
1699
|
-
* Имя таблицы
|
|
1700
|
-
*/
|
|
1701
|
-
declare const tableName$v = "users";
|
|
1702
|
-
/**
|
|
1703
|
-
* Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
|
|
1704
|
-
*/
|
|
1705
|
-
declare const scope$v = "_coopname";
|
|
1706
|
-
/**
|
|
1707
|
-
* @interface
|
|
1708
|
-
* Таблица содержит реестр пользователей-пайщиков кооператива.
|
|
1709
|
-
*/
|
|
1710
|
-
type IUsers = IUsers$2;
|
|
1711
|
-
|
|
1712
|
-
type users_IUsers = IUsers;
|
|
1713
|
-
declare namespace users {
|
|
1714
|
-
export { type users_IUsers as IUsers, scope$v as scope, tableName$v as tableName };
|
|
1689
|
+
export { type organizations_IOrganization as IOrganization, scope$v as scope, tableName$v as tableName };
|
|
1715
1690
|
}
|
|
1716
1691
|
|
|
1717
1692
|
/**
|
|
@@ -1720,7 +1695,7 @@ declare namespace users {
|
|
|
1720
1695
|
*/
|
|
1721
1696
|
|
|
1722
1697
|
declare namespace index$o {
|
|
1723
|
-
export { accounts as Accounts, organizations as Organizations
|
|
1698
|
+
export { accounts as Accounts, organizations as Organizations };
|
|
1724
1699
|
}
|
|
1725
1700
|
|
|
1726
1701
|
declare const contractName$6: {
|
|
@@ -1959,6 +1934,9 @@ declare namespace index$k {
|
|
|
1959
1934
|
|
|
1960
1935
|
type IAsset$2 = string;
|
|
1961
1936
|
type IName$4 = string;
|
|
1937
|
+
type IChecksum256$3 = string;
|
|
1938
|
+
type IPublicKey$2 = string;
|
|
1939
|
+
type ISignature$1 = string;
|
|
1962
1940
|
type ITimePointSec$4 = string;
|
|
1963
1941
|
type IUint64$2 = number | string;
|
|
1964
1942
|
interface IAct$1 {
|
|
@@ -1979,7 +1957,14 @@ interface IAddprogbal {
|
|
|
1979
1957
|
program_id: IUint64$2;
|
|
1980
1958
|
quantity: IAsset$2;
|
|
1981
1959
|
}
|
|
1982
|
-
interface IAddress {
|
|
1960
|
+
interface IAddress$1 {
|
|
1961
|
+
id: IUint64$2;
|
|
1962
|
+
coopname: IName$4;
|
|
1963
|
+
departname: IName$4;
|
|
1964
|
+
data: IAddressData;
|
|
1965
|
+
meta: string;
|
|
1966
|
+
}
|
|
1967
|
+
interface IAddressData {
|
|
1983
1968
|
latitude: string;
|
|
1984
1969
|
longitude: string;
|
|
1985
1970
|
country: string;
|
|
@@ -1994,13 +1979,6 @@ interface IAddress {
|
|
|
1994
1979
|
phone_number: string;
|
|
1995
1980
|
business_hours: string;
|
|
1996
1981
|
}
|
|
1997
|
-
interface IAddresses$1 {
|
|
1998
|
-
id: IUint64$2;
|
|
1999
|
-
coopname: IName$4;
|
|
2000
|
-
cooplate: IName$4;
|
|
2001
|
-
data: IAddress;
|
|
2002
|
-
meta: string;
|
|
2003
|
-
}
|
|
2004
1982
|
interface IAddstaff {
|
|
2005
1983
|
coopname: IName$4;
|
|
2006
1984
|
chairman: IName$4;
|
|
@@ -2059,11 +2037,6 @@ interface IBoards$1 {
|
|
|
2059
2037
|
created_at: ITimePointSec$4;
|
|
2060
2038
|
last_update: ITimePointSec$4;
|
|
2061
2039
|
}
|
|
2062
|
-
interface ICancelorder {
|
|
2063
|
-
coopname: IName$4;
|
|
2064
|
-
username: IName$4;
|
|
2065
|
-
exchange_id: IUint64$2;
|
|
2066
|
-
}
|
|
2067
2040
|
interface ICancelvote {
|
|
2068
2041
|
coopname: IName$4;
|
|
2069
2042
|
member: IName$4;
|
|
@@ -2083,13 +2056,9 @@ interface IChanges$1 {
|
|
|
2083
2056
|
contribution_product_decision_id: IUint64$2;
|
|
2084
2057
|
return_product_decision_id: IUint64$2;
|
|
2085
2058
|
}
|
|
2086
|
-
interface
|
|
2087
|
-
coopname: IName$4;
|
|
2088
|
-
exchange_id: IUint64$2;
|
|
2089
|
-
}
|
|
2090
|
-
interface ICounts extends ICountsBase {
|
|
2059
|
+
interface ICounts$1 extends ICountsBase$1 {
|
|
2091
2060
|
}
|
|
2092
|
-
interface ICountsBase {
|
|
2061
|
+
interface ICountsBase$1 {
|
|
2093
2062
|
key: IName$4;
|
|
2094
2063
|
secondary_key: IName$4;
|
|
2095
2064
|
value: IUint64$2;
|
|
@@ -2097,8 +2066,8 @@ interface ICountsBase {
|
|
|
2097
2066
|
interface ICreaddress {
|
|
2098
2067
|
coopname: IName$4;
|
|
2099
2068
|
chairman: IName$4;
|
|
2100
|
-
|
|
2101
|
-
data:
|
|
2069
|
+
departname: IName$4;
|
|
2070
|
+
data: IAddressData;
|
|
2102
2071
|
meta: string;
|
|
2103
2072
|
}
|
|
2104
2073
|
interface ICreateboard$1 {
|
|
@@ -2121,14 +2090,7 @@ interface ICreateprog {
|
|
|
2121
2090
|
fixed_membership_contribution: IAsset$2;
|
|
2122
2091
|
membership_percent_fee: IUint64$2;
|
|
2123
2092
|
}
|
|
2124
|
-
interface IDecision$
|
|
2125
|
-
coopname: IName$4;
|
|
2126
|
-
username: IName$4;
|
|
2127
|
-
action: IName$4;
|
|
2128
|
-
decision_id: IUint64$2;
|
|
2129
|
-
document: IDocument$1;
|
|
2130
|
-
}
|
|
2131
|
-
interface IDecisions$1 {
|
|
2093
|
+
interface IDecision$2 {
|
|
2132
2094
|
id: IUint64$2;
|
|
2133
2095
|
coopname: IName$4;
|
|
2134
2096
|
username: IName$4;
|
|
@@ -2158,9 +2120,9 @@ interface IDisautomate$1 {
|
|
|
2158
2120
|
automation_id: IUint64$2;
|
|
2159
2121
|
}
|
|
2160
2122
|
interface IDocument$1 {
|
|
2161
|
-
hash:
|
|
2162
|
-
|
|
2163
|
-
|
|
2123
|
+
hash: IChecksum256$3;
|
|
2124
|
+
public_key: IPublicKey$2;
|
|
2125
|
+
signature: ISignature$1;
|
|
2164
2126
|
meta: string;
|
|
2165
2127
|
}
|
|
2166
2128
|
interface IDraft$1 {
|
|
@@ -2172,8 +2134,8 @@ interface IEditaddress {
|
|
|
2172
2134
|
coopname: IName$4;
|
|
2173
2135
|
chairman: IName$4;
|
|
2174
2136
|
address_id: IUint64$2;
|
|
2175
|
-
|
|
2176
|
-
data:
|
|
2137
|
+
departname: IName$4;
|
|
2138
|
+
data: IAddressData;
|
|
2177
2139
|
meta: string;
|
|
2178
2140
|
}
|
|
2179
2141
|
interface IEditprog {
|
|
@@ -2197,6 +2159,8 @@ interface IFundwithdraw {
|
|
|
2197
2159
|
withdraw_id: IUint64$2;
|
|
2198
2160
|
document: IDocument$1;
|
|
2199
2161
|
}
|
|
2162
|
+
interface IInit$2 {
|
|
2163
|
+
}
|
|
2200
2164
|
interface IJoincoop {
|
|
2201
2165
|
coopname: IName$4;
|
|
2202
2166
|
username: IName$4;
|
|
@@ -2209,12 +2173,12 @@ interface IJoincoops {
|
|
|
2209
2173
|
statement: IDocument$1;
|
|
2210
2174
|
notice: string;
|
|
2211
2175
|
}
|
|
2212
|
-
interface
|
|
2213
|
-
coopname: IName$4;
|
|
2176
|
+
interface IOnewallet {
|
|
2214
2177
|
username: IName$4;
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2178
|
+
coopname: IName$4;
|
|
2179
|
+
available: IAsset$2;
|
|
2180
|
+
blocked: IAsset$2;
|
|
2181
|
+
minimum: IAsset$2;
|
|
2218
2182
|
}
|
|
2219
2183
|
interface IParticipants$1 {
|
|
2220
2184
|
username: IName$4;
|
|
@@ -2226,13 +2190,6 @@ interface IParticipants$1 {
|
|
|
2226
2190
|
is_minimum: boolean;
|
|
2227
2191
|
has_vote: boolean;
|
|
2228
2192
|
}
|
|
2229
|
-
interface IPcontribute {
|
|
2230
|
-
coopname: IName$4;
|
|
2231
|
-
username: IName$4;
|
|
2232
|
-
program_id: IUint64$2;
|
|
2233
|
-
type: IName$4;
|
|
2234
|
-
secondary_id: IUint64$2;
|
|
2235
|
-
}
|
|
2236
2193
|
interface IProgcomarket {
|
|
2237
2194
|
id: IUint64$2;
|
|
2238
2195
|
coopname: IName$4;
|
|
@@ -2251,7 +2208,7 @@ interface IProgram {
|
|
|
2251
2208
|
coopname: IName$4;
|
|
2252
2209
|
program_id: IUint64$2;
|
|
2253
2210
|
}
|
|
2254
|
-
interface
|
|
2211
|
+
interface IProgwallet {
|
|
2255
2212
|
id: IUint64$2;
|
|
2256
2213
|
coopname: IName$4;
|
|
2257
2214
|
program_id: IUint64$2;
|
|
@@ -2335,13 +2292,6 @@ interface IVotefor {
|
|
|
2335
2292
|
member: IName$4;
|
|
2336
2293
|
decision_id: IUint64$2;
|
|
2337
2294
|
}
|
|
2338
|
-
interface IWallets$1 {
|
|
2339
|
-
username: IName$4;
|
|
2340
|
-
coopname: IName$4;
|
|
2341
|
-
available: IAsset$2;
|
|
2342
|
-
blocked: IAsset$2;
|
|
2343
|
-
minimum: IAsset$2;
|
|
2344
|
-
}
|
|
2345
2295
|
interface IWithdraw {
|
|
2346
2296
|
coopname: IName$4;
|
|
2347
2297
|
username: IName$4;
|
|
@@ -2350,18 +2300,14 @@ interface IWithdraw {
|
|
|
2350
2300
|
|
|
2351
2301
|
type soviet_IAddbalance = IAddbalance;
|
|
2352
2302
|
type soviet_IAddprogbal = IAddprogbal;
|
|
2353
|
-
type
|
|
2303
|
+
type soviet_IAddressData = IAddressData;
|
|
2354
2304
|
type soviet_IAddstaff = IAddstaff;
|
|
2355
2305
|
type soviet_IAutomator = IAutomator;
|
|
2356
2306
|
type soviet_IAutosigner = IAutosigner;
|
|
2357
2307
|
type soviet_IBlockbal = IBlockbal;
|
|
2358
2308
|
type soviet_IBoardMember = IBoardMember;
|
|
2359
|
-
type soviet_ICancelorder = ICancelorder;
|
|
2360
2309
|
type soviet_ICancelvote = ICancelvote;
|
|
2361
2310
|
type soviet_IChange = IChange;
|
|
2362
|
-
type soviet_ICompleted = ICompleted;
|
|
2363
|
-
type soviet_ICounts = ICounts;
|
|
2364
|
-
type soviet_ICountsBase = ICountsBase;
|
|
2365
2311
|
type soviet_ICreaddress = ICreaddress;
|
|
2366
2312
|
type soviet_ICreateprog = ICreateprog;
|
|
2367
2313
|
type soviet_IDeladdress = IDeladdress;
|
|
@@ -2371,11 +2317,10 @@ type soviet_IEditprog = IEditprog;
|
|
|
2371
2317
|
type soviet_IFundwithdraw = IFundwithdraw;
|
|
2372
2318
|
type soviet_IJoincoop = IJoincoop;
|
|
2373
2319
|
type soviet_IJoincoops = IJoincoops;
|
|
2374
|
-
type
|
|
2375
|
-
type soviet_IPcontribute = IPcontribute;
|
|
2320
|
+
type soviet_IOnewallet = IOnewallet;
|
|
2376
2321
|
type soviet_IProgcomarket = IProgcomarket;
|
|
2377
2322
|
type soviet_IProgram = IProgram;
|
|
2378
|
-
type
|
|
2323
|
+
type soviet_IProgwallet = IProgwallet;
|
|
2379
2324
|
type soviet_IRecieved = IRecieved;
|
|
2380
2325
|
type soviet_IRegpaid = IRegpaid;
|
|
2381
2326
|
type soviet_IRight = IRight;
|
|
@@ -2390,7 +2335,7 @@ type soviet_IVoteagainst = IVoteagainst;
|
|
|
2390
2335
|
type soviet_IVotefor = IVotefor;
|
|
2391
2336
|
type soviet_IWithdraw = IWithdraw;
|
|
2392
2337
|
declare namespace soviet {
|
|
2393
|
-
export type { IAct$1 as IAct, soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal,
|
|
2338
|
+
export type { IAct$1 as IAct, soviet_IAddbalance as IAddbalance, soviet_IAddprogbal as IAddprogbal, IAddress$1 as IAddress, soviet_IAddressData as IAddressData, soviet_IAddstaff as IAddstaff, IAsset$2 as IAsset, IAuthorize$3 as IAuthorize, IAutomate$1 as IAutomate, soviet_IAutomator as IAutomator, soviet_IAutosigner as IAutosigner, IBatch$1 as IBatch, soviet_IBlockbal as IBlockbal, soviet_IBoardMember as IBoardMember, IBoards$1 as IBoards, soviet_ICancelvote as ICancelvote, soviet_IChange as IChange, IChanges$1 as IChanges, IChecksum256$3 as IChecksum256, ICounts$1 as ICounts, ICountsBase$1 as ICountsBase, soviet_ICreaddress as ICreaddress, ICreateboard$1 as ICreateboard, soviet_ICreateprog as ICreateprog, IDecision$2 as IDecision, soviet_IDeladdress as IDeladdress, soviet_IDisableprog as IDisableprog, IDisautomate$1 as IDisautomate, IDocument$1 as IDocument, IDraft$1 as IDraft, soviet_IEditaddress as IEditaddress, soviet_IEditprog as IEditprog, IExec$4 as IExec, soviet_IFundwithdraw as IFundwithdraw, IInit$2 as IInit, soviet_IJoincoop as IJoincoop, soviet_IJoincoops as IJoincoops, IName$4 as IName, soviet_IOnewallet as IOnewallet, IParticipants$1 as IParticipants, soviet_IProgcomarket as IProgcomarket, soviet_IProgram 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_IStaff as IStaff, IStatement$1 as IStatement, soviet_ISubbalance as ISubbalance, soviet_ISubprogbal as ISubprogbal, ITimePointSec$4 as ITimePointSec, IUint64$2 as IUint64, soviet_IUnblockbal as IUnblockbal, soviet_IUpdateboard as IUpdateboard, IValidate$1 as IValidate, soviet_IVoteagainst as IVoteagainst, soviet_IVotefor as IVotefor, soviet_IWithdraw as IWithdraw };
|
|
2394
2339
|
}
|
|
2395
2340
|
|
|
2396
2341
|
/**
|
|
@@ -2512,11 +2457,10 @@ declare const actionName$1q = "decision";
|
|
|
2512
2457
|
* @interface
|
|
2513
2458
|
* Действие фиксирует в реестре принятое решение совета.
|
|
2514
2459
|
*/
|
|
2515
|
-
type IDecision = IDecision$
|
|
2460
|
+
type IDecision$1 = IDecision$2;
|
|
2516
2461
|
|
|
2517
|
-
type decision_IDecision = IDecision;
|
|
2518
2462
|
declare namespace decision {
|
|
2519
|
-
export { type
|
|
2463
|
+
export { type IDecision$1 as IDecision, actionName$1q as actionName, authorizations$1q as authorizations };
|
|
2520
2464
|
}
|
|
2521
2465
|
|
|
2522
2466
|
/**
|
|
@@ -3281,11 +3225,11 @@ declare const scope$s = "_coopname";
|
|
|
3281
3225
|
* @interface
|
|
3282
3226
|
* Таблица хранит информацию о адресах кооператива.
|
|
3283
3227
|
*/
|
|
3284
|
-
type
|
|
3228
|
+
type IAddress = IAddress$1;
|
|
3285
3229
|
|
|
3286
|
-
type
|
|
3230
|
+
type addresses_IAddress = IAddress;
|
|
3287
3231
|
declare namespace addresses {
|
|
3288
|
-
export { type
|
|
3232
|
+
export { type addresses_IAddress as IAddress, scope$s as scope, tableName$s as tableName };
|
|
3289
3233
|
}
|
|
3290
3234
|
|
|
3291
3235
|
/**
|
|
@@ -3394,11 +3338,11 @@ declare const scope$m = "_coopname";
|
|
|
3394
3338
|
/**
|
|
3395
3339
|
* @interface
|
|
3396
3340
|
*/
|
|
3397
|
-
type
|
|
3341
|
+
type IDecision = IDecision$2;
|
|
3398
3342
|
|
|
3399
|
-
type
|
|
3343
|
+
type decisions_IDecision = IDecision;
|
|
3400
3344
|
declare namespace decisions {
|
|
3401
|
-
export { type
|
|
3345
|
+
export { type decisions_IDecision as IDecision, scope$m as scope, tableName$m as tableName };
|
|
3402
3346
|
}
|
|
3403
3347
|
|
|
3404
3348
|
/**
|
|
@@ -3470,11 +3414,11 @@ declare const scope$i = "_coopname";
|
|
|
3470
3414
|
* @interface
|
|
3471
3415
|
* Таблица хранит информацию о балансах пайщиков в целевых потребительских программах кооператива.
|
|
3472
3416
|
*/
|
|
3473
|
-
type
|
|
3417
|
+
type IProgramWallet = IProgwallet;
|
|
3474
3418
|
|
|
3475
|
-
type
|
|
3419
|
+
type programWallets_IProgramWallet = IProgramWallet;
|
|
3476
3420
|
declare namespace programWallets {
|
|
3477
|
-
export { type
|
|
3421
|
+
export { type programWallets_IProgramWallet as IProgramWallet, scope$i as scope, tableName$i as tableName };
|
|
3478
3422
|
}
|
|
3479
3423
|
|
|
3480
3424
|
/**
|
|
@@ -3489,7 +3433,7 @@ declare const scope$h = "_coopname";
|
|
|
3489
3433
|
* @interface
|
|
3490
3434
|
* Таблица содержит сводный баланс пайщиков кооператива.
|
|
3491
3435
|
*/
|
|
3492
|
-
type IWallets =
|
|
3436
|
+
type IWallets = IOnewallet;
|
|
3493
3437
|
|
|
3494
3438
|
type wallets_IWallets = IWallets;
|
|
3495
3439
|
declare namespace wallets {
|
|
@@ -3515,6 +3459,9 @@ declare namespace index$b {
|
|
|
3515
3459
|
|
|
3516
3460
|
type IAsset$1 = string;
|
|
3517
3461
|
type IName$3 = string;
|
|
3462
|
+
type IChecksum256$2 = string;
|
|
3463
|
+
type IPublicKey$1 = string;
|
|
3464
|
+
type ISignature = string;
|
|
3518
3465
|
type ITimePointSec$3 = string;
|
|
3519
3466
|
type IUint64$1 = number | string;
|
|
3520
3467
|
interface IAccept {
|
|
@@ -3537,6 +3484,13 @@ interface IAuthorize$1 {
|
|
|
3537
3484
|
return_product_decision_id: IUint64$1;
|
|
3538
3485
|
return_product_authorization: IDocument;
|
|
3539
3486
|
}
|
|
3487
|
+
interface IBalances extends IBalancesBase {
|
|
3488
|
+
}
|
|
3489
|
+
interface IBalancesBase {
|
|
3490
|
+
id: IUint64$1;
|
|
3491
|
+
contract: IName$3;
|
|
3492
|
+
quantity: IAsset$1;
|
|
3493
|
+
}
|
|
3540
3494
|
interface ICancel$1 {
|
|
3541
3495
|
coopname: IName$3;
|
|
3542
3496
|
username: IName$3;
|
|
@@ -3547,6 +3501,13 @@ interface IComplete {
|
|
|
3547
3501
|
username: IName$3;
|
|
3548
3502
|
exchange_id: IUint64$1;
|
|
3549
3503
|
}
|
|
3504
|
+
interface ICounts extends ICountsBase {
|
|
3505
|
+
}
|
|
3506
|
+
interface ICountsBase {
|
|
3507
|
+
key: IName$3;
|
|
3508
|
+
secondary_key: IName$3;
|
|
3509
|
+
value: IUint64$1;
|
|
3510
|
+
}
|
|
3550
3511
|
interface IDecline {
|
|
3551
3512
|
coopname: IName$3;
|
|
3552
3513
|
username: IName$3;
|
|
@@ -3565,59 +3526,11 @@ interface IDispute {
|
|
|
3565
3526
|
document: IDocument;
|
|
3566
3527
|
}
|
|
3567
3528
|
interface IDocument {
|
|
3568
|
-
hash:
|
|
3569
|
-
|
|
3570
|
-
|
|
3529
|
+
hash: IChecksum256$2;
|
|
3530
|
+
public_key: IPublicKey$1;
|
|
3531
|
+
signature: ISignature;
|
|
3571
3532
|
meta: string;
|
|
3572
3533
|
}
|
|
3573
|
-
interface IExchange {
|
|
3574
|
-
id: IUint64$1;
|
|
3575
|
-
parent_id: IUint64$1;
|
|
3576
|
-
program_id: IUint64$1;
|
|
3577
|
-
coopname: IName$3;
|
|
3578
|
-
type: IName$3;
|
|
3579
|
-
status: IName$3;
|
|
3580
|
-
username: IName$3;
|
|
3581
|
-
parent_username: IName$3;
|
|
3582
|
-
token_contract: IName$3;
|
|
3583
|
-
unit_cost: IAsset$1;
|
|
3584
|
-
supplier_amount: IAsset$1;
|
|
3585
|
-
total_cost: IAsset$1;
|
|
3586
|
-
membership_fee: IAsset$1;
|
|
3587
|
-
remain_units: IUint64$1;
|
|
3588
|
-
blocked_units: IUint64$1;
|
|
3589
|
-
delivered_units: IUint64$1;
|
|
3590
|
-
data: string;
|
|
3591
|
-
meta: string;
|
|
3592
|
-
money_contributor: IName$3;
|
|
3593
|
-
product_contributor: IName$3;
|
|
3594
|
-
contribute_product_statement: IDocument;
|
|
3595
|
-
return_product_statement: IDocument;
|
|
3596
|
-
contribution_product_decision_id: IUint64$1;
|
|
3597
|
-
contribution_product_authorization: IDocument;
|
|
3598
|
-
return_product_decision_id: IUint64$1;
|
|
3599
|
-
return_product_authorization: IDocument;
|
|
3600
|
-
product_contribution_act_validation: IDocument;
|
|
3601
|
-
product_contribution_act: IDocument;
|
|
3602
|
-
product_recieve_act: IDocument;
|
|
3603
|
-
product_recieve_act_validation: IDocument;
|
|
3604
|
-
product_lifecycle_secs: IUint64$1;
|
|
3605
|
-
cancellation_fee: IUint64$1;
|
|
3606
|
-
cancellation_fee_amount: IAsset$1;
|
|
3607
|
-
created_at: ITimePointSec$3;
|
|
3608
|
-
accepted_at: ITimePointSec$3;
|
|
3609
|
-
supplied_at: ITimePointSec$3;
|
|
3610
|
-
delivered_at: ITimePointSec$3;
|
|
3611
|
-
recieved_at: ITimePointSec$3;
|
|
3612
|
-
completed_at: ITimePointSec$3;
|
|
3613
|
-
declined_at: ITimePointSec$3;
|
|
3614
|
-
disputed_at: ITimePointSec$3;
|
|
3615
|
-
canceled_at: ITimePointSec$3;
|
|
3616
|
-
warranty_delay_until: ITimePointSec$3;
|
|
3617
|
-
deadline_for_receipt: ITimePointSec$3;
|
|
3618
|
-
is_warranty_return: boolean;
|
|
3619
|
-
warranty_return_id: IUint64$1;
|
|
3620
|
-
}
|
|
3621
3534
|
interface IExchangeParams {
|
|
3622
3535
|
username: IName$3;
|
|
3623
3536
|
parent_id: IUint64$1;
|
|
@@ -3626,7 +3539,7 @@ interface IExchangeParams {
|
|
|
3626
3539
|
pieces: IUint64$1;
|
|
3627
3540
|
unit_cost: IAsset$1;
|
|
3628
3541
|
product_lifecycle_secs: IUint64$1;
|
|
3629
|
-
document
|
|
3542
|
+
document?: IDocument;
|
|
3630
3543
|
data: string;
|
|
3631
3544
|
meta: string;
|
|
3632
3545
|
}
|
|
@@ -3669,6 +3582,54 @@ interface IRecievecnfrm {
|
|
|
3669
3582
|
exchange_id: IUint64$1;
|
|
3670
3583
|
document: IDocument;
|
|
3671
3584
|
}
|
|
3585
|
+
interface IRequest$1 {
|
|
3586
|
+
id: IUint64$1;
|
|
3587
|
+
parent_id: IUint64$1;
|
|
3588
|
+
program_id: IUint64$1;
|
|
3589
|
+
coopname: IName$3;
|
|
3590
|
+
type: IName$3;
|
|
3591
|
+
status: IName$3;
|
|
3592
|
+
username: IName$3;
|
|
3593
|
+
parent_username: IName$3;
|
|
3594
|
+
token_contract: IName$3;
|
|
3595
|
+
unit_cost: IAsset$1;
|
|
3596
|
+
supplier_amount: IAsset$1;
|
|
3597
|
+
total_cost: IAsset$1;
|
|
3598
|
+
membership_fee: IAsset$1;
|
|
3599
|
+
remain_units: IUint64$1;
|
|
3600
|
+
blocked_units: IUint64$1;
|
|
3601
|
+
delivered_units: IUint64$1;
|
|
3602
|
+
data: string;
|
|
3603
|
+
meta: string;
|
|
3604
|
+
money_contributor: IName$3;
|
|
3605
|
+
product_contributor: IName$3;
|
|
3606
|
+
contribute_product_statement: IDocument;
|
|
3607
|
+
return_product_statement: IDocument;
|
|
3608
|
+
contribution_product_decision_id: IUint64$1;
|
|
3609
|
+
contribution_product_authorization: IDocument;
|
|
3610
|
+
return_product_decision_id: IUint64$1;
|
|
3611
|
+
return_product_authorization: IDocument;
|
|
3612
|
+
product_contribution_act_validation: IDocument;
|
|
3613
|
+
product_contribution_act: IDocument;
|
|
3614
|
+
product_recieve_act: IDocument;
|
|
3615
|
+
product_recieve_act_validation: IDocument;
|
|
3616
|
+
product_lifecycle_secs: IUint64$1;
|
|
3617
|
+
cancellation_fee: IUint64$1;
|
|
3618
|
+
cancellation_fee_amount: IAsset$1;
|
|
3619
|
+
created_at: ITimePointSec$3;
|
|
3620
|
+
accepted_at: ITimePointSec$3;
|
|
3621
|
+
supplied_at: ITimePointSec$3;
|
|
3622
|
+
delivered_at: ITimePointSec$3;
|
|
3623
|
+
recieved_at: ITimePointSec$3;
|
|
3624
|
+
completed_at: ITimePointSec$3;
|
|
3625
|
+
declined_at: ITimePointSec$3;
|
|
3626
|
+
disputed_at: ITimePointSec$3;
|
|
3627
|
+
canceled_at: ITimePointSec$3;
|
|
3628
|
+
warranty_delay_until: ITimePointSec$3;
|
|
3629
|
+
deadline_for_receipt: ITimePointSec$3;
|
|
3630
|
+
is_warranty_return: boolean;
|
|
3631
|
+
warranty_return_id: IUint64$1;
|
|
3632
|
+
}
|
|
3672
3633
|
interface ISupply {
|
|
3673
3634
|
coopname: IName$3;
|
|
3674
3635
|
username: IName$3;
|
|
@@ -3698,12 +3659,15 @@ interface IUpdate {
|
|
|
3698
3659
|
|
|
3699
3660
|
type marketplace_IAccept = IAccept;
|
|
3700
3661
|
type marketplace_IAddpieces = IAddpieces;
|
|
3662
|
+
type marketplace_IBalances = IBalances;
|
|
3663
|
+
type marketplace_IBalancesBase = IBalancesBase;
|
|
3701
3664
|
type marketplace_IComplete = IComplete;
|
|
3665
|
+
type marketplace_ICounts = ICounts;
|
|
3666
|
+
type marketplace_ICountsBase = ICountsBase;
|
|
3702
3667
|
type marketplace_IDecline = IDecline;
|
|
3703
3668
|
type marketplace_IDelivered = IDelivered;
|
|
3704
3669
|
type marketplace_IDispute = IDispute;
|
|
3705
3670
|
type marketplace_IDocument = IDocument;
|
|
3706
|
-
type marketplace_IExchange = IExchange;
|
|
3707
3671
|
type marketplace_IExchangeParams = IExchangeParams;
|
|
3708
3672
|
type marketplace_IModerate = IModerate;
|
|
3709
3673
|
type marketplace_INewid = INewid;
|
|
@@ -3713,12 +3677,13 @@ type marketplace_IProhibit = IProhibit;
|
|
|
3713
3677
|
type marketplace_IPublish = IPublish;
|
|
3714
3678
|
type marketplace_IRecieve = IRecieve;
|
|
3715
3679
|
type marketplace_IRecievecnfrm = IRecievecnfrm;
|
|
3680
|
+
type marketplace_ISignature = ISignature;
|
|
3716
3681
|
type marketplace_ISupply = ISupply;
|
|
3717
3682
|
type marketplace_ISupplycnfrm = ISupplycnfrm;
|
|
3718
3683
|
type marketplace_IUnpublish = IUnpublish;
|
|
3719
3684
|
type marketplace_IUpdate = IUpdate;
|
|
3720
3685
|
declare namespace marketplace {
|
|
3721
|
-
export type { marketplace_IAccept as IAccept, marketplace_IAddpieces as IAddpieces, IAsset$1 as IAsset, IAuthorize$1 as IAuthorize, ICancel$1 as ICancel, marketplace_IComplete as IComplete, marketplace_IDecline as IDecline, marketplace_IDelivered as IDelivered, marketplace_IDispute as IDispute, marketplace_IDocument as IDocument,
|
|
3686
|
+
export type { marketplace_IAccept as IAccept, marketplace_IAddpieces as IAddpieces, IAsset$1 as IAsset, IAuthorize$1 as IAuthorize, marketplace_IBalances as IBalances, marketplace_IBalancesBase as IBalancesBase, ICancel$1 as ICancel, IChecksum256$2 as IChecksum256, marketplace_IComplete as IComplete, marketplace_ICounts as ICounts, marketplace_ICountsBase as ICountsBase, marketplace_IDecline as IDecline, marketplace_IDelivered as IDelivered, marketplace_IDispute as IDispute, marketplace_IDocument as IDocument, marketplace_IExchangeParams as IExchangeParams, marketplace_IModerate as IModerate, IName$3 as IName, marketplace_INewid as INewid, marketplace_IOffer as IOffer, marketplace_IOrder as IOrder, marketplace_IProhibit as IProhibit, IPublicKey$1 as IPublicKey, marketplace_IPublish as IPublish, marketplace_IRecieve as IRecieve, marketplace_IRecievecnfrm as IRecievecnfrm, IRequest$1 as IRequest, marketplace_ISignature as ISignature, marketplace_ISupply as ISupply, marketplace_ISupplycnfrm as ISupplycnfrm, ITimePointSec$3 as ITimePointSec, IUint64$1 as IUint64, marketplace_IUnpublish as IUnpublish, marketplace_IUpdate as IUpdate };
|
|
3722
3687
|
}
|
|
3723
3688
|
|
|
3724
3689
|
/**
|
|
@@ -4163,7 +4128,7 @@ declare namespace index$a {
|
|
|
4163
4128
|
/**
|
|
4164
4129
|
* Имя таблицы
|
|
4165
4130
|
*/
|
|
4166
|
-
declare const tableName$g = "
|
|
4131
|
+
declare const tableName$g = "requests";
|
|
4167
4132
|
/**
|
|
4168
4133
|
* Таблица хранится в {@link Actors._coopname | области памяти кооператива}.
|
|
4169
4134
|
*/
|
|
@@ -4175,11 +4140,11 @@ declare const scope$g = "_coopname";
|
|
|
4175
4140
|
* @interface
|
|
4176
4141
|
* Таблица содержит переводы черновиков документов.
|
|
4177
4142
|
*/
|
|
4178
|
-
type
|
|
4143
|
+
type IRequest = IRequest$1;
|
|
4179
4144
|
|
|
4180
|
-
type
|
|
4145
|
+
type requests_IRequest = IRequest;
|
|
4181
4146
|
declare namespace requests {
|
|
4182
|
-
export { type
|
|
4147
|
+
export { type requests_IRequest as IRequest, scope$g as scope, tableName$g as tableName };
|
|
4183
4148
|
}
|
|
4184
4149
|
|
|
4185
4150
|
/**
|
|
@@ -4762,6 +4727,11 @@ interface IConnector {
|
|
|
4762
4727
|
balance: IAsset;
|
|
4763
4728
|
weight: IFloat64;
|
|
4764
4729
|
}
|
|
4730
|
+
interface ICreateaccnt {
|
|
4731
|
+
new_account_name: IName;
|
|
4732
|
+
owner: IAuthority;
|
|
4733
|
+
active: IAuthority;
|
|
4734
|
+
}
|
|
4765
4735
|
interface IDelegatebw {
|
|
4766
4736
|
from: IName;
|
|
4767
4737
|
receiver: IName;
|
|
@@ -4805,23 +4775,10 @@ interface IEosioGlobalState extends IBlockchainParameters {
|
|
|
4805
4775
|
thresh_activated_stake_time: ITimePoint;
|
|
4806
4776
|
last_producer_schedule_size: IUint16;
|
|
4807
4777
|
total_producer_vote_weight: IFloat64;
|
|
4808
|
-
last_name_close: IBlockTimestampType;
|
|
4809
|
-
}
|
|
4810
|
-
interface IEosioGlobalState2 {
|
|
4811
4778
|
new_ram_per_block: IUint16;
|
|
4812
4779
|
last_ram_increase: IBlockTimestampType;
|
|
4813
|
-
last_block_num: IBlockTimestampType;
|
|
4814
|
-
total_producer_votepay_share: IFloat64;
|
|
4815
4780
|
revision: IUint8;
|
|
4816
|
-
|
|
4817
|
-
interface IEosioGlobalState3 {
|
|
4818
|
-
last_vpay_state_update: ITimePoint;
|
|
4819
|
-
total_vpay_share_change_rate: IFloat64;
|
|
4820
|
-
}
|
|
4821
|
-
interface IEosioGlobalState4 {
|
|
4822
|
-
continuous_rate: IFloat64;
|
|
4823
|
-
inflation_pay_factor: IInt64;
|
|
4824
|
-
votepay_factor: IInt64;
|
|
4781
|
+
last_name_close: IBlockTimestampType;
|
|
4825
4782
|
}
|
|
4826
4783
|
interface IExchangeState {
|
|
4827
4784
|
supply: IAsset;
|
|
@@ -4926,11 +4883,6 @@ interface IProducerInfo$1 {
|
|
|
4926
4883
|
location: IUint16;
|
|
4927
4884
|
producer_authority: IBlockSigningAuthority;
|
|
4928
4885
|
}
|
|
4929
|
-
interface IProducerInfo2 {
|
|
4930
|
-
owner: IName;
|
|
4931
|
-
votepay_share: IFloat64;
|
|
4932
|
-
last_votepay_share_update: ITimePoint;
|
|
4933
|
-
}
|
|
4934
4886
|
interface IProducerKey {
|
|
4935
4887
|
producer_name: IName;
|
|
4936
4888
|
block_signing_key: IPublicKey;
|
|
@@ -5105,12 +5057,10 @@ type system_ICfgpowerup = ICfgpowerup;
|
|
|
5105
5057
|
type system_IChecksum256 = IChecksum256;
|
|
5106
5058
|
type system_IClaimrewards = IClaimrewards;
|
|
5107
5059
|
type system_IConnector = IConnector;
|
|
5060
|
+
type system_ICreateaccnt = ICreateaccnt;
|
|
5108
5061
|
type system_IDelegatebw = IDelegatebw;
|
|
5109
5062
|
type system_IDeleteauth = IDeleteauth;
|
|
5110
5063
|
type system_IEosioGlobalState = IEosioGlobalState;
|
|
5111
|
-
type system_IEosioGlobalState2 = IEosioGlobalState2;
|
|
5112
|
-
type system_IEosioGlobalState3 = IEosioGlobalState3;
|
|
5113
|
-
type system_IEosioGlobalState4 = IEosioGlobalState4;
|
|
5114
5064
|
type system_IExchangeState = IExchangeState;
|
|
5115
5065
|
type system_IFloat64 = IFloat64;
|
|
5116
5066
|
type system_IInitemission = IInitemission;
|
|
@@ -5128,7 +5078,6 @@ type system_IPermissionLevelWeight = IPermissionLevelWeight;
|
|
|
5128
5078
|
type system_IPowerupConfig = IPowerupConfig;
|
|
5129
5079
|
type system_IPowerupStateResource = IPowerupStateResource;
|
|
5130
5080
|
type system_IPowerupexec = IPowerupexec;
|
|
5131
|
-
type system_IProducerInfo2 = IProducerInfo2;
|
|
5132
5081
|
type system_IProducerKey = IProducerKey;
|
|
5133
5082
|
type system_IProducerSchedule = IProducerSchedule;
|
|
5134
5083
|
type system_IPublicKey = IPublicKey;
|
|
@@ -5165,7 +5114,7 @@ type system_IVoteupdate = IVoteupdate;
|
|
|
5165
5114
|
type system_IWaitWeight = IWaitWeight;
|
|
5166
5115
|
type system_IWasmcfg = IWasmcfg;
|
|
5167
5116
|
declare namespace system {
|
|
5168
|
-
export type { system_IAbiHash as IAbiHash, system_IActivate as IActivate, system_IAsset as IAsset, system_IAuthority as IAuthority, IBidRefund$1 as IBidRefund, system_IBidname as IBidname, system_IBidrefund as IBidrefund, system_IBlockHeader as IBlockHeader, system_IBlockInfoRecord as IBlockInfoRecord, system_IBlockSigningAuthority as IBlockSigningAuthority, system_IBlockSigningAuthorityV0 as IBlockSigningAuthorityV0, system_IBlockTimestampType as IBlockTimestampType, system_IBlockchainParameters as IBlockchainParameters, system_IBlockchainParametersT as IBlockchainParametersT, system_IBlockchainParametersV1 as IBlockchainParametersV1, system_IBuyram as IBuyram, system_IBuyrambytes as IBuyrambytes, system_IBytes as IBytes, system_ICanceldelay as ICanceldelay, system_ICfgpowerup as ICfgpowerup, system_IChecksum256 as IChecksum256, system_IClaimrewards as IClaimrewards, system_IConnector as IConnector, system_IDelegatebw as IDelegatebw, IDelegatedBandwidth$1 as IDelegatedBandwidth, system_IDeleteauth as IDeleteauth, IEmissionState$1 as IEmissionState, system_IEosioGlobalState as IEosioGlobalState,
|
|
5117
|
+
export type { system_IAbiHash as IAbiHash, system_IActivate as IActivate, system_IAsset as IAsset, system_IAuthority as IAuthority, IBidRefund$1 as IBidRefund, system_IBidname as IBidname, system_IBidrefund as IBidrefund, system_IBlockHeader as IBlockHeader, system_IBlockInfoRecord as IBlockInfoRecord, system_IBlockSigningAuthority as IBlockSigningAuthority, system_IBlockSigningAuthorityV0 as IBlockSigningAuthorityV0, system_IBlockTimestampType as IBlockTimestampType, system_IBlockchainParameters as IBlockchainParameters, system_IBlockchainParametersT as IBlockchainParametersT, system_IBlockchainParametersV1 as IBlockchainParametersV1, system_IBuyram as IBuyram, system_IBuyrambytes as IBuyrambytes, system_IBytes as IBytes, system_ICanceldelay as ICanceldelay, system_ICfgpowerup as ICfgpowerup, system_IChecksum256 as IChecksum256, system_IClaimrewards as IClaimrewards, system_IConnector as IConnector, system_ICreateaccnt as ICreateaccnt, system_IDelegatebw as IDelegatebw, IDelegatedBandwidth$1 as IDelegatedBandwidth, system_IDeleteauth as IDeleteauth, IEmissionState$1 as IEmissionState, system_IEosioGlobalState as IEosioGlobalState, system_IExchangeState as IExchangeState, system_IFloat64 as IFloat64, IInit$1 as IInit, system_IInitemission as IInitemission, system_IInt64 as IInt64, system_IKeyWeight as IKeyWeight, system_ILimitAuthChange as ILimitAuthChange, system_ILimitauthchg as ILimitauthchg, system_ILinkauth as ILinkauth, system_IName as IName, INameBid$1 as INameBid, system_INewaccount as INewaccount, system_IOnblock as IOnblock, system_IOnerror as IOnerror, system_IPermissionLevel as IPermissionLevel, system_IPermissionLevelWeight as IPermissionLevelWeight, IPowerup$1 as IPowerup, system_IPowerupConfig as IPowerupConfig, IPowerupOrder$1 as IPowerupOrder, IPowerupState$1 as IPowerupState, system_IPowerupStateResource as IPowerupStateResource, system_IPowerupexec as IPowerupexec, IProducerInfo$1 as IProducerInfo, system_IProducerKey as IProducerKey, system_IProducerSchedule as IProducerSchedule, system_IPublicKey as IPublicKey, IRamDebtRecord$1 as IRamDebtRecord, IRefund$1 as IRefund, IRefundRequest$1 as IRefundRequest, system_IRegproducer as IRegproducer, system_IRegproducer2 as IRegproducer2, system_IRegproxy as IRegproxy, system_IRmvproducer as IRmvproducer, system_ISellram as ISellram, ISetabi$1 as ISetabi, system_ISetacctcpu as ISetacctcpu, system_ISetacctnet as ISetacctnet, system_ISetacctram as ISetacctram, system_ISetalimits as ISetalimits, system_ISetcode as ISetcode, system_ISetparams as ISetparams, system_ISetpriv as ISetpriv, system_ISetram as ISetram, system_ISetramrate as ISetramrate, system_ISymbol as ISymbol, system_ITimePoint as ITimePoint, system_ITimePointSec as ITimePointSec, system_IUint128 as IUint128, system_IUint16 as IUint16, system_IUint32 as IUint32, system_IUint64 as IUint64, system_IUint8 as IUint8, system_IUndelegatebw as IUndelegatebw, system_IUnlinkauth as IUnlinkauth, system_IUnregprod as IUnregprod, system_IUpdateauth as IUpdateauth, system_IUpdtrevision as IUpdtrevision, IUserResources$1 as IUserResources, system_IVariantBlockSigningAuthorityV0 as IVariantBlockSigningAuthorityV0, system_IVoteproducer as IVoteproducer, IVoterInfo$1 as IVoterInfo, system_IVoteupdate as IVoteupdate, system_IWaitWeight as IWaitWeight, system_IWasmcfg as IWasmcfg };
|
|
5169
5118
|
}
|
|
5170
5119
|
|
|
5171
5120
|
declare const authorizations$A: readonly [{
|