@coopenomics/sdk 2.2.9 → 2.2.10
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 +186 -181
- package/dist/index.d.cts +595 -47
- package/dist/index.d.mts +595 -47
- package/dist/index.d.ts +595 -47
- package/dist/index.mjs +186 -181
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -770,7 +770,6 @@ const AllTypesProps = {
|
|
|
770
770
|
user_agreement: "SignedDigitalDocumentInput",
|
|
771
771
|
wallet_agreement: "SignedDigitalDocumentInput"
|
|
772
772
|
},
|
|
773
|
-
RegisterRole: "enum",
|
|
774
773
|
RepresentedByInput: {},
|
|
775
774
|
ResetKeyInput: {},
|
|
776
775
|
ReturnByAssetActGenerateDocumentInput: {},
|
|
@@ -820,9 +819,7 @@ const AllTypesProps = {
|
|
|
820
819
|
UpdateAccountInput: {
|
|
821
820
|
entrepreneur_data: "UpdateEntrepreneurDataInput",
|
|
822
821
|
individual_data: "UpdateIndividualDataInput",
|
|
823
|
-
organization_data: "UpdateOrganizationDataInput"
|
|
824
|
-
role: "RegisterRole",
|
|
825
|
-
type: "AccountType"
|
|
822
|
+
organization_data: "UpdateOrganizationDataInput"
|
|
826
823
|
},
|
|
827
824
|
UpdateBankAccountInput: {
|
|
828
825
|
data: "BankAccountInput"
|
|
@@ -836,8 +833,7 @@ const AllTypesProps = {
|
|
|
836
833
|
},
|
|
837
834
|
UpdateOrganizationDataInput: {
|
|
838
835
|
details: "OrganizationDetailsInput",
|
|
839
|
-
represented_by: "RepresentedByInput"
|
|
840
|
-
type: "OrganizationType"
|
|
836
|
+
represented_by: "RepresentedByInput"
|
|
841
837
|
},
|
|
842
838
|
UpdateRequestInput: {},
|
|
843
839
|
UserStatus: "enum",
|
|
@@ -854,6 +850,7 @@ const ReturnTypes = {
|
|
|
854
850
|
Account: {
|
|
855
851
|
blockchain_account: "BlockchainAccount",
|
|
856
852
|
participant_account: "ParticipantAccount",
|
|
853
|
+
private_account: "PrivateAccount",
|
|
857
854
|
provider_account: "MonoAccount",
|
|
858
855
|
user_account: "UserAccount",
|
|
859
856
|
username: "String"
|
|
@@ -1046,6 +1043,7 @@ const ReturnTypes = {
|
|
|
1046
1043
|
authorized: "Boolean",
|
|
1047
1044
|
authorized_by: "String",
|
|
1048
1045
|
batch_id: "Float",
|
|
1046
|
+
callback_contract: "String",
|
|
1049
1047
|
coopname: "String",
|
|
1050
1048
|
created_at: "String",
|
|
1051
1049
|
expired_at: "String",
|
|
@@ -1380,10 +1378,12 @@ const ReturnTypes = {
|
|
|
1380
1378
|
braname: "String",
|
|
1381
1379
|
created_at: "DateTime",
|
|
1382
1380
|
has_vote: "Boolean",
|
|
1381
|
+
initial_amount: "String",
|
|
1383
1382
|
is_initial: "Boolean",
|
|
1384
1383
|
is_minimum: "Boolean",
|
|
1385
1384
|
last_min_pay: "DateTime",
|
|
1386
1385
|
last_update: "DateTime",
|
|
1386
|
+
minimum_amount: "String",
|
|
1387
1387
|
status: "String",
|
|
1388
1388
|
type: "String",
|
|
1389
1389
|
username: "String"
|
|
@@ -1497,6 +1497,12 @@ const ReturnTypes = {
|
|
|
1497
1497
|
permission: "PermissionLevel",
|
|
1498
1498
|
weight: "Int"
|
|
1499
1499
|
},
|
|
1500
|
+
PrivateAccount: {
|
|
1501
|
+
entrepreneur_data: "Entrepreneur",
|
|
1502
|
+
individual_data: "Individual",
|
|
1503
|
+
organization_data: "Organization",
|
|
1504
|
+
type: "AccountType"
|
|
1505
|
+
},
|
|
1500
1506
|
ProjectFreeDecisionDocument: {
|
|
1501
1507
|
binary: "String",
|
|
1502
1508
|
full_title: "String",
|
|
@@ -1971,22 +1977,12 @@ const Gql = Chain(HOST, {
|
|
|
1971
1977
|
const ZeusScalars = ZeusSelect();
|
|
1972
1978
|
const fields = (k) => {
|
|
1973
1979
|
const t = ReturnTypes[k];
|
|
1974
|
-
const fnType = k in AllTypesProps ? AllTypesProps[k] : void 0;
|
|
1975
|
-
const hasFnTypes = typeof fnType === "object" ? fnType : void 0;
|
|
1976
1980
|
const o = Object.fromEntries(
|
|
1977
|
-
Object.entries(t).filter(([
|
|
1978
|
-
const isFunctionType = hasFnTypes && k2 in hasFnTypes && !!hasFnTypes[k2];
|
|
1979
|
-
if (isFunctionType)
|
|
1980
|
-
return false;
|
|
1981
|
+
Object.entries(t).filter(([, value]) => {
|
|
1981
1982
|
const isReturnType = ReturnTypes[value];
|
|
1982
|
-
if (!isReturnType)
|
|
1983
|
-
return true;
|
|
1984
|
-
if (typeof isReturnType !== "string")
|
|
1985
|
-
return false;
|
|
1986
|
-
if (isReturnType.startsWith("scalar.")) {
|
|
1983
|
+
if (!isReturnType || typeof isReturnType === "string" && isReturnType.startsWith("scalar.")) {
|
|
1987
1984
|
return true;
|
|
1988
1985
|
}
|
|
1989
|
-
return false;
|
|
1990
1986
|
}).map(([key]) => [key, true])
|
|
1991
1987
|
);
|
|
1992
1988
|
return o;
|
|
@@ -2292,10 +2288,6 @@ var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
|
2292
2288
|
PaymentStatus2["REFUNDED"] = "REFUNDED";
|
|
2293
2289
|
return PaymentStatus2;
|
|
2294
2290
|
})(PaymentStatus || {});
|
|
2295
|
-
var RegisterRole = /* @__PURE__ */ ((RegisterRole2) => {
|
|
2296
|
-
RegisterRole2["User"] = "User";
|
|
2297
|
-
return RegisterRole2;
|
|
2298
|
-
})(RegisterRole || {});
|
|
2299
2291
|
var SystemStatus = /* @__PURE__ */ ((SystemStatus2) => {
|
|
2300
2292
|
SystemStatus2["active"] = "active";
|
|
2301
2293
|
SystemStatus2["install"] = "install";
|
|
@@ -2330,7 +2322,6 @@ const index$p = {
|
|
|
2330
2322
|
OrganizationType: OrganizationType,
|
|
2331
2323
|
PaymentStatus: PaymentStatus,
|
|
2332
2324
|
PrepareScalarPaths: PrepareScalarPaths,
|
|
2333
|
-
RegisterRole: RegisterRole,
|
|
2334
2325
|
ResolveFromPath: ResolveFromPath,
|
|
2335
2326
|
SEPARATOR: SEPARATOR,
|
|
2336
2327
|
START_VAR_NAME: START_VAR_NAME,
|
|
@@ -2460,6 +2451,168 @@ Selector("ParticipantAccount")(
|
|
|
2460
2451
|
rawParticipantAccountSelector
|
|
2461
2452
|
);
|
|
2462
2453
|
|
|
2454
|
+
const rawBankAccountSelector = {
|
|
2455
|
+
details: {
|
|
2456
|
+
bik: true,
|
|
2457
|
+
corr: true,
|
|
2458
|
+
kpp: true
|
|
2459
|
+
},
|
|
2460
|
+
account_number: true,
|
|
2461
|
+
bank_name: true,
|
|
2462
|
+
card_number: true,
|
|
2463
|
+
currency: true
|
|
2464
|
+
};
|
|
2465
|
+
Selector("BankAccount")(rawBankAccountSelector);
|
|
2466
|
+
|
|
2467
|
+
const rawBlockchainActionSelector = {
|
|
2468
|
+
account: true,
|
|
2469
|
+
account_ram_deltas: {
|
|
2470
|
+
account: true,
|
|
2471
|
+
delta: true
|
|
2472
|
+
},
|
|
2473
|
+
action_ordinal: true,
|
|
2474
|
+
authorization: {
|
|
2475
|
+
actor: true,
|
|
2476
|
+
permission: true
|
|
2477
|
+
},
|
|
2478
|
+
block_id: true,
|
|
2479
|
+
block_num: true,
|
|
2480
|
+
chain_id: true,
|
|
2481
|
+
console: true,
|
|
2482
|
+
context_free: true,
|
|
2483
|
+
creator_action_ordinal: true,
|
|
2484
|
+
data: true,
|
|
2485
|
+
elapsed: true,
|
|
2486
|
+
global_sequence: true,
|
|
2487
|
+
name: true,
|
|
2488
|
+
receipt: {
|
|
2489
|
+
abi_sequence: true,
|
|
2490
|
+
act_digest: true,
|
|
2491
|
+
auth_sequence: {
|
|
2492
|
+
account: true,
|
|
2493
|
+
sequence: true
|
|
2494
|
+
},
|
|
2495
|
+
code_sequence: true,
|
|
2496
|
+
global_sequence: true,
|
|
2497
|
+
receiver: true,
|
|
2498
|
+
recv_sequence: true
|
|
2499
|
+
},
|
|
2500
|
+
receiver: true,
|
|
2501
|
+
transaction_id: true
|
|
2502
|
+
};
|
|
2503
|
+
Selector("BlockchainAction")(
|
|
2504
|
+
rawBlockchainActionSelector
|
|
2505
|
+
);
|
|
2506
|
+
|
|
2507
|
+
const rawDocumentMetaSelector = {
|
|
2508
|
+
block_num: true,
|
|
2509
|
+
coopname: true,
|
|
2510
|
+
created_at: true,
|
|
2511
|
+
generator: true,
|
|
2512
|
+
lang: true,
|
|
2513
|
+
links: true,
|
|
2514
|
+
registry_id: true,
|
|
2515
|
+
timezone: true,
|
|
2516
|
+
title: true,
|
|
2517
|
+
username: true,
|
|
2518
|
+
version: true
|
|
2519
|
+
};
|
|
2520
|
+
const rawDocumentSelector = {
|
|
2521
|
+
binary: true,
|
|
2522
|
+
full_title: true,
|
|
2523
|
+
hash: true,
|
|
2524
|
+
html: true,
|
|
2525
|
+
meta: rawDocumentMetaSelector
|
|
2526
|
+
// Общая часть meta
|
|
2527
|
+
};
|
|
2528
|
+
const documentSelector = Selector("GeneratedDocument")(rawDocumentSelector);
|
|
2529
|
+
|
|
2530
|
+
const rawEntrepreneurSelector = {
|
|
2531
|
+
birthdate: true,
|
|
2532
|
+
city: true,
|
|
2533
|
+
country: true,
|
|
2534
|
+
details: {
|
|
2535
|
+
inn: true,
|
|
2536
|
+
ogrn: true
|
|
2537
|
+
},
|
|
2538
|
+
email: true,
|
|
2539
|
+
first_name: true,
|
|
2540
|
+
full_address: true,
|
|
2541
|
+
last_name: true,
|
|
2542
|
+
middle_name: true,
|
|
2543
|
+
phone: true,
|
|
2544
|
+
username: true
|
|
2545
|
+
};
|
|
2546
|
+
const entrepreneurSelector = rawEntrepreneurSelector;
|
|
2547
|
+
|
|
2548
|
+
const rawIndividualSelector = {
|
|
2549
|
+
email: true,
|
|
2550
|
+
full_address: true,
|
|
2551
|
+
phone: true,
|
|
2552
|
+
first_name: true,
|
|
2553
|
+
last_name: true,
|
|
2554
|
+
middle_name: true,
|
|
2555
|
+
birthdate: true,
|
|
2556
|
+
passport: {
|
|
2557
|
+
number: true,
|
|
2558
|
+
code: true,
|
|
2559
|
+
issued_at: true,
|
|
2560
|
+
issued_by: true,
|
|
2561
|
+
series: true
|
|
2562
|
+
},
|
|
2563
|
+
username: true
|
|
2564
|
+
};
|
|
2565
|
+
const individualSelector = rawIndividualSelector;
|
|
2566
|
+
|
|
2567
|
+
const rawOrganizationSelector = {
|
|
2568
|
+
city: true,
|
|
2569
|
+
country: true,
|
|
2570
|
+
details: {
|
|
2571
|
+
inn: true,
|
|
2572
|
+
kpp: true,
|
|
2573
|
+
ogrn: true
|
|
2574
|
+
},
|
|
2575
|
+
email: true,
|
|
2576
|
+
fact_address: true,
|
|
2577
|
+
full_address: true,
|
|
2578
|
+
full_name: true,
|
|
2579
|
+
phone: true,
|
|
2580
|
+
represented_by: {
|
|
2581
|
+
based_on: true,
|
|
2582
|
+
first_name: true,
|
|
2583
|
+
last_name: true,
|
|
2584
|
+
middle_name: true,
|
|
2585
|
+
position: true
|
|
2586
|
+
},
|
|
2587
|
+
short_name: true,
|
|
2588
|
+
type: true,
|
|
2589
|
+
username: true
|
|
2590
|
+
};
|
|
2591
|
+
const organizationSelector = rawOrganizationSelector;
|
|
2592
|
+
|
|
2593
|
+
const rawTransactionSelector = {
|
|
2594
|
+
chain: true,
|
|
2595
|
+
request: true,
|
|
2596
|
+
resolved: true,
|
|
2597
|
+
response: true,
|
|
2598
|
+
returns: true,
|
|
2599
|
+
revisions: true,
|
|
2600
|
+
signatures: true,
|
|
2601
|
+
signer: true,
|
|
2602
|
+
transaction: true
|
|
2603
|
+
};
|
|
2604
|
+
Selector("Transaction")(rawTransactionSelector);
|
|
2605
|
+
|
|
2606
|
+
const rawPrivateAccountSelector = {
|
|
2607
|
+
type: true,
|
|
2608
|
+
individual_data: individualSelector,
|
|
2609
|
+
organization_data: organizationSelector,
|
|
2610
|
+
entrepreneur_data: entrepreneurSelector
|
|
2611
|
+
};
|
|
2612
|
+
Selector("PrivateAccount")(
|
|
2613
|
+
rawPrivateAccountSelector
|
|
2614
|
+
);
|
|
2615
|
+
|
|
2463
2616
|
const rawUserAccountSelector = {
|
|
2464
2617
|
meta: true,
|
|
2465
2618
|
referer: true,
|
|
@@ -2487,7 +2640,8 @@ const rawAccountSelector = {
|
|
|
2487
2640
|
blockchain_account: rawBlockchainAccountSelector,
|
|
2488
2641
|
provider_account: rawMonoAccountSelector,
|
|
2489
2642
|
participant_account: rawParticipantAccountSelector,
|
|
2490
|
-
user_account: rawUserAccountSelector
|
|
2643
|
+
user_account: rawUserAccountSelector,
|
|
2644
|
+
private_account: rawPrivateAccountSelector
|
|
2491
2645
|
};
|
|
2492
2646
|
const accountSelector = Selector("Account")(rawAccountSelector);
|
|
2493
2647
|
|
|
@@ -2540,36 +2694,15 @@ const startResetKey = {
|
|
|
2540
2694
|
name: name$15
|
|
2541
2695
|
};
|
|
2542
2696
|
|
|
2543
|
-
const
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
last_name: true,
|
|
2549
|
-
middle_name: true,
|
|
2550
|
-
birthdate: true,
|
|
2551
|
-
passport: {
|
|
2552
|
-
number: true,
|
|
2553
|
-
code: true,
|
|
2554
|
-
issued_at: true,
|
|
2555
|
-
issued_by: true,
|
|
2556
|
-
series: true
|
|
2557
|
-
},
|
|
2558
|
-
username: true
|
|
2697
|
+
const paginationSelector = {
|
|
2698
|
+
items: {},
|
|
2699
|
+
totalCount: true,
|
|
2700
|
+
totalPages: true,
|
|
2701
|
+
currentPage: true
|
|
2559
2702
|
};
|
|
2560
2703
|
|
|
2561
|
-
const
|
|
2562
|
-
|
|
2563
|
-
bik: true,
|
|
2564
|
-
corr: true,
|
|
2565
|
-
kpp: true
|
|
2566
|
-
},
|
|
2567
|
-
account_number: true,
|
|
2568
|
-
bank_name: true,
|
|
2569
|
-
card_number: true,
|
|
2570
|
-
currency: true
|
|
2571
|
-
};
|
|
2572
|
-
Selector("BankAccount")(rawBankAccountSelector);
|
|
2704
|
+
const rawAccountsPaginationSelector = { ...paginationSelector, items: rawAccountSelector };
|
|
2705
|
+
const accountsPaginationSelector = Selector("AccountsPaginationResult")(rawAccountsPaginationSelector);
|
|
2573
2706
|
|
|
2574
2707
|
const rawBankPaymentMethodSelector = {
|
|
2575
2708
|
data: rawBankAccountSelector,
|
|
@@ -2643,29 +2776,6 @@ const branchSelectorForUsers = Selector("Branch")(
|
|
|
2643
2776
|
rawBranchSelectorForUsers
|
|
2644
2777
|
);
|
|
2645
2778
|
|
|
2646
|
-
const rawDocumentMetaSelector = {
|
|
2647
|
-
block_num: true,
|
|
2648
|
-
coopname: true,
|
|
2649
|
-
created_at: true,
|
|
2650
|
-
generator: true,
|
|
2651
|
-
lang: true,
|
|
2652
|
-
links: true,
|
|
2653
|
-
registry_id: true,
|
|
2654
|
-
timezone: true,
|
|
2655
|
-
title: true,
|
|
2656
|
-
username: true,
|
|
2657
|
-
version: true
|
|
2658
|
-
};
|
|
2659
|
-
const rawDocumentSelector = {
|
|
2660
|
-
binary: true,
|
|
2661
|
-
full_title: true,
|
|
2662
|
-
hash: true,
|
|
2663
|
-
html: true,
|
|
2664
|
-
meta: rawDocumentMetaSelector
|
|
2665
|
-
// Общая часть meta
|
|
2666
|
-
};
|
|
2667
|
-
const documentSelector = Selector("GeneratedDocument")(rawDocumentSelector);
|
|
2668
|
-
|
|
2669
2779
|
const rawSelectBranchDocumentSelector = {
|
|
2670
2780
|
...rawDocumentSelector,
|
|
2671
2781
|
meta: {
|
|
@@ -2677,101 +2787,6 @@ const rawSelectBranchDocumentSelector = {
|
|
|
2677
2787
|
};
|
|
2678
2788
|
const generateSelectBranchDocumentSelector = Selector("SelectBranchDocument")(rawSelectBranchDocumentSelector);
|
|
2679
2789
|
|
|
2680
|
-
const rawBlockchainActionSelector = {
|
|
2681
|
-
account: true,
|
|
2682
|
-
account_ram_deltas: {
|
|
2683
|
-
account: true,
|
|
2684
|
-
delta: true
|
|
2685
|
-
},
|
|
2686
|
-
action_ordinal: true,
|
|
2687
|
-
authorization: {
|
|
2688
|
-
actor: true,
|
|
2689
|
-
permission: true
|
|
2690
|
-
},
|
|
2691
|
-
block_id: true,
|
|
2692
|
-
block_num: true,
|
|
2693
|
-
chain_id: true,
|
|
2694
|
-
console: true,
|
|
2695
|
-
context_free: true,
|
|
2696
|
-
creator_action_ordinal: true,
|
|
2697
|
-
data: true,
|
|
2698
|
-
elapsed: true,
|
|
2699
|
-
global_sequence: true,
|
|
2700
|
-
name: true,
|
|
2701
|
-
receipt: {
|
|
2702
|
-
abi_sequence: true,
|
|
2703
|
-
act_digest: true,
|
|
2704
|
-
auth_sequence: {
|
|
2705
|
-
account: true,
|
|
2706
|
-
sequence: true
|
|
2707
|
-
},
|
|
2708
|
-
code_sequence: true,
|
|
2709
|
-
global_sequence: true,
|
|
2710
|
-
receiver: true,
|
|
2711
|
-
recv_sequence: true
|
|
2712
|
-
},
|
|
2713
|
-
receiver: true,
|
|
2714
|
-
transaction_id: true
|
|
2715
|
-
};
|
|
2716
|
-
Selector("BlockchainAction")(
|
|
2717
|
-
rawBlockchainActionSelector
|
|
2718
|
-
);
|
|
2719
|
-
|
|
2720
|
-
const rawEntrepreneurSelector = {
|
|
2721
|
-
birthdate: true,
|
|
2722
|
-
city: true,
|
|
2723
|
-
country: true,
|
|
2724
|
-
details: {
|
|
2725
|
-
inn: true,
|
|
2726
|
-
ogrn: true
|
|
2727
|
-
},
|
|
2728
|
-
email: true,
|
|
2729
|
-
first_name: true,
|
|
2730
|
-
full_address: true,
|
|
2731
|
-
last_name: true,
|
|
2732
|
-
middle_name: true,
|
|
2733
|
-
phone: true,
|
|
2734
|
-
username: true
|
|
2735
|
-
};
|
|
2736
|
-
|
|
2737
|
-
const rawOrganizationSelector = {
|
|
2738
|
-
city: true,
|
|
2739
|
-
country: true,
|
|
2740
|
-
details: {
|
|
2741
|
-
inn: true,
|
|
2742
|
-
kpp: true,
|
|
2743
|
-
ogrn: true
|
|
2744
|
-
},
|
|
2745
|
-
email: true,
|
|
2746
|
-
fact_address: true,
|
|
2747
|
-
full_address: true,
|
|
2748
|
-
full_name: true,
|
|
2749
|
-
phone: true,
|
|
2750
|
-
represented_by: {
|
|
2751
|
-
based_on: true,
|
|
2752
|
-
first_name: true,
|
|
2753
|
-
last_name: true,
|
|
2754
|
-
middle_name: true,
|
|
2755
|
-
position: true
|
|
2756
|
-
},
|
|
2757
|
-
short_name: true,
|
|
2758
|
-
type: true,
|
|
2759
|
-
username: true
|
|
2760
|
-
};
|
|
2761
|
-
|
|
2762
|
-
const rawTransactionSelector = {
|
|
2763
|
-
chain: true,
|
|
2764
|
-
request: true,
|
|
2765
|
-
resolved: true,
|
|
2766
|
-
response: true,
|
|
2767
|
-
returns: true,
|
|
2768
|
-
revisions: true,
|
|
2769
|
-
signatures: true,
|
|
2770
|
-
signer: true,
|
|
2771
|
-
transaction: true
|
|
2772
|
-
};
|
|
2773
|
-
Selector("Transaction")(rawTransactionSelector);
|
|
2774
|
-
|
|
2775
2790
|
const rawAssetContributionActDocumentSelector = {
|
|
2776
2791
|
...rawDocumentSelector,
|
|
2777
2792
|
meta: {
|
|
@@ -3877,13 +3892,6 @@ const index$d = {
|
|
|
3877
3892
|
GetExtensions: getExtensions
|
|
3878
3893
|
};
|
|
3879
3894
|
|
|
3880
|
-
const paginationSelector = {
|
|
3881
|
-
items: {},
|
|
3882
|
-
totalCount: true,
|
|
3883
|
-
totalPages: true,
|
|
3884
|
-
currentPage: true
|
|
3885
|
-
};
|
|
3886
|
-
|
|
3887
3895
|
const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
|
|
3888
3896
|
Selector("PaymentMethodPaginationResult")(rawPaymentMethodPaginationSelector);
|
|
3889
3897
|
|
|
@@ -3929,12 +3937,9 @@ const getAccount = {
|
|
|
3929
3937
|
query: query$6
|
|
3930
3938
|
};
|
|
3931
3939
|
|
|
3932
|
-
const rawAccountsPaginationSelector = { ...paginationSelector, items: rawAccountSelector };
|
|
3933
|
-
const accountsPaginationSelector = Selector("AccountsPaginationResult")(rawAccountsPaginationSelector);
|
|
3934
|
-
|
|
3935
3940
|
const name$5 = "getAccounts";
|
|
3936
3941
|
const query$5 = Selector("Query")({
|
|
3937
|
-
[name$5]: [{ data: $("data", "GetAccountsInput
|
|
3942
|
+
[name$5]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
3938
3943
|
});
|
|
3939
3944
|
|
|
3940
3945
|
const getAccounts = {
|