@coopenomics/sdk 2025.5.13 → 2025.5.14
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 +2 -0
- package/dist/index.d.cts +790 -70
- package/dist/index.d.mts +790 -70
- package/dist/index.d.ts +790 -70
- package/dist/index.mjs +2 -0
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -2333,6 +2333,8 @@ type ValueTypes = {
|
|
|
2333
2333
|
series: number | Variable<any, string>;
|
|
2334
2334
|
};
|
|
2335
2335
|
["Payment"]: AliasType<{
|
|
2336
|
+
/** Аккаунт пользователя, совершающего платеж */
|
|
2337
|
+
account?: ValueTypes["Account"];
|
|
2336
2338
|
/** Сумма платежа */
|
|
2337
2339
|
amount?: boolean | `@${string}`;
|
|
2338
2340
|
/** Идентификационный номер платежа в блокчейне */
|
|
@@ -2658,7 +2660,7 @@ type ValueTypes = {
|
|
|
2658
2660
|
/** Данные организации */
|
|
2659
2661
|
organization_data?: ValueTypes["CreateOrganizationDataInput"] | undefined | null | Variable<any, string>;
|
|
2660
2662
|
/** Публичный ключ */
|
|
2661
|
-
public_key
|
|
2663
|
+
public_key: string | Variable<any, string>;
|
|
2662
2664
|
/** Имя аккаунта реферера */
|
|
2663
2665
|
referer?: string | undefined | null | Variable<any, string>;
|
|
2664
2666
|
/** Тип аккаунта */
|
|
@@ -5494,6 +5496,8 @@ type ResolverInputTypes = {
|
|
|
5494
5496
|
series: number;
|
|
5495
5497
|
};
|
|
5496
5498
|
["Payment"]: AliasType<{
|
|
5499
|
+
/** Аккаунт пользователя, совершающего платеж */
|
|
5500
|
+
account?: ResolverInputTypes["Account"];
|
|
5497
5501
|
/** Сумма платежа */
|
|
5498
5502
|
amount?: boolean | `@${string}`;
|
|
5499
5503
|
/** Идентификационный номер платежа в блокчейне */
|
|
@@ -5819,7 +5823,7 @@ type ResolverInputTypes = {
|
|
|
5819
5823
|
/** Данные организации */
|
|
5820
5824
|
organization_data?: ResolverInputTypes["CreateOrganizationDataInput"] | undefined | null;
|
|
5821
5825
|
/** Публичный ключ */
|
|
5822
|
-
public_key
|
|
5826
|
+
public_key: string;
|
|
5823
5827
|
/** Имя аккаунта реферера */
|
|
5824
5828
|
referer?: string | undefined | null;
|
|
5825
5829
|
/** Тип аккаунта */
|
|
@@ -8518,6 +8522,8 @@ type ModelTypes = {
|
|
|
8518
8522
|
series: number;
|
|
8519
8523
|
};
|
|
8520
8524
|
["Payment"]: {
|
|
8525
|
+
/** Аккаунт пользователя, совершающего платеж */
|
|
8526
|
+
account: ModelTypes["Account"];
|
|
8521
8527
|
/** Сумма платежа */
|
|
8522
8528
|
amount: number;
|
|
8523
8529
|
/** Идентификационный номер платежа в блокчейне */
|
|
@@ -8813,7 +8819,7 @@ type ModelTypes = {
|
|
|
8813
8819
|
/** Данные организации */
|
|
8814
8820
|
organization_data?: ModelTypes["CreateOrganizationDataInput"] | undefined | null;
|
|
8815
8821
|
/** Публичный ключ */
|
|
8816
|
-
public_key
|
|
8822
|
+
public_key: string;
|
|
8817
8823
|
/** Имя аккаунта реферера */
|
|
8818
8824
|
referer?: string | undefined | null;
|
|
8819
8825
|
/** Тип аккаунта */
|
|
@@ -11544,6 +11550,8 @@ type GraphQLTypes = {
|
|
|
11544
11550
|
};
|
|
11545
11551
|
["Payment"]: {
|
|
11546
11552
|
__typename: "Payment";
|
|
11553
|
+
/** Аккаунт пользователя, совершающего платеж */
|
|
11554
|
+
account: GraphQLTypes["Account"];
|
|
11547
11555
|
/** Сумма платежа */
|
|
11548
11556
|
amount: number;
|
|
11549
11557
|
/** Идентификационный номер платежа в блокчейне */
|
|
@@ -11856,7 +11864,7 @@ type GraphQLTypes = {
|
|
|
11856
11864
|
/** Данные организации */
|
|
11857
11865
|
organization_data?: GraphQLTypes["CreateOrganizationDataInput"] | undefined | null;
|
|
11858
11866
|
/** Публичный ключ */
|
|
11859
|
-
public_key
|
|
11867
|
+
public_key: string;
|
|
11860
11868
|
/** Имя аккаунта реферера */
|
|
11861
11869
|
referer?: string | undefined | null;
|
|
11862
11870
|
/** Тип аккаунта */
|
|
@@ -18265,6 +18273,184 @@ declare const mutation$6: {
|
|
|
18265
18273
|
createInitialPayment: [{
|
|
18266
18274
|
data: Variable<"CreateInitialPaymentInput!", "data">;
|
|
18267
18275
|
}, {
|
|
18276
|
+
account: {
|
|
18277
|
+
username: boolean;
|
|
18278
|
+
blockchain_account: {
|
|
18279
|
+
account_name: boolean;
|
|
18280
|
+
core_liquid_balance: boolean;
|
|
18281
|
+
cpu_limit: {
|
|
18282
|
+
available: boolean;
|
|
18283
|
+
current_used: boolean;
|
|
18284
|
+
last_usage_update_time: boolean;
|
|
18285
|
+
max: boolean;
|
|
18286
|
+
used: boolean;
|
|
18287
|
+
};
|
|
18288
|
+
cpu_weight: boolean;
|
|
18289
|
+
created: boolean;
|
|
18290
|
+
head_block_num: boolean;
|
|
18291
|
+
head_block_time: boolean;
|
|
18292
|
+
last_code_update: boolean;
|
|
18293
|
+
net_limit: {
|
|
18294
|
+
available: boolean;
|
|
18295
|
+
current_used: boolean;
|
|
18296
|
+
last_usage_update_time: boolean;
|
|
18297
|
+
max: boolean;
|
|
18298
|
+
used: boolean;
|
|
18299
|
+
};
|
|
18300
|
+
net_weight: boolean;
|
|
18301
|
+
permissions: {
|
|
18302
|
+
parent: boolean;
|
|
18303
|
+
perm_name: boolean;
|
|
18304
|
+
required_auth: {
|
|
18305
|
+
accounts: {
|
|
18306
|
+
permission: {
|
|
18307
|
+
actor: boolean;
|
|
18308
|
+
permission: boolean;
|
|
18309
|
+
};
|
|
18310
|
+
weight: boolean;
|
|
18311
|
+
};
|
|
18312
|
+
keys: {
|
|
18313
|
+
key: boolean;
|
|
18314
|
+
weight: boolean;
|
|
18315
|
+
};
|
|
18316
|
+
threshold: boolean;
|
|
18317
|
+
waits: {
|
|
18318
|
+
wait_sec: boolean;
|
|
18319
|
+
weight: boolean;
|
|
18320
|
+
};
|
|
18321
|
+
};
|
|
18322
|
+
};
|
|
18323
|
+
privileged: boolean;
|
|
18324
|
+
ram_quota: boolean;
|
|
18325
|
+
ram_usage: boolean;
|
|
18326
|
+
refund_request: {
|
|
18327
|
+
cpu_amount: boolean;
|
|
18328
|
+
net_amount: boolean;
|
|
18329
|
+
owner: boolean;
|
|
18330
|
+
request_time: boolean;
|
|
18331
|
+
};
|
|
18332
|
+
rex_info: boolean;
|
|
18333
|
+
self_delegated_bandwidth: {
|
|
18334
|
+
cpu_weight: boolean;
|
|
18335
|
+
from: boolean;
|
|
18336
|
+
net_weight: boolean;
|
|
18337
|
+
to: boolean;
|
|
18338
|
+
};
|
|
18339
|
+
total_resources: {
|
|
18340
|
+
cpu_weight: boolean;
|
|
18341
|
+
net_weight: boolean;
|
|
18342
|
+
owner: boolean;
|
|
18343
|
+
ram_bytes: boolean;
|
|
18344
|
+
};
|
|
18345
|
+
voter_info: boolean;
|
|
18346
|
+
};
|
|
18347
|
+
provider_account: {
|
|
18348
|
+
email: boolean;
|
|
18349
|
+
has_account: boolean;
|
|
18350
|
+
initial_order: boolean;
|
|
18351
|
+
is_email_verified: boolean;
|
|
18352
|
+
is_registered: boolean;
|
|
18353
|
+
message: boolean;
|
|
18354
|
+
public_key: boolean;
|
|
18355
|
+
referer: boolean;
|
|
18356
|
+
role: boolean;
|
|
18357
|
+
status: boolean;
|
|
18358
|
+
type: boolean;
|
|
18359
|
+
username: boolean;
|
|
18360
|
+
};
|
|
18361
|
+
participant_account: {
|
|
18362
|
+
braname: boolean;
|
|
18363
|
+
created_at: boolean;
|
|
18364
|
+
has_vote: boolean;
|
|
18365
|
+
is_initial: boolean;
|
|
18366
|
+
is_minimum: boolean;
|
|
18367
|
+
last_min_pay: boolean;
|
|
18368
|
+
last_update: boolean;
|
|
18369
|
+
status: boolean;
|
|
18370
|
+
type: boolean;
|
|
18371
|
+
username: boolean;
|
|
18372
|
+
initial_amount: boolean;
|
|
18373
|
+
minimum_amount: boolean;
|
|
18374
|
+
};
|
|
18375
|
+
user_account: {
|
|
18376
|
+
meta: boolean;
|
|
18377
|
+
referer: boolean;
|
|
18378
|
+
registered_at: boolean;
|
|
18379
|
+
registrator: boolean;
|
|
18380
|
+
status: boolean;
|
|
18381
|
+
storages: boolean;
|
|
18382
|
+
type: boolean;
|
|
18383
|
+
username: boolean;
|
|
18384
|
+
verifications: {
|
|
18385
|
+
created_at: boolean;
|
|
18386
|
+
is_verified: boolean;
|
|
18387
|
+
last_update: boolean;
|
|
18388
|
+
notice: boolean;
|
|
18389
|
+
procedure: boolean;
|
|
18390
|
+
verificator: boolean;
|
|
18391
|
+
};
|
|
18392
|
+
};
|
|
18393
|
+
private_account: {
|
|
18394
|
+
type: boolean;
|
|
18395
|
+
individual_data: {
|
|
18396
|
+
email: boolean;
|
|
18397
|
+
full_address: boolean;
|
|
18398
|
+
phone: boolean;
|
|
18399
|
+
first_name: boolean;
|
|
18400
|
+
last_name: boolean;
|
|
18401
|
+
middle_name: boolean;
|
|
18402
|
+
birthdate: boolean;
|
|
18403
|
+
passport: {
|
|
18404
|
+
number: boolean;
|
|
18405
|
+
code: boolean;
|
|
18406
|
+
issued_at: boolean;
|
|
18407
|
+
issued_by: boolean;
|
|
18408
|
+
series: boolean;
|
|
18409
|
+
};
|
|
18410
|
+
username: boolean;
|
|
18411
|
+
};
|
|
18412
|
+
organization_data: {
|
|
18413
|
+
city: boolean;
|
|
18414
|
+
country: boolean;
|
|
18415
|
+
details: {
|
|
18416
|
+
inn: boolean;
|
|
18417
|
+
kpp: boolean;
|
|
18418
|
+
ogrn: boolean;
|
|
18419
|
+
};
|
|
18420
|
+
email: boolean;
|
|
18421
|
+
fact_address: boolean;
|
|
18422
|
+
full_address: boolean;
|
|
18423
|
+
full_name: boolean;
|
|
18424
|
+
phone: boolean;
|
|
18425
|
+
represented_by: {
|
|
18426
|
+
based_on: boolean;
|
|
18427
|
+
first_name: boolean;
|
|
18428
|
+
last_name: boolean;
|
|
18429
|
+
middle_name: boolean;
|
|
18430
|
+
position: boolean;
|
|
18431
|
+
};
|
|
18432
|
+
short_name: boolean;
|
|
18433
|
+
type: boolean;
|
|
18434
|
+
username: boolean;
|
|
18435
|
+
};
|
|
18436
|
+
entrepreneur_data: {
|
|
18437
|
+
birthdate: boolean;
|
|
18438
|
+
city: boolean;
|
|
18439
|
+
country: boolean;
|
|
18440
|
+
details: {
|
|
18441
|
+
inn: boolean;
|
|
18442
|
+
ogrn: boolean;
|
|
18443
|
+
};
|
|
18444
|
+
email: boolean;
|
|
18445
|
+
first_name: boolean;
|
|
18446
|
+
full_address: boolean;
|
|
18447
|
+
last_name: boolean;
|
|
18448
|
+
middle_name: boolean;
|
|
18449
|
+
phone: boolean;
|
|
18450
|
+
username: boolean;
|
|
18451
|
+
};
|
|
18452
|
+
};
|
|
18453
|
+
};
|
|
18268
18454
|
amount: boolean;
|
|
18269
18455
|
blockchain_id: boolean;
|
|
18270
18456
|
created_at: boolean;
|
|
@@ -18306,72 +18492,428 @@ declare const mutation$5: {
|
|
|
18306
18492
|
createDepositPayment: [{
|
|
18307
18493
|
data: Variable<"CreateDepositPaymentInput!", "data">;
|
|
18308
18494
|
}, {
|
|
18309
|
-
|
|
18310
|
-
|
|
18311
|
-
|
|
18312
|
-
|
|
18313
|
-
|
|
18314
|
-
|
|
18315
|
-
|
|
18316
|
-
|
|
18317
|
-
|
|
18318
|
-
|
|
18319
|
-
|
|
18320
|
-
|
|
18321
|
-
|
|
18322
|
-
|
|
18323
|
-
|
|
18324
|
-
|
|
18325
|
-
|
|
18326
|
-
|
|
18327
|
-
|
|
18328
|
-
|
|
18329
|
-
|
|
18330
|
-
|
|
18331
|
-
|
|
18332
|
-
|
|
18333
|
-
|
|
18334
|
-
|
|
18335
|
-
|
|
18336
|
-
|
|
18337
|
-
|
|
18338
|
-
|
|
18339
|
-
|
|
18340
|
-
|
|
18341
|
-
|
|
18342
|
-
|
|
18343
|
-
|
|
18344
|
-
|
|
18345
|
-
|
|
18346
|
-
|
|
18347
|
-
|
|
18348
|
-
|
|
18349
|
-
|
|
18350
|
-
|
|
18351
|
-
|
|
18352
|
-
|
|
18353
|
-
|
|
18354
|
-
|
|
18355
|
-
|
|
18356
|
-
|
|
18357
|
-
|
|
18358
|
-
|
|
18359
|
-
|
|
18360
|
-
|
|
18361
|
-
|
|
18362
|
-
|
|
18363
|
-
|
|
18364
|
-
|
|
18365
|
-
|
|
18366
|
-
|
|
18367
|
-
|
|
18368
|
-
|
|
18369
|
-
|
|
18370
|
-
|
|
18371
|
-
|
|
18372
|
-
|
|
18373
|
-
|
|
18374
|
-
|
|
18495
|
+
account: {
|
|
18496
|
+
username: boolean;
|
|
18497
|
+
blockchain_account: {
|
|
18498
|
+
account_name: boolean;
|
|
18499
|
+
core_liquid_balance: boolean;
|
|
18500
|
+
cpu_limit: {
|
|
18501
|
+
available: boolean;
|
|
18502
|
+
current_used: boolean;
|
|
18503
|
+
last_usage_update_time: boolean;
|
|
18504
|
+
max: boolean;
|
|
18505
|
+
used: boolean;
|
|
18506
|
+
};
|
|
18507
|
+
cpu_weight: boolean;
|
|
18508
|
+
created: boolean;
|
|
18509
|
+
head_block_num: boolean;
|
|
18510
|
+
head_block_time: boolean;
|
|
18511
|
+
last_code_update: boolean;
|
|
18512
|
+
net_limit: {
|
|
18513
|
+
available: boolean;
|
|
18514
|
+
current_used: boolean;
|
|
18515
|
+
last_usage_update_time: boolean;
|
|
18516
|
+
max: boolean;
|
|
18517
|
+
used: boolean;
|
|
18518
|
+
};
|
|
18519
|
+
net_weight: boolean;
|
|
18520
|
+
permissions: {
|
|
18521
|
+
parent: boolean;
|
|
18522
|
+
perm_name: boolean;
|
|
18523
|
+
required_auth: {
|
|
18524
|
+
accounts: {
|
|
18525
|
+
permission: {
|
|
18526
|
+
actor: boolean;
|
|
18527
|
+
permission: boolean;
|
|
18528
|
+
};
|
|
18529
|
+
weight: boolean;
|
|
18530
|
+
};
|
|
18531
|
+
keys: {
|
|
18532
|
+
key: boolean;
|
|
18533
|
+
weight: boolean;
|
|
18534
|
+
};
|
|
18535
|
+
threshold: boolean;
|
|
18536
|
+
waits: {
|
|
18537
|
+
wait_sec: boolean;
|
|
18538
|
+
weight: boolean;
|
|
18539
|
+
};
|
|
18540
|
+
};
|
|
18541
|
+
};
|
|
18542
|
+
privileged: boolean;
|
|
18543
|
+
ram_quota: boolean;
|
|
18544
|
+
ram_usage: boolean;
|
|
18545
|
+
refund_request: {
|
|
18546
|
+
cpu_amount: boolean;
|
|
18547
|
+
net_amount: boolean;
|
|
18548
|
+
owner: boolean;
|
|
18549
|
+
request_time: boolean;
|
|
18550
|
+
};
|
|
18551
|
+
rex_info: boolean;
|
|
18552
|
+
self_delegated_bandwidth: {
|
|
18553
|
+
cpu_weight: boolean;
|
|
18554
|
+
from: boolean;
|
|
18555
|
+
net_weight: boolean;
|
|
18556
|
+
to: boolean;
|
|
18557
|
+
};
|
|
18558
|
+
total_resources: {
|
|
18559
|
+
cpu_weight: boolean;
|
|
18560
|
+
net_weight: boolean;
|
|
18561
|
+
owner: boolean;
|
|
18562
|
+
ram_bytes: boolean;
|
|
18563
|
+
};
|
|
18564
|
+
voter_info: boolean;
|
|
18565
|
+
};
|
|
18566
|
+
provider_account: {
|
|
18567
|
+
email: boolean;
|
|
18568
|
+
has_account: boolean;
|
|
18569
|
+
initial_order: boolean;
|
|
18570
|
+
is_email_verified: boolean;
|
|
18571
|
+
is_registered: boolean;
|
|
18572
|
+
message: boolean;
|
|
18573
|
+
public_key: boolean;
|
|
18574
|
+
referer: boolean;
|
|
18575
|
+
role: boolean;
|
|
18576
|
+
status: boolean;
|
|
18577
|
+
type: boolean;
|
|
18578
|
+
username: boolean;
|
|
18579
|
+
};
|
|
18580
|
+
participant_account: {
|
|
18581
|
+
braname: boolean;
|
|
18582
|
+
created_at: boolean;
|
|
18583
|
+
has_vote: boolean;
|
|
18584
|
+
is_initial: boolean;
|
|
18585
|
+
is_minimum: boolean;
|
|
18586
|
+
last_min_pay: boolean;
|
|
18587
|
+
last_update: boolean;
|
|
18588
|
+
status: boolean;
|
|
18589
|
+
type: boolean;
|
|
18590
|
+
username: boolean;
|
|
18591
|
+
initial_amount: boolean;
|
|
18592
|
+
minimum_amount: boolean;
|
|
18593
|
+
};
|
|
18594
|
+
user_account: {
|
|
18595
|
+
meta: boolean;
|
|
18596
|
+
referer: boolean;
|
|
18597
|
+
registered_at: boolean;
|
|
18598
|
+
registrator: boolean;
|
|
18599
|
+
status: boolean;
|
|
18600
|
+
storages: boolean;
|
|
18601
|
+
type: boolean;
|
|
18602
|
+
username: boolean;
|
|
18603
|
+
verifications: {
|
|
18604
|
+
created_at: boolean;
|
|
18605
|
+
is_verified: boolean;
|
|
18606
|
+
last_update: boolean;
|
|
18607
|
+
notice: boolean;
|
|
18608
|
+
procedure: boolean;
|
|
18609
|
+
verificator: boolean;
|
|
18610
|
+
};
|
|
18611
|
+
};
|
|
18612
|
+
private_account: {
|
|
18613
|
+
type: boolean;
|
|
18614
|
+
individual_data: {
|
|
18615
|
+
email: boolean;
|
|
18616
|
+
full_address: boolean;
|
|
18617
|
+
phone: boolean;
|
|
18618
|
+
first_name: boolean;
|
|
18619
|
+
last_name: boolean;
|
|
18620
|
+
middle_name: boolean;
|
|
18621
|
+
birthdate: boolean;
|
|
18622
|
+
passport: {
|
|
18623
|
+
number: boolean;
|
|
18624
|
+
code: boolean;
|
|
18625
|
+
issued_at: boolean;
|
|
18626
|
+
issued_by: boolean;
|
|
18627
|
+
series: boolean;
|
|
18628
|
+
};
|
|
18629
|
+
username: boolean;
|
|
18630
|
+
};
|
|
18631
|
+
organization_data: {
|
|
18632
|
+
city: boolean;
|
|
18633
|
+
country: boolean;
|
|
18634
|
+
details: {
|
|
18635
|
+
inn: boolean;
|
|
18636
|
+
kpp: boolean;
|
|
18637
|
+
ogrn: boolean;
|
|
18638
|
+
};
|
|
18639
|
+
email: boolean;
|
|
18640
|
+
fact_address: boolean;
|
|
18641
|
+
full_address: boolean;
|
|
18642
|
+
full_name: boolean;
|
|
18643
|
+
phone: boolean;
|
|
18644
|
+
represented_by: {
|
|
18645
|
+
based_on: boolean;
|
|
18646
|
+
first_name: boolean;
|
|
18647
|
+
last_name: boolean;
|
|
18648
|
+
middle_name: boolean;
|
|
18649
|
+
position: boolean;
|
|
18650
|
+
};
|
|
18651
|
+
short_name: boolean;
|
|
18652
|
+
type: boolean;
|
|
18653
|
+
username: boolean;
|
|
18654
|
+
};
|
|
18655
|
+
entrepreneur_data: {
|
|
18656
|
+
birthdate: boolean;
|
|
18657
|
+
city: boolean;
|
|
18658
|
+
country: boolean;
|
|
18659
|
+
details: {
|
|
18660
|
+
inn: boolean;
|
|
18661
|
+
ogrn: boolean;
|
|
18662
|
+
};
|
|
18663
|
+
email: boolean;
|
|
18664
|
+
first_name: boolean;
|
|
18665
|
+
full_address: boolean;
|
|
18666
|
+
last_name: boolean;
|
|
18667
|
+
middle_name: boolean;
|
|
18668
|
+
phone: boolean;
|
|
18669
|
+
username: boolean;
|
|
18670
|
+
};
|
|
18671
|
+
};
|
|
18672
|
+
};
|
|
18673
|
+
amount: boolean;
|
|
18674
|
+
blockchain_id: boolean;
|
|
18675
|
+
created_at: boolean;
|
|
18676
|
+
details: {
|
|
18677
|
+
amount_plus_fee: boolean;
|
|
18678
|
+
amount_without_fee: boolean;
|
|
18679
|
+
data: boolean;
|
|
18680
|
+
fact_fee_percent: boolean;
|
|
18681
|
+
fee_amount: boolean;
|
|
18682
|
+
fee_percent: boolean;
|
|
18683
|
+
tolerance_percent: boolean;
|
|
18684
|
+
};
|
|
18685
|
+
expired_at: boolean;
|
|
18686
|
+
id: boolean;
|
|
18687
|
+
type: boolean;
|
|
18688
|
+
message: boolean;
|
|
18689
|
+
provider: boolean;
|
|
18690
|
+
status: boolean;
|
|
18691
|
+
symbol: boolean;
|
|
18692
|
+
updated_at: boolean;
|
|
18693
|
+
username: boolean;
|
|
18694
|
+
}];
|
|
18695
|
+
};
|
|
18696
|
+
interface IInput$i {
|
|
18697
|
+
/**
|
|
18698
|
+
* @private
|
|
18699
|
+
*/
|
|
18700
|
+
[key: string]: unknown;
|
|
18701
|
+
data: ModelTypes['CreateDepositPaymentInput'];
|
|
18702
|
+
}
|
|
18703
|
+
type IOutput$i = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
|
|
18704
|
+
|
|
18705
|
+
declare namespace createDeposit {
|
|
18706
|
+
export { type IInput$i as IInput, type IOutput$i as IOutput, mutation$5 as mutation, name$h as name };
|
|
18707
|
+
}
|
|
18708
|
+
|
|
18709
|
+
declare const name$g = "setPaymentStatus";
|
|
18710
|
+
declare const mutation$4: {
|
|
18711
|
+
setPaymentStatus: [{
|
|
18712
|
+
data: Variable<"SetPaymentStatusInput!", "data">;
|
|
18713
|
+
}, {
|
|
18714
|
+
account: {
|
|
18715
|
+
username: boolean;
|
|
18716
|
+
blockchain_account: {
|
|
18717
|
+
account_name: boolean;
|
|
18718
|
+
core_liquid_balance: boolean;
|
|
18719
|
+
cpu_limit: {
|
|
18720
|
+
available: boolean;
|
|
18721
|
+
current_used: boolean;
|
|
18722
|
+
last_usage_update_time: boolean;
|
|
18723
|
+
max: boolean;
|
|
18724
|
+
used: boolean;
|
|
18725
|
+
};
|
|
18726
|
+
cpu_weight: boolean;
|
|
18727
|
+
created: boolean;
|
|
18728
|
+
head_block_num: boolean;
|
|
18729
|
+
head_block_time: boolean;
|
|
18730
|
+
last_code_update: boolean;
|
|
18731
|
+
net_limit: {
|
|
18732
|
+
available: boolean;
|
|
18733
|
+
current_used: boolean;
|
|
18734
|
+
last_usage_update_time: boolean;
|
|
18735
|
+
max: boolean;
|
|
18736
|
+
used: boolean;
|
|
18737
|
+
};
|
|
18738
|
+
net_weight: boolean;
|
|
18739
|
+
permissions: {
|
|
18740
|
+
parent: boolean;
|
|
18741
|
+
perm_name: boolean;
|
|
18742
|
+
required_auth: {
|
|
18743
|
+
accounts: {
|
|
18744
|
+
permission: {
|
|
18745
|
+
actor: boolean;
|
|
18746
|
+
permission: boolean;
|
|
18747
|
+
};
|
|
18748
|
+
weight: boolean;
|
|
18749
|
+
};
|
|
18750
|
+
keys: {
|
|
18751
|
+
key: boolean;
|
|
18752
|
+
weight: boolean;
|
|
18753
|
+
};
|
|
18754
|
+
threshold: boolean;
|
|
18755
|
+
waits: {
|
|
18756
|
+
wait_sec: boolean;
|
|
18757
|
+
weight: boolean;
|
|
18758
|
+
};
|
|
18759
|
+
};
|
|
18760
|
+
};
|
|
18761
|
+
privileged: boolean;
|
|
18762
|
+
ram_quota: boolean;
|
|
18763
|
+
ram_usage: boolean;
|
|
18764
|
+
refund_request: {
|
|
18765
|
+
cpu_amount: boolean;
|
|
18766
|
+
net_amount: boolean;
|
|
18767
|
+
owner: boolean;
|
|
18768
|
+
request_time: boolean;
|
|
18769
|
+
};
|
|
18770
|
+
rex_info: boolean;
|
|
18771
|
+
self_delegated_bandwidth: {
|
|
18772
|
+
cpu_weight: boolean;
|
|
18773
|
+
from: boolean;
|
|
18774
|
+
net_weight: boolean;
|
|
18775
|
+
to: boolean;
|
|
18776
|
+
};
|
|
18777
|
+
total_resources: {
|
|
18778
|
+
cpu_weight: boolean;
|
|
18779
|
+
net_weight: boolean;
|
|
18780
|
+
owner: boolean;
|
|
18781
|
+
ram_bytes: boolean;
|
|
18782
|
+
};
|
|
18783
|
+
voter_info: boolean;
|
|
18784
|
+
};
|
|
18785
|
+
provider_account: {
|
|
18786
|
+
email: boolean;
|
|
18787
|
+
has_account: boolean;
|
|
18788
|
+
initial_order: boolean;
|
|
18789
|
+
is_email_verified: boolean;
|
|
18790
|
+
is_registered: boolean;
|
|
18791
|
+
message: boolean;
|
|
18792
|
+
public_key: boolean;
|
|
18793
|
+
referer: boolean;
|
|
18794
|
+
role: boolean;
|
|
18795
|
+
status: boolean;
|
|
18796
|
+
type: boolean;
|
|
18797
|
+
username: boolean;
|
|
18798
|
+
};
|
|
18799
|
+
participant_account: {
|
|
18800
|
+
braname: boolean;
|
|
18801
|
+
created_at: boolean;
|
|
18802
|
+
has_vote: boolean;
|
|
18803
|
+
is_initial: boolean;
|
|
18804
|
+
is_minimum: boolean;
|
|
18805
|
+
last_min_pay: boolean;
|
|
18806
|
+
last_update: boolean;
|
|
18807
|
+
status: boolean;
|
|
18808
|
+
type: boolean;
|
|
18809
|
+
username: boolean;
|
|
18810
|
+
initial_amount: boolean;
|
|
18811
|
+
minimum_amount: boolean;
|
|
18812
|
+
};
|
|
18813
|
+
user_account: {
|
|
18814
|
+
meta: boolean;
|
|
18815
|
+
referer: boolean;
|
|
18816
|
+
registered_at: boolean;
|
|
18817
|
+
registrator: boolean;
|
|
18818
|
+
status: boolean;
|
|
18819
|
+
storages: boolean;
|
|
18820
|
+
type: boolean;
|
|
18821
|
+
username: boolean;
|
|
18822
|
+
verifications: {
|
|
18823
|
+
created_at: boolean;
|
|
18824
|
+
is_verified: boolean;
|
|
18825
|
+
last_update: boolean;
|
|
18826
|
+
notice: boolean;
|
|
18827
|
+
procedure: boolean;
|
|
18828
|
+
verificator: boolean;
|
|
18829
|
+
};
|
|
18830
|
+
};
|
|
18831
|
+
private_account: {
|
|
18832
|
+
type: boolean;
|
|
18833
|
+
individual_data: {
|
|
18834
|
+
email: boolean;
|
|
18835
|
+
full_address: boolean;
|
|
18836
|
+
phone: boolean;
|
|
18837
|
+
first_name: boolean;
|
|
18838
|
+
last_name: boolean;
|
|
18839
|
+
middle_name: boolean;
|
|
18840
|
+
birthdate: boolean;
|
|
18841
|
+
passport: {
|
|
18842
|
+
number: boolean;
|
|
18843
|
+
code: boolean;
|
|
18844
|
+
issued_at: boolean;
|
|
18845
|
+
issued_by: boolean;
|
|
18846
|
+
series: boolean;
|
|
18847
|
+
};
|
|
18848
|
+
username: boolean;
|
|
18849
|
+
};
|
|
18850
|
+
organization_data: {
|
|
18851
|
+
city: boolean;
|
|
18852
|
+
country: boolean;
|
|
18853
|
+
details: {
|
|
18854
|
+
inn: boolean;
|
|
18855
|
+
kpp: boolean;
|
|
18856
|
+
ogrn: boolean;
|
|
18857
|
+
};
|
|
18858
|
+
email: boolean;
|
|
18859
|
+
fact_address: boolean;
|
|
18860
|
+
full_address: boolean;
|
|
18861
|
+
full_name: boolean;
|
|
18862
|
+
phone: boolean;
|
|
18863
|
+
represented_by: {
|
|
18864
|
+
based_on: boolean;
|
|
18865
|
+
first_name: boolean;
|
|
18866
|
+
last_name: boolean;
|
|
18867
|
+
middle_name: boolean;
|
|
18868
|
+
position: boolean;
|
|
18869
|
+
};
|
|
18870
|
+
short_name: boolean;
|
|
18871
|
+
type: boolean;
|
|
18872
|
+
username: boolean;
|
|
18873
|
+
};
|
|
18874
|
+
entrepreneur_data: {
|
|
18875
|
+
birthdate: boolean;
|
|
18876
|
+
city: boolean;
|
|
18877
|
+
country: boolean;
|
|
18878
|
+
details: {
|
|
18879
|
+
inn: boolean;
|
|
18880
|
+
ogrn: boolean;
|
|
18881
|
+
};
|
|
18882
|
+
email: boolean;
|
|
18883
|
+
first_name: boolean;
|
|
18884
|
+
full_address: boolean;
|
|
18885
|
+
last_name: boolean;
|
|
18886
|
+
middle_name: boolean;
|
|
18887
|
+
phone: boolean;
|
|
18888
|
+
username: boolean;
|
|
18889
|
+
};
|
|
18890
|
+
};
|
|
18891
|
+
};
|
|
18892
|
+
amount: boolean;
|
|
18893
|
+
blockchain_id: boolean;
|
|
18894
|
+
created_at: boolean;
|
|
18895
|
+
details: {
|
|
18896
|
+
amount_plus_fee: boolean;
|
|
18897
|
+
amount_without_fee: boolean;
|
|
18898
|
+
data: boolean;
|
|
18899
|
+
fact_fee_percent: boolean;
|
|
18900
|
+
fee_amount: boolean;
|
|
18901
|
+
fee_percent: boolean;
|
|
18902
|
+
tolerance_percent: boolean;
|
|
18903
|
+
};
|
|
18904
|
+
expired_at: boolean;
|
|
18905
|
+
id: boolean;
|
|
18906
|
+
type: boolean;
|
|
18907
|
+
message: boolean;
|
|
18908
|
+
provider: boolean;
|
|
18909
|
+
status: boolean;
|
|
18910
|
+
symbol: boolean;
|
|
18911
|
+
updated_at: boolean;
|
|
18912
|
+
username: boolean;
|
|
18913
|
+
}];
|
|
18914
|
+
};
|
|
18915
|
+
interface IInput$h {
|
|
18916
|
+
/**
|
|
18375
18917
|
* @private
|
|
18376
18918
|
*/
|
|
18377
18919
|
[key: string]: unknown;
|
|
@@ -22625,6 +23167,184 @@ declare const query$1: {
|
|
|
22625
23167
|
options: Variable<"PaginationInput", "options">;
|
|
22626
23168
|
}, {
|
|
22627
23169
|
items: {
|
|
23170
|
+
account: {
|
|
23171
|
+
username: boolean;
|
|
23172
|
+
blockchain_account: {
|
|
23173
|
+
account_name: boolean;
|
|
23174
|
+
core_liquid_balance: boolean;
|
|
23175
|
+
cpu_limit: {
|
|
23176
|
+
available: boolean;
|
|
23177
|
+
current_used: boolean;
|
|
23178
|
+
last_usage_update_time: boolean;
|
|
23179
|
+
max: boolean;
|
|
23180
|
+
used: boolean;
|
|
23181
|
+
};
|
|
23182
|
+
cpu_weight: boolean;
|
|
23183
|
+
created: boolean;
|
|
23184
|
+
head_block_num: boolean;
|
|
23185
|
+
head_block_time: boolean;
|
|
23186
|
+
last_code_update: boolean;
|
|
23187
|
+
net_limit: {
|
|
23188
|
+
available: boolean;
|
|
23189
|
+
current_used: boolean;
|
|
23190
|
+
last_usage_update_time: boolean;
|
|
23191
|
+
max: boolean;
|
|
23192
|
+
used: boolean;
|
|
23193
|
+
};
|
|
23194
|
+
net_weight: boolean;
|
|
23195
|
+
permissions: {
|
|
23196
|
+
parent: boolean;
|
|
23197
|
+
perm_name: boolean;
|
|
23198
|
+
required_auth: {
|
|
23199
|
+
accounts: {
|
|
23200
|
+
permission: {
|
|
23201
|
+
actor: boolean;
|
|
23202
|
+
permission: boolean;
|
|
23203
|
+
};
|
|
23204
|
+
weight: boolean;
|
|
23205
|
+
};
|
|
23206
|
+
keys: {
|
|
23207
|
+
key: boolean;
|
|
23208
|
+
weight: boolean;
|
|
23209
|
+
};
|
|
23210
|
+
threshold: boolean;
|
|
23211
|
+
waits: {
|
|
23212
|
+
wait_sec: boolean;
|
|
23213
|
+
weight: boolean;
|
|
23214
|
+
};
|
|
23215
|
+
};
|
|
23216
|
+
};
|
|
23217
|
+
privileged: boolean;
|
|
23218
|
+
ram_quota: boolean;
|
|
23219
|
+
ram_usage: boolean;
|
|
23220
|
+
refund_request: {
|
|
23221
|
+
cpu_amount: boolean;
|
|
23222
|
+
net_amount: boolean;
|
|
23223
|
+
owner: boolean;
|
|
23224
|
+
request_time: boolean;
|
|
23225
|
+
};
|
|
23226
|
+
rex_info: boolean;
|
|
23227
|
+
self_delegated_bandwidth: {
|
|
23228
|
+
cpu_weight: boolean;
|
|
23229
|
+
from: boolean;
|
|
23230
|
+
net_weight: boolean;
|
|
23231
|
+
to: boolean;
|
|
23232
|
+
};
|
|
23233
|
+
total_resources: {
|
|
23234
|
+
cpu_weight: boolean;
|
|
23235
|
+
net_weight: boolean;
|
|
23236
|
+
owner: boolean;
|
|
23237
|
+
ram_bytes: boolean;
|
|
23238
|
+
};
|
|
23239
|
+
voter_info: boolean;
|
|
23240
|
+
};
|
|
23241
|
+
provider_account: {
|
|
23242
|
+
email: boolean;
|
|
23243
|
+
has_account: boolean;
|
|
23244
|
+
initial_order: boolean;
|
|
23245
|
+
is_email_verified: boolean;
|
|
23246
|
+
is_registered: boolean;
|
|
23247
|
+
message: boolean;
|
|
23248
|
+
public_key: boolean;
|
|
23249
|
+
referer: boolean;
|
|
23250
|
+
role: boolean;
|
|
23251
|
+
status: boolean;
|
|
23252
|
+
type: boolean;
|
|
23253
|
+
username: boolean;
|
|
23254
|
+
};
|
|
23255
|
+
participant_account: {
|
|
23256
|
+
braname: boolean;
|
|
23257
|
+
created_at: boolean;
|
|
23258
|
+
has_vote: boolean;
|
|
23259
|
+
is_initial: boolean;
|
|
23260
|
+
is_minimum: boolean;
|
|
23261
|
+
last_min_pay: boolean;
|
|
23262
|
+
last_update: boolean;
|
|
23263
|
+
status: boolean;
|
|
23264
|
+
type: boolean;
|
|
23265
|
+
username: boolean;
|
|
23266
|
+
initial_amount: boolean;
|
|
23267
|
+
minimum_amount: boolean;
|
|
23268
|
+
};
|
|
23269
|
+
user_account: {
|
|
23270
|
+
meta: boolean;
|
|
23271
|
+
referer: boolean;
|
|
23272
|
+
registered_at: boolean;
|
|
23273
|
+
registrator: boolean;
|
|
23274
|
+
status: boolean;
|
|
23275
|
+
storages: boolean;
|
|
23276
|
+
type: boolean;
|
|
23277
|
+
username: boolean;
|
|
23278
|
+
verifications: {
|
|
23279
|
+
created_at: boolean;
|
|
23280
|
+
is_verified: boolean;
|
|
23281
|
+
last_update: boolean;
|
|
23282
|
+
notice: boolean;
|
|
23283
|
+
procedure: boolean;
|
|
23284
|
+
verificator: boolean;
|
|
23285
|
+
};
|
|
23286
|
+
};
|
|
23287
|
+
private_account: {
|
|
23288
|
+
type: boolean;
|
|
23289
|
+
individual_data: {
|
|
23290
|
+
email: boolean;
|
|
23291
|
+
full_address: boolean;
|
|
23292
|
+
phone: boolean;
|
|
23293
|
+
first_name: boolean;
|
|
23294
|
+
last_name: boolean;
|
|
23295
|
+
middle_name: boolean;
|
|
23296
|
+
birthdate: boolean;
|
|
23297
|
+
passport: {
|
|
23298
|
+
number: boolean;
|
|
23299
|
+
code: boolean;
|
|
23300
|
+
issued_at: boolean;
|
|
23301
|
+
issued_by: boolean;
|
|
23302
|
+
series: boolean;
|
|
23303
|
+
};
|
|
23304
|
+
username: boolean;
|
|
23305
|
+
};
|
|
23306
|
+
organization_data: {
|
|
23307
|
+
city: boolean;
|
|
23308
|
+
country: boolean;
|
|
23309
|
+
details: {
|
|
23310
|
+
inn: boolean;
|
|
23311
|
+
kpp: boolean;
|
|
23312
|
+
ogrn: boolean;
|
|
23313
|
+
};
|
|
23314
|
+
email: boolean;
|
|
23315
|
+
fact_address: boolean;
|
|
23316
|
+
full_address: boolean;
|
|
23317
|
+
full_name: boolean;
|
|
23318
|
+
phone: boolean;
|
|
23319
|
+
represented_by: {
|
|
23320
|
+
based_on: boolean;
|
|
23321
|
+
first_name: boolean;
|
|
23322
|
+
last_name: boolean;
|
|
23323
|
+
middle_name: boolean;
|
|
23324
|
+
position: boolean;
|
|
23325
|
+
};
|
|
23326
|
+
short_name: boolean;
|
|
23327
|
+
type: boolean;
|
|
23328
|
+
username: boolean;
|
|
23329
|
+
};
|
|
23330
|
+
entrepreneur_data: {
|
|
23331
|
+
birthdate: boolean;
|
|
23332
|
+
city: boolean;
|
|
23333
|
+
country: boolean;
|
|
23334
|
+
details: {
|
|
23335
|
+
inn: boolean;
|
|
23336
|
+
ogrn: boolean;
|
|
23337
|
+
};
|
|
23338
|
+
email: boolean;
|
|
23339
|
+
first_name: boolean;
|
|
23340
|
+
full_address: boolean;
|
|
23341
|
+
last_name: boolean;
|
|
23342
|
+
middle_name: boolean;
|
|
23343
|
+
phone: boolean;
|
|
23344
|
+
username: boolean;
|
|
23345
|
+
};
|
|
23346
|
+
};
|
|
23347
|
+
};
|
|
22628
23348
|
amount: boolean;
|
|
22629
23349
|
blockchain_id: boolean;
|
|
22630
23350
|
created_at: boolean;
|