@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.mjs
CHANGED
|
@@ -764,7 +764,6 @@ const AllTypesProps = {
|
|
|
764
764
|
user_agreement: "SignedDigitalDocumentInput",
|
|
765
765
|
wallet_agreement: "SignedDigitalDocumentInput"
|
|
766
766
|
},
|
|
767
|
-
RegisterRole: "enum",
|
|
768
767
|
RepresentedByInput: {},
|
|
769
768
|
ResetKeyInput: {},
|
|
770
769
|
ReturnByAssetActGenerateDocumentInput: {},
|
|
@@ -814,9 +813,7 @@ const AllTypesProps = {
|
|
|
814
813
|
UpdateAccountInput: {
|
|
815
814
|
entrepreneur_data: "UpdateEntrepreneurDataInput",
|
|
816
815
|
individual_data: "UpdateIndividualDataInput",
|
|
817
|
-
organization_data: "UpdateOrganizationDataInput"
|
|
818
|
-
role: "RegisterRole",
|
|
819
|
-
type: "AccountType"
|
|
816
|
+
organization_data: "UpdateOrganizationDataInput"
|
|
820
817
|
},
|
|
821
818
|
UpdateBankAccountInput: {
|
|
822
819
|
data: "BankAccountInput"
|
|
@@ -830,8 +827,7 @@ const AllTypesProps = {
|
|
|
830
827
|
},
|
|
831
828
|
UpdateOrganizationDataInput: {
|
|
832
829
|
details: "OrganizationDetailsInput",
|
|
833
|
-
represented_by: "RepresentedByInput"
|
|
834
|
-
type: "OrganizationType"
|
|
830
|
+
represented_by: "RepresentedByInput"
|
|
835
831
|
},
|
|
836
832
|
UpdateRequestInput: {},
|
|
837
833
|
UserStatus: "enum",
|
|
@@ -848,6 +844,7 @@ const ReturnTypes = {
|
|
|
848
844
|
Account: {
|
|
849
845
|
blockchain_account: "BlockchainAccount",
|
|
850
846
|
participant_account: "ParticipantAccount",
|
|
847
|
+
private_account: "PrivateAccount",
|
|
851
848
|
provider_account: "MonoAccount",
|
|
852
849
|
user_account: "UserAccount",
|
|
853
850
|
username: "String"
|
|
@@ -1040,6 +1037,7 @@ const ReturnTypes = {
|
|
|
1040
1037
|
authorized: "Boolean",
|
|
1041
1038
|
authorized_by: "String",
|
|
1042
1039
|
batch_id: "Float",
|
|
1040
|
+
callback_contract: "String",
|
|
1043
1041
|
coopname: "String",
|
|
1044
1042
|
created_at: "String",
|
|
1045
1043
|
expired_at: "String",
|
|
@@ -1374,10 +1372,12 @@ const ReturnTypes = {
|
|
|
1374
1372
|
braname: "String",
|
|
1375
1373
|
created_at: "DateTime",
|
|
1376
1374
|
has_vote: "Boolean",
|
|
1375
|
+
initial_amount: "String",
|
|
1377
1376
|
is_initial: "Boolean",
|
|
1378
1377
|
is_minimum: "Boolean",
|
|
1379
1378
|
last_min_pay: "DateTime",
|
|
1380
1379
|
last_update: "DateTime",
|
|
1380
|
+
minimum_amount: "String",
|
|
1381
1381
|
status: "String",
|
|
1382
1382
|
type: "String",
|
|
1383
1383
|
username: "String"
|
|
@@ -1491,6 +1491,12 @@ const ReturnTypes = {
|
|
|
1491
1491
|
permission: "PermissionLevel",
|
|
1492
1492
|
weight: "Int"
|
|
1493
1493
|
},
|
|
1494
|
+
PrivateAccount: {
|
|
1495
|
+
entrepreneur_data: "Entrepreneur",
|
|
1496
|
+
individual_data: "Individual",
|
|
1497
|
+
organization_data: "Organization",
|
|
1498
|
+
type: "AccountType"
|
|
1499
|
+
},
|
|
1494
1500
|
ProjectFreeDecisionDocument: {
|
|
1495
1501
|
binary: "String",
|
|
1496
1502
|
full_title: "String",
|
|
@@ -1965,22 +1971,12 @@ const Gql = Chain(HOST, {
|
|
|
1965
1971
|
const ZeusScalars = ZeusSelect();
|
|
1966
1972
|
const fields = (k) => {
|
|
1967
1973
|
const t = ReturnTypes[k];
|
|
1968
|
-
const fnType = k in AllTypesProps ? AllTypesProps[k] : void 0;
|
|
1969
|
-
const hasFnTypes = typeof fnType === "object" ? fnType : void 0;
|
|
1970
1974
|
const o = Object.fromEntries(
|
|
1971
|
-
Object.entries(t).filter(([
|
|
1972
|
-
const isFunctionType = hasFnTypes && k2 in hasFnTypes && !!hasFnTypes[k2];
|
|
1973
|
-
if (isFunctionType)
|
|
1974
|
-
return false;
|
|
1975
|
+
Object.entries(t).filter(([, value]) => {
|
|
1975
1976
|
const isReturnType = ReturnTypes[value];
|
|
1976
|
-
if (!isReturnType)
|
|
1977
|
-
return true;
|
|
1978
|
-
if (typeof isReturnType !== "string")
|
|
1979
|
-
return false;
|
|
1980
|
-
if (isReturnType.startsWith("scalar.")) {
|
|
1977
|
+
if (!isReturnType || typeof isReturnType === "string" && isReturnType.startsWith("scalar.")) {
|
|
1981
1978
|
return true;
|
|
1982
1979
|
}
|
|
1983
|
-
return false;
|
|
1984
1980
|
}).map(([key]) => [key, true])
|
|
1985
1981
|
);
|
|
1986
1982
|
return o;
|
|
@@ -2286,10 +2282,6 @@ var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
|
2286
2282
|
PaymentStatus2["REFUNDED"] = "REFUNDED";
|
|
2287
2283
|
return PaymentStatus2;
|
|
2288
2284
|
})(PaymentStatus || {});
|
|
2289
|
-
var RegisterRole = /* @__PURE__ */ ((RegisterRole2) => {
|
|
2290
|
-
RegisterRole2["User"] = "User";
|
|
2291
|
-
return RegisterRole2;
|
|
2292
|
-
})(RegisterRole || {});
|
|
2293
2285
|
var SystemStatus = /* @__PURE__ */ ((SystemStatus2) => {
|
|
2294
2286
|
SystemStatus2["active"] = "active";
|
|
2295
2287
|
SystemStatus2["install"] = "install";
|
|
@@ -2324,7 +2316,6 @@ const index$p = {
|
|
|
2324
2316
|
OrganizationType: OrganizationType,
|
|
2325
2317
|
PaymentStatus: PaymentStatus,
|
|
2326
2318
|
PrepareScalarPaths: PrepareScalarPaths,
|
|
2327
|
-
RegisterRole: RegisterRole,
|
|
2328
2319
|
ResolveFromPath: ResolveFromPath,
|
|
2329
2320
|
SEPARATOR: SEPARATOR,
|
|
2330
2321
|
START_VAR_NAME: START_VAR_NAME,
|
|
@@ -2454,6 +2445,168 @@ Selector("ParticipantAccount")(
|
|
|
2454
2445
|
rawParticipantAccountSelector
|
|
2455
2446
|
);
|
|
2456
2447
|
|
|
2448
|
+
const rawBankAccountSelector = {
|
|
2449
|
+
details: {
|
|
2450
|
+
bik: true,
|
|
2451
|
+
corr: true,
|
|
2452
|
+
kpp: true
|
|
2453
|
+
},
|
|
2454
|
+
account_number: true,
|
|
2455
|
+
bank_name: true,
|
|
2456
|
+
card_number: true,
|
|
2457
|
+
currency: true
|
|
2458
|
+
};
|
|
2459
|
+
Selector("BankAccount")(rawBankAccountSelector);
|
|
2460
|
+
|
|
2461
|
+
const rawBlockchainActionSelector = {
|
|
2462
|
+
account: true,
|
|
2463
|
+
account_ram_deltas: {
|
|
2464
|
+
account: true,
|
|
2465
|
+
delta: true
|
|
2466
|
+
},
|
|
2467
|
+
action_ordinal: true,
|
|
2468
|
+
authorization: {
|
|
2469
|
+
actor: true,
|
|
2470
|
+
permission: true
|
|
2471
|
+
},
|
|
2472
|
+
block_id: true,
|
|
2473
|
+
block_num: true,
|
|
2474
|
+
chain_id: true,
|
|
2475
|
+
console: true,
|
|
2476
|
+
context_free: true,
|
|
2477
|
+
creator_action_ordinal: true,
|
|
2478
|
+
data: true,
|
|
2479
|
+
elapsed: true,
|
|
2480
|
+
global_sequence: true,
|
|
2481
|
+
name: true,
|
|
2482
|
+
receipt: {
|
|
2483
|
+
abi_sequence: true,
|
|
2484
|
+
act_digest: true,
|
|
2485
|
+
auth_sequence: {
|
|
2486
|
+
account: true,
|
|
2487
|
+
sequence: true
|
|
2488
|
+
},
|
|
2489
|
+
code_sequence: true,
|
|
2490
|
+
global_sequence: true,
|
|
2491
|
+
receiver: true,
|
|
2492
|
+
recv_sequence: true
|
|
2493
|
+
},
|
|
2494
|
+
receiver: true,
|
|
2495
|
+
transaction_id: true
|
|
2496
|
+
};
|
|
2497
|
+
Selector("BlockchainAction")(
|
|
2498
|
+
rawBlockchainActionSelector
|
|
2499
|
+
);
|
|
2500
|
+
|
|
2501
|
+
const rawDocumentMetaSelector = {
|
|
2502
|
+
block_num: true,
|
|
2503
|
+
coopname: true,
|
|
2504
|
+
created_at: true,
|
|
2505
|
+
generator: true,
|
|
2506
|
+
lang: true,
|
|
2507
|
+
links: true,
|
|
2508
|
+
registry_id: true,
|
|
2509
|
+
timezone: true,
|
|
2510
|
+
title: true,
|
|
2511
|
+
username: true,
|
|
2512
|
+
version: true
|
|
2513
|
+
};
|
|
2514
|
+
const rawDocumentSelector = {
|
|
2515
|
+
binary: true,
|
|
2516
|
+
full_title: true,
|
|
2517
|
+
hash: true,
|
|
2518
|
+
html: true,
|
|
2519
|
+
meta: rawDocumentMetaSelector
|
|
2520
|
+
// Общая часть meta
|
|
2521
|
+
};
|
|
2522
|
+
const documentSelector = Selector("GeneratedDocument")(rawDocumentSelector);
|
|
2523
|
+
|
|
2524
|
+
const rawEntrepreneurSelector = {
|
|
2525
|
+
birthdate: true,
|
|
2526
|
+
city: true,
|
|
2527
|
+
country: true,
|
|
2528
|
+
details: {
|
|
2529
|
+
inn: true,
|
|
2530
|
+
ogrn: true
|
|
2531
|
+
},
|
|
2532
|
+
email: true,
|
|
2533
|
+
first_name: true,
|
|
2534
|
+
full_address: true,
|
|
2535
|
+
last_name: true,
|
|
2536
|
+
middle_name: true,
|
|
2537
|
+
phone: true,
|
|
2538
|
+
username: true
|
|
2539
|
+
};
|
|
2540
|
+
const entrepreneurSelector = rawEntrepreneurSelector;
|
|
2541
|
+
|
|
2542
|
+
const rawIndividualSelector = {
|
|
2543
|
+
email: true,
|
|
2544
|
+
full_address: true,
|
|
2545
|
+
phone: true,
|
|
2546
|
+
first_name: true,
|
|
2547
|
+
last_name: true,
|
|
2548
|
+
middle_name: true,
|
|
2549
|
+
birthdate: true,
|
|
2550
|
+
passport: {
|
|
2551
|
+
number: true,
|
|
2552
|
+
code: true,
|
|
2553
|
+
issued_at: true,
|
|
2554
|
+
issued_by: true,
|
|
2555
|
+
series: true
|
|
2556
|
+
},
|
|
2557
|
+
username: true
|
|
2558
|
+
};
|
|
2559
|
+
const individualSelector = rawIndividualSelector;
|
|
2560
|
+
|
|
2561
|
+
const rawOrganizationSelector = {
|
|
2562
|
+
city: true,
|
|
2563
|
+
country: true,
|
|
2564
|
+
details: {
|
|
2565
|
+
inn: true,
|
|
2566
|
+
kpp: true,
|
|
2567
|
+
ogrn: true
|
|
2568
|
+
},
|
|
2569
|
+
email: true,
|
|
2570
|
+
fact_address: true,
|
|
2571
|
+
full_address: true,
|
|
2572
|
+
full_name: true,
|
|
2573
|
+
phone: true,
|
|
2574
|
+
represented_by: {
|
|
2575
|
+
based_on: true,
|
|
2576
|
+
first_name: true,
|
|
2577
|
+
last_name: true,
|
|
2578
|
+
middle_name: true,
|
|
2579
|
+
position: true
|
|
2580
|
+
},
|
|
2581
|
+
short_name: true,
|
|
2582
|
+
type: true,
|
|
2583
|
+
username: true
|
|
2584
|
+
};
|
|
2585
|
+
const organizationSelector = rawOrganizationSelector;
|
|
2586
|
+
|
|
2587
|
+
const rawTransactionSelector = {
|
|
2588
|
+
chain: true,
|
|
2589
|
+
request: true,
|
|
2590
|
+
resolved: true,
|
|
2591
|
+
response: true,
|
|
2592
|
+
returns: true,
|
|
2593
|
+
revisions: true,
|
|
2594
|
+
signatures: true,
|
|
2595
|
+
signer: true,
|
|
2596
|
+
transaction: true
|
|
2597
|
+
};
|
|
2598
|
+
Selector("Transaction")(rawTransactionSelector);
|
|
2599
|
+
|
|
2600
|
+
const rawPrivateAccountSelector = {
|
|
2601
|
+
type: true,
|
|
2602
|
+
individual_data: individualSelector,
|
|
2603
|
+
organization_data: organizationSelector,
|
|
2604
|
+
entrepreneur_data: entrepreneurSelector
|
|
2605
|
+
};
|
|
2606
|
+
Selector("PrivateAccount")(
|
|
2607
|
+
rawPrivateAccountSelector
|
|
2608
|
+
);
|
|
2609
|
+
|
|
2457
2610
|
const rawUserAccountSelector = {
|
|
2458
2611
|
meta: true,
|
|
2459
2612
|
referer: true,
|
|
@@ -2481,7 +2634,8 @@ const rawAccountSelector = {
|
|
|
2481
2634
|
blockchain_account: rawBlockchainAccountSelector,
|
|
2482
2635
|
provider_account: rawMonoAccountSelector,
|
|
2483
2636
|
participant_account: rawParticipantAccountSelector,
|
|
2484
|
-
user_account: rawUserAccountSelector
|
|
2637
|
+
user_account: rawUserAccountSelector,
|
|
2638
|
+
private_account: rawPrivateAccountSelector
|
|
2485
2639
|
};
|
|
2486
2640
|
const accountSelector = Selector("Account")(rawAccountSelector);
|
|
2487
2641
|
|
|
@@ -2534,36 +2688,15 @@ const startResetKey = {
|
|
|
2534
2688
|
name: name$15
|
|
2535
2689
|
};
|
|
2536
2690
|
|
|
2537
|
-
const
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
last_name: true,
|
|
2543
|
-
middle_name: true,
|
|
2544
|
-
birthdate: true,
|
|
2545
|
-
passport: {
|
|
2546
|
-
number: true,
|
|
2547
|
-
code: true,
|
|
2548
|
-
issued_at: true,
|
|
2549
|
-
issued_by: true,
|
|
2550
|
-
series: true
|
|
2551
|
-
},
|
|
2552
|
-
username: true
|
|
2691
|
+
const paginationSelector = {
|
|
2692
|
+
items: {},
|
|
2693
|
+
totalCount: true,
|
|
2694
|
+
totalPages: true,
|
|
2695
|
+
currentPage: true
|
|
2553
2696
|
};
|
|
2554
2697
|
|
|
2555
|
-
const
|
|
2556
|
-
|
|
2557
|
-
bik: true,
|
|
2558
|
-
corr: true,
|
|
2559
|
-
kpp: true
|
|
2560
|
-
},
|
|
2561
|
-
account_number: true,
|
|
2562
|
-
bank_name: true,
|
|
2563
|
-
card_number: true,
|
|
2564
|
-
currency: true
|
|
2565
|
-
};
|
|
2566
|
-
Selector("BankAccount")(rawBankAccountSelector);
|
|
2698
|
+
const rawAccountsPaginationSelector = { ...paginationSelector, items: rawAccountSelector };
|
|
2699
|
+
const accountsPaginationSelector = Selector("AccountsPaginationResult")(rawAccountsPaginationSelector);
|
|
2567
2700
|
|
|
2568
2701
|
const rawBankPaymentMethodSelector = {
|
|
2569
2702
|
data: rawBankAccountSelector,
|
|
@@ -2637,29 +2770,6 @@ const branchSelectorForUsers = Selector("Branch")(
|
|
|
2637
2770
|
rawBranchSelectorForUsers
|
|
2638
2771
|
);
|
|
2639
2772
|
|
|
2640
|
-
const rawDocumentMetaSelector = {
|
|
2641
|
-
block_num: true,
|
|
2642
|
-
coopname: true,
|
|
2643
|
-
created_at: true,
|
|
2644
|
-
generator: true,
|
|
2645
|
-
lang: true,
|
|
2646
|
-
links: true,
|
|
2647
|
-
registry_id: true,
|
|
2648
|
-
timezone: true,
|
|
2649
|
-
title: true,
|
|
2650
|
-
username: true,
|
|
2651
|
-
version: true
|
|
2652
|
-
};
|
|
2653
|
-
const rawDocumentSelector = {
|
|
2654
|
-
binary: true,
|
|
2655
|
-
full_title: true,
|
|
2656
|
-
hash: true,
|
|
2657
|
-
html: true,
|
|
2658
|
-
meta: rawDocumentMetaSelector
|
|
2659
|
-
// Общая часть meta
|
|
2660
|
-
};
|
|
2661
|
-
const documentSelector = Selector("GeneratedDocument")(rawDocumentSelector);
|
|
2662
|
-
|
|
2663
2773
|
const rawSelectBranchDocumentSelector = {
|
|
2664
2774
|
...rawDocumentSelector,
|
|
2665
2775
|
meta: {
|
|
@@ -2671,101 +2781,6 @@ const rawSelectBranchDocumentSelector = {
|
|
|
2671
2781
|
};
|
|
2672
2782
|
const generateSelectBranchDocumentSelector = Selector("SelectBranchDocument")(rawSelectBranchDocumentSelector);
|
|
2673
2783
|
|
|
2674
|
-
const rawBlockchainActionSelector = {
|
|
2675
|
-
account: true,
|
|
2676
|
-
account_ram_deltas: {
|
|
2677
|
-
account: true,
|
|
2678
|
-
delta: true
|
|
2679
|
-
},
|
|
2680
|
-
action_ordinal: true,
|
|
2681
|
-
authorization: {
|
|
2682
|
-
actor: true,
|
|
2683
|
-
permission: true
|
|
2684
|
-
},
|
|
2685
|
-
block_id: true,
|
|
2686
|
-
block_num: true,
|
|
2687
|
-
chain_id: true,
|
|
2688
|
-
console: true,
|
|
2689
|
-
context_free: true,
|
|
2690
|
-
creator_action_ordinal: true,
|
|
2691
|
-
data: true,
|
|
2692
|
-
elapsed: true,
|
|
2693
|
-
global_sequence: true,
|
|
2694
|
-
name: true,
|
|
2695
|
-
receipt: {
|
|
2696
|
-
abi_sequence: true,
|
|
2697
|
-
act_digest: true,
|
|
2698
|
-
auth_sequence: {
|
|
2699
|
-
account: true,
|
|
2700
|
-
sequence: true
|
|
2701
|
-
},
|
|
2702
|
-
code_sequence: true,
|
|
2703
|
-
global_sequence: true,
|
|
2704
|
-
receiver: true,
|
|
2705
|
-
recv_sequence: true
|
|
2706
|
-
},
|
|
2707
|
-
receiver: true,
|
|
2708
|
-
transaction_id: true
|
|
2709
|
-
};
|
|
2710
|
-
Selector("BlockchainAction")(
|
|
2711
|
-
rawBlockchainActionSelector
|
|
2712
|
-
);
|
|
2713
|
-
|
|
2714
|
-
const rawEntrepreneurSelector = {
|
|
2715
|
-
birthdate: true,
|
|
2716
|
-
city: true,
|
|
2717
|
-
country: true,
|
|
2718
|
-
details: {
|
|
2719
|
-
inn: true,
|
|
2720
|
-
ogrn: true
|
|
2721
|
-
},
|
|
2722
|
-
email: true,
|
|
2723
|
-
first_name: true,
|
|
2724
|
-
full_address: true,
|
|
2725
|
-
last_name: true,
|
|
2726
|
-
middle_name: true,
|
|
2727
|
-
phone: true,
|
|
2728
|
-
username: true
|
|
2729
|
-
};
|
|
2730
|
-
|
|
2731
|
-
const rawOrganizationSelector = {
|
|
2732
|
-
city: true,
|
|
2733
|
-
country: true,
|
|
2734
|
-
details: {
|
|
2735
|
-
inn: true,
|
|
2736
|
-
kpp: true,
|
|
2737
|
-
ogrn: true
|
|
2738
|
-
},
|
|
2739
|
-
email: true,
|
|
2740
|
-
fact_address: true,
|
|
2741
|
-
full_address: true,
|
|
2742
|
-
full_name: true,
|
|
2743
|
-
phone: true,
|
|
2744
|
-
represented_by: {
|
|
2745
|
-
based_on: true,
|
|
2746
|
-
first_name: true,
|
|
2747
|
-
last_name: true,
|
|
2748
|
-
middle_name: true,
|
|
2749
|
-
position: true
|
|
2750
|
-
},
|
|
2751
|
-
short_name: true,
|
|
2752
|
-
type: true,
|
|
2753
|
-
username: true
|
|
2754
|
-
};
|
|
2755
|
-
|
|
2756
|
-
const rawTransactionSelector = {
|
|
2757
|
-
chain: true,
|
|
2758
|
-
request: true,
|
|
2759
|
-
resolved: true,
|
|
2760
|
-
response: true,
|
|
2761
|
-
returns: true,
|
|
2762
|
-
revisions: true,
|
|
2763
|
-
signatures: true,
|
|
2764
|
-
signer: true,
|
|
2765
|
-
transaction: true
|
|
2766
|
-
};
|
|
2767
|
-
Selector("Transaction")(rawTransactionSelector);
|
|
2768
|
-
|
|
2769
2784
|
const rawAssetContributionActDocumentSelector = {
|
|
2770
2785
|
...rawDocumentSelector,
|
|
2771
2786
|
meta: {
|
|
@@ -3871,13 +3886,6 @@ const index$d = {
|
|
|
3871
3886
|
GetExtensions: getExtensions
|
|
3872
3887
|
};
|
|
3873
3888
|
|
|
3874
|
-
const paginationSelector = {
|
|
3875
|
-
items: {},
|
|
3876
|
-
totalCount: true,
|
|
3877
|
-
totalPages: true,
|
|
3878
|
-
currentPage: true
|
|
3879
|
-
};
|
|
3880
|
-
|
|
3881
3889
|
const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
|
|
3882
3890
|
Selector("PaymentMethodPaginationResult")(rawPaymentMethodPaginationSelector);
|
|
3883
3891
|
|
|
@@ -3923,12 +3931,9 @@ const getAccount = {
|
|
|
3923
3931
|
query: query$6
|
|
3924
3932
|
};
|
|
3925
3933
|
|
|
3926
|
-
const rawAccountsPaginationSelector = { ...paginationSelector, items: rawAccountSelector };
|
|
3927
|
-
const accountsPaginationSelector = Selector("AccountsPaginationResult")(rawAccountsPaginationSelector);
|
|
3928
|
-
|
|
3929
3934
|
const name$5 = "getAccounts";
|
|
3930
3935
|
const query$5 = Selector("Query")({
|
|
3931
|
-
[name$5]: [{ data: $("data", "GetAccountsInput
|
|
3936
|
+
[name$5]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
3932
3937
|
});
|
|
3933
3938
|
|
|
3934
3939
|
const getAccounts = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coopenomics/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.10",
|
|
5
5
|
"private": false,
|
|
6
6
|
"packageManager": "pnpm@9.9.0",
|
|
7
7
|
"description": "",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@types/node": "^22.5.4",
|
|
62
62
|
"@types/ws": "^8.5.13",
|
|
63
63
|
"bumpp": "^9.5.2",
|
|
64
|
-
"cooptypes": "2.2.
|
|
64
|
+
"cooptypes": "2.2.10",
|
|
65
65
|
"eslint": "^9.9.1",
|
|
66
66
|
"esno": "^4.7.0",
|
|
67
67
|
"glob": "^11.0.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"vite": "^5.4.3",
|
|
76
76
|
"vitest": "^2.0.5"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "e5e28ff652112fe3bacb8036a898a1344ad361fa"
|
|
79
79
|
}
|