@coopenomics/sdk 2025.6.14 → 2025.6.24
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 +273 -229
- package/dist/index.d.cts +523 -305
- package/dist/index.d.mts +523 -305
- package/dist/index.d.ts +523 -305
- package/dist/index.mjs +273 -229
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1163,6 +1163,9 @@ const AllTypesProps = {
|
|
|
1163
1163
|
getPayments: {
|
|
1164
1164
|
data: "GetPaymentsInput",
|
|
1165
1165
|
options: "PaginationInput"
|
|
1166
|
+
},
|
|
1167
|
+
searchPrivateAccounts: {
|
|
1168
|
+
data: "SearchPrivateAccountsInput"
|
|
1166
1169
|
}
|
|
1167
1170
|
},
|
|
1168
1171
|
ReceiveOnRequestInput: {
|
|
@@ -1206,6 +1209,7 @@ const AllTypesProps = {
|
|
|
1206
1209
|
ReturnByAssetStatementSignedMetaDocumentInput: {
|
|
1207
1210
|
request: "CommonRequestInput"
|
|
1208
1211
|
},
|
|
1212
|
+
SearchPrivateAccountsInput: {},
|
|
1209
1213
|
SelectBranchGenerateDocumentInput: {},
|
|
1210
1214
|
SelectBranchInput: {
|
|
1211
1215
|
document: "SelectBranchSignedDocumentInput"
|
|
@@ -1652,6 +1656,7 @@ const ReturnTypes = {
|
|
|
1652
1656
|
id: "Float",
|
|
1653
1657
|
initiator: "String",
|
|
1654
1658
|
initiator_certificate: "UserCertificateUnion",
|
|
1659
|
+
level: "String",
|
|
1655
1660
|
notified_users: "String",
|
|
1656
1661
|
open_at: "DateTime",
|
|
1657
1662
|
presider: "String",
|
|
@@ -1923,6 +1928,17 @@ const ReturnTypes = {
|
|
|
1923
1928
|
organization_data: "Organization",
|
|
1924
1929
|
type: "AccountType"
|
|
1925
1930
|
},
|
|
1931
|
+
PrivateAccountSearchData: {
|
|
1932
|
+
"...on Entrepreneur": "Entrepreneur",
|
|
1933
|
+
"...on Individual": "Individual",
|
|
1934
|
+
"...on Organization": "Organization"
|
|
1935
|
+
},
|
|
1936
|
+
PrivateAccountSearchResult: {
|
|
1937
|
+
data: "PrivateAccountSearchData",
|
|
1938
|
+
highlightedFields: "String",
|
|
1939
|
+
score: "Float",
|
|
1940
|
+
type: "String"
|
|
1941
|
+
},
|
|
1926
1942
|
PublicChairman: {
|
|
1927
1943
|
first_name: "String",
|
|
1928
1944
|
last_name: "String",
|
|
@@ -1940,7 +1956,8 @@ const ReturnTypes = {
|
|
|
1940
1956
|
getMeets: "MeetAggregate",
|
|
1941
1957
|
getPaymentMethods: "PaymentMethodPaginationResult",
|
|
1942
1958
|
getPayments: "PaymentPaginationResult",
|
|
1943
|
-
getSystemInfo: "SystemInfo"
|
|
1959
|
+
getSystemInfo: "SystemInfo",
|
|
1960
|
+
searchPrivateAccounts: "PrivateAccountSearchResult"
|
|
1944
1961
|
},
|
|
1945
1962
|
Question: {
|
|
1946
1963
|
context: "String",
|
|
@@ -3056,37 +3073,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
|
|
|
3056
3073
|
rawRegisteredAccountSelector
|
|
3057
3074
|
);
|
|
3058
3075
|
|
|
3059
|
-
const name$
|
|
3076
|
+
const name$1m = "registerAccount";
|
|
3060
3077
|
const mutation$18 = Selector("Mutation")({
|
|
3061
|
-
[name$
|
|
3078
|
+
[name$1m]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
|
|
3062
3079
|
});
|
|
3063
3080
|
|
|
3064
3081
|
const registerAccount = {
|
|
3065
3082
|
__proto__: null,
|
|
3066
3083
|
mutation: mutation$18,
|
|
3067
|
-
name: name$
|
|
3084
|
+
name: name$1m
|
|
3068
3085
|
};
|
|
3069
3086
|
|
|
3070
|
-
const name$
|
|
3087
|
+
const name$1l = "resetKey";
|
|
3071
3088
|
const mutation$17 = Selector("Mutation")({
|
|
3072
|
-
[name$
|
|
3089
|
+
[name$1l]: [{ data: $("data", "ResetKeyInput!") }, true]
|
|
3073
3090
|
});
|
|
3074
3091
|
|
|
3075
3092
|
const resetKey = {
|
|
3076
3093
|
__proto__: null,
|
|
3077
3094
|
mutation: mutation$17,
|
|
3078
|
-
name: name$
|
|
3095
|
+
name: name$1l
|
|
3079
3096
|
};
|
|
3080
3097
|
|
|
3081
|
-
const name$
|
|
3098
|
+
const name$1k = "startResetKey";
|
|
3082
3099
|
const mutation$16 = Selector("Mutation")({
|
|
3083
|
-
[name$
|
|
3100
|
+
[name$1k]: [{ data: $("data", "StartResetKeyInput!") }, true]
|
|
3084
3101
|
});
|
|
3085
3102
|
|
|
3086
3103
|
const startResetKey = {
|
|
3087
3104
|
__proto__: null,
|
|
3088
3105
|
mutation: mutation$16,
|
|
3089
|
-
name: name$
|
|
3106
|
+
name: name$1k
|
|
3090
3107
|
};
|
|
3091
3108
|
|
|
3092
3109
|
const paginationSelector = {
|
|
@@ -3344,7 +3361,8 @@ const rawMeetSelector = {
|
|
|
3344
3361
|
authorization: rawDocumentAggregateSelector,
|
|
3345
3362
|
decision1: rawDocumentAggregateSelector,
|
|
3346
3363
|
decision2: rawDocumentAggregateSelector,
|
|
3347
|
-
notified_users: true
|
|
3364
|
+
notified_users: true,
|
|
3365
|
+
level: true
|
|
3348
3366
|
};
|
|
3349
3367
|
const rawMeetProcessingSelector = {
|
|
3350
3368
|
hash: true,
|
|
@@ -3492,15 +3510,15 @@ const rawSystemInfoSelector = {
|
|
|
3492
3510
|
};
|
|
3493
3511
|
const systemInfoSelector = Selector("SystemInfo")(rawSystemInfoSelector);
|
|
3494
3512
|
|
|
3495
|
-
const name$
|
|
3513
|
+
const name$1j = "updateAccount";
|
|
3496
3514
|
const mutation$15 = Selector("Mutation")({
|
|
3497
|
-
[name$
|
|
3515
|
+
[name$1j]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
|
|
3498
3516
|
});
|
|
3499
3517
|
|
|
3500
3518
|
const updateAccount = {
|
|
3501
3519
|
__proto__: null,
|
|
3502
3520
|
mutation: mutation$15,
|
|
3503
|
-
name: name$
|
|
3521
|
+
name: name$1j
|
|
3504
3522
|
};
|
|
3505
3523
|
|
|
3506
3524
|
const index$r = {
|
|
@@ -3511,48 +3529,48 @@ const index$r = {
|
|
|
3511
3529
|
UpdateAccount: updateAccount
|
|
3512
3530
|
};
|
|
3513
3531
|
|
|
3514
|
-
const name$
|
|
3532
|
+
const name$1i = "generatePrivacyAgreement";
|
|
3515
3533
|
const mutation$14 = Selector("Mutation")({
|
|
3516
|
-
[name$
|
|
3534
|
+
[name$1i]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3517
3535
|
});
|
|
3518
3536
|
|
|
3519
3537
|
const generatePrivacyAgreement = {
|
|
3520
3538
|
__proto__: null,
|
|
3521
3539
|
mutation: mutation$14,
|
|
3522
|
-
name: name$
|
|
3540
|
+
name: name$1i
|
|
3523
3541
|
};
|
|
3524
3542
|
|
|
3525
|
-
const name$
|
|
3543
|
+
const name$1h = "generateSignatureAgreement";
|
|
3526
3544
|
const mutation$13 = Selector("Mutation")({
|
|
3527
|
-
[name$
|
|
3545
|
+
[name$1h]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3528
3546
|
});
|
|
3529
3547
|
|
|
3530
3548
|
const generateSignatureAgreement = {
|
|
3531
3549
|
__proto__: null,
|
|
3532
3550
|
mutation: mutation$13,
|
|
3533
|
-
name: name$
|
|
3551
|
+
name: name$1h
|
|
3534
3552
|
};
|
|
3535
3553
|
|
|
3536
|
-
const name$
|
|
3554
|
+
const name$1g = "generateWalletAgreement";
|
|
3537
3555
|
const mutation$12 = Selector("Mutation")({
|
|
3538
|
-
[name$
|
|
3556
|
+
[name$1g]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3539
3557
|
});
|
|
3540
3558
|
|
|
3541
3559
|
const generateWalletAgreement = {
|
|
3542
3560
|
__proto__: null,
|
|
3543
3561
|
mutation: mutation$12,
|
|
3544
|
-
name: name$
|
|
3562
|
+
name: name$1g
|
|
3545
3563
|
};
|
|
3546
3564
|
|
|
3547
|
-
const name$
|
|
3565
|
+
const name$1f = "generateUserAgreement";
|
|
3548
3566
|
const mutation$11 = Selector("Mutation")({
|
|
3549
|
-
[name$
|
|
3567
|
+
[name$1f]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3550
3568
|
});
|
|
3551
3569
|
|
|
3552
3570
|
const generateUserAgreement = {
|
|
3553
3571
|
__proto__: null,
|
|
3554
3572
|
mutation: mutation$11,
|
|
3555
|
-
name: name$
|
|
3573
|
+
name: name$1f
|
|
3556
3574
|
};
|
|
3557
3575
|
|
|
3558
3576
|
const index$q = {
|
|
@@ -3563,37 +3581,37 @@ const index$q = {
|
|
|
3563
3581
|
GenerateWalletAgreement: generateWalletAgreement
|
|
3564
3582
|
};
|
|
3565
3583
|
|
|
3566
|
-
const name$
|
|
3584
|
+
const name$1e = "refresh";
|
|
3567
3585
|
const mutation$10 = Selector("Mutation")({
|
|
3568
|
-
[name$
|
|
3586
|
+
[name$1e]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
|
|
3569
3587
|
});
|
|
3570
3588
|
|
|
3571
3589
|
const refresh = {
|
|
3572
3590
|
__proto__: null,
|
|
3573
3591
|
mutation: mutation$10,
|
|
3574
|
-
name: name$
|
|
3592
|
+
name: name$1e
|
|
3575
3593
|
};
|
|
3576
3594
|
|
|
3577
|
-
const name$
|
|
3595
|
+
const name$1d = "logout";
|
|
3578
3596
|
const mutation$$ = Selector("Mutation")({
|
|
3579
|
-
[name$
|
|
3597
|
+
[name$1d]: [{ data: $("data", "LogoutInput!") }, true]
|
|
3580
3598
|
});
|
|
3581
3599
|
|
|
3582
3600
|
const logout = {
|
|
3583
3601
|
__proto__: null,
|
|
3584
3602
|
mutation: mutation$$,
|
|
3585
|
-
name: name$
|
|
3603
|
+
name: name$1d
|
|
3586
3604
|
};
|
|
3587
3605
|
|
|
3588
|
-
const name$
|
|
3606
|
+
const name$1c = "login";
|
|
3589
3607
|
const mutation$_ = Selector("Mutation")({
|
|
3590
|
-
[name$
|
|
3608
|
+
[name$1c]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
|
|
3591
3609
|
});
|
|
3592
3610
|
|
|
3593
3611
|
const login = {
|
|
3594
3612
|
__proto__: null,
|
|
3595
3613
|
mutation: mutation$_,
|
|
3596
|
-
name: name$
|
|
3614
|
+
name: name$1c
|
|
3597
3615
|
};
|
|
3598
3616
|
|
|
3599
3617
|
const index$p = {
|
|
@@ -3603,81 +3621,81 @@ const index$p = {
|
|
|
3603
3621
|
Refresh: refresh
|
|
3604
3622
|
};
|
|
3605
3623
|
|
|
3606
|
-
const name$
|
|
3624
|
+
const name$1b = "addTrustedAccount";
|
|
3607
3625
|
const mutation$Z = Selector("Mutation")({
|
|
3608
|
-
[name$
|
|
3626
|
+
[name$1b]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
|
|
3609
3627
|
});
|
|
3610
3628
|
|
|
3611
3629
|
const addTrustedAccount = {
|
|
3612
3630
|
__proto__: null,
|
|
3613
3631
|
mutation: mutation$Z,
|
|
3614
|
-
name: name$
|
|
3632
|
+
name: name$1b
|
|
3615
3633
|
};
|
|
3616
3634
|
|
|
3617
|
-
const name$
|
|
3635
|
+
const name$1a = "createBranch";
|
|
3618
3636
|
const mutation$Y = Selector("Mutation")({
|
|
3619
|
-
[name$
|
|
3637
|
+
[name$1a]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
|
|
3620
3638
|
});
|
|
3621
3639
|
|
|
3622
3640
|
const createBranch = {
|
|
3623
3641
|
__proto__: null,
|
|
3624
3642
|
mutation: mutation$Y,
|
|
3625
|
-
name: name$
|
|
3643
|
+
name: name$1a
|
|
3626
3644
|
};
|
|
3627
3645
|
|
|
3628
|
-
const name$
|
|
3646
|
+
const name$19 = "deleteBranch";
|
|
3629
3647
|
const mutation$X = Selector("Mutation")({
|
|
3630
|
-
[name$
|
|
3648
|
+
[name$19]: [{ data: $("data", "DeleteBranchInput!") }, true]
|
|
3631
3649
|
});
|
|
3632
3650
|
|
|
3633
3651
|
const deleteBranch = {
|
|
3634
3652
|
__proto__: null,
|
|
3635
3653
|
mutation: mutation$X,
|
|
3636
|
-
name: name$
|
|
3654
|
+
name: name$19
|
|
3637
3655
|
};
|
|
3638
3656
|
|
|
3639
|
-
const name$
|
|
3657
|
+
const name$18 = "deleteTrustedAccount";
|
|
3640
3658
|
const mutation$W = Selector("Mutation")({
|
|
3641
|
-
[name$
|
|
3659
|
+
[name$18]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
|
|
3642
3660
|
});
|
|
3643
3661
|
|
|
3644
3662
|
const deleteTrustedAccount = {
|
|
3645
3663
|
__proto__: null,
|
|
3646
3664
|
mutation: mutation$W,
|
|
3647
|
-
name: name$
|
|
3665
|
+
name: name$18
|
|
3648
3666
|
};
|
|
3649
3667
|
|
|
3650
|
-
const name$
|
|
3668
|
+
const name$17 = "editBranch";
|
|
3651
3669
|
const mutation$V = Selector("Mutation")({
|
|
3652
|
-
[name$
|
|
3670
|
+
[name$17]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
|
|
3653
3671
|
});
|
|
3654
3672
|
|
|
3655
3673
|
const editBranch = {
|
|
3656
3674
|
__proto__: null,
|
|
3657
3675
|
mutation: mutation$V,
|
|
3658
|
-
name: name$
|
|
3676
|
+
name: name$17
|
|
3659
3677
|
};
|
|
3660
3678
|
|
|
3661
|
-
const name$
|
|
3679
|
+
const name$16 = "generateSelectBranchDocument";
|
|
3662
3680
|
const mutation$U = Selector("Mutation")({
|
|
3663
|
-
[name$
|
|
3681
|
+
[name$16]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3664
3682
|
});
|
|
3665
3683
|
|
|
3666
3684
|
const generateSelectBranchDocument = {
|
|
3667
3685
|
__proto__: null,
|
|
3668
3686
|
mutation: mutation$U,
|
|
3669
|
-
name: name$
|
|
3687
|
+
name: name$16
|
|
3670
3688
|
};
|
|
3671
3689
|
|
|
3672
|
-
const name$
|
|
3690
|
+
const name$15 = "selectBranch";
|
|
3673
3691
|
const mutation$T = Selector("Mutation")({
|
|
3674
|
-
[name$
|
|
3692
|
+
[name$15]: [{ data: $("data", "SelectBranchInput!") }, true]
|
|
3675
3693
|
});
|
|
3676
3694
|
|
|
3677
3695
|
const selectBranch = {
|
|
3678
3696
|
__proto__: null,
|
|
3679
3697
|
mutation: mutation$T,
|
|
3680
|
-
name: name$
|
|
3698
|
+
name: name$15
|
|
3681
3699
|
};
|
|
3682
3700
|
|
|
3683
3701
|
const index$o = {
|
|
@@ -3691,257 +3709,257 @@ const index$o = {
|
|
|
3691
3709
|
SelectBranch: selectBranch
|
|
3692
3710
|
};
|
|
3693
3711
|
|
|
3694
|
-
const name$
|
|
3712
|
+
const name$14 = "acceptChildOrder";
|
|
3695
3713
|
const mutation$S = Selector("Mutation")({
|
|
3696
|
-
[name$
|
|
3714
|
+
[name$14]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
|
|
3697
3715
|
});
|
|
3698
3716
|
|
|
3699
3717
|
const acceptChildOrder = {
|
|
3700
3718
|
__proto__: null,
|
|
3701
3719
|
mutation: mutation$S,
|
|
3702
|
-
name: name$
|
|
3720
|
+
name: name$14
|
|
3703
3721
|
};
|
|
3704
3722
|
|
|
3705
|
-
const name$
|
|
3723
|
+
const name$13 = "cancelRequest";
|
|
3706
3724
|
const mutation$R = Selector("Mutation")({
|
|
3707
|
-
[name$
|
|
3725
|
+
[name$13]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
|
|
3708
3726
|
});
|
|
3709
3727
|
|
|
3710
3728
|
const cancelRequest = {
|
|
3711
3729
|
__proto__: null,
|
|
3712
3730
|
mutation: mutation$R,
|
|
3713
|
-
name: name$
|
|
3731
|
+
name: name$13
|
|
3714
3732
|
};
|
|
3715
3733
|
|
|
3716
|
-
const name$
|
|
3734
|
+
const name$12 = "confirmReceiveOnRequest";
|
|
3717
3735
|
const mutation$Q = Selector("Mutation")({
|
|
3718
|
-
[name$
|
|
3736
|
+
[name$12]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
3719
3737
|
});
|
|
3720
3738
|
|
|
3721
3739
|
const completeReceiveOnRequest = {
|
|
3722
3740
|
__proto__: null,
|
|
3723
3741
|
mutation: mutation$Q,
|
|
3724
|
-
name: name$
|
|
3742
|
+
name: name$12
|
|
3725
3743
|
};
|
|
3726
3744
|
|
|
3727
|
-
const name$
|
|
3745
|
+
const name$11 = "completeRequest";
|
|
3728
3746
|
const mutation$P = Selector("Mutation")({
|
|
3729
|
-
[name$
|
|
3747
|
+
[name$11]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
|
|
3730
3748
|
});
|
|
3731
3749
|
|
|
3732
3750
|
const completeRequest = {
|
|
3733
3751
|
__proto__: null,
|
|
3734
3752
|
mutation: mutation$P,
|
|
3735
|
-
name: name$
|
|
3753
|
+
name: name$11
|
|
3736
3754
|
};
|
|
3737
3755
|
|
|
3738
|
-
const name
|
|
3756
|
+
const name$10 = "confirmSupplyOnRequest";
|
|
3739
3757
|
const mutation$O = Selector("Mutation")({
|
|
3740
|
-
[name
|
|
3758
|
+
[name$10]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
|
|
3741
3759
|
});
|
|
3742
3760
|
|
|
3743
3761
|
const confirmSupplyOnRequest = {
|
|
3744
3762
|
__proto__: null,
|
|
3745
3763
|
mutation: mutation$O,
|
|
3746
|
-
name: name
|
|
3764
|
+
name: name$10
|
|
3747
3765
|
};
|
|
3748
3766
|
|
|
3749
|
-
const name
|
|
3767
|
+
const name$$ = "createChildOrder";
|
|
3750
3768
|
const mutation$N = Selector("Mutation")({
|
|
3751
|
-
[name
|
|
3769
|
+
[name$$]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
|
|
3752
3770
|
});
|
|
3753
3771
|
|
|
3754
3772
|
const createChildOrder = {
|
|
3755
3773
|
__proto__: null,
|
|
3756
3774
|
mutation: mutation$N,
|
|
3757
|
-
name: name
|
|
3775
|
+
name: name$$
|
|
3758
3776
|
};
|
|
3759
3777
|
|
|
3760
|
-
const name$
|
|
3778
|
+
const name$_ = "createParentOffer";
|
|
3761
3779
|
const mutation$M = Selector("Mutation")({
|
|
3762
|
-
[name$
|
|
3780
|
+
[name$_]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
|
|
3763
3781
|
});
|
|
3764
3782
|
|
|
3765
3783
|
const createParentOffer = {
|
|
3766
3784
|
__proto__: null,
|
|
3767
3785
|
mutation: mutation$M,
|
|
3768
|
-
name: name$
|
|
3786
|
+
name: name$_
|
|
3769
3787
|
};
|
|
3770
3788
|
|
|
3771
|
-
const name$
|
|
3789
|
+
const name$Z = "declineRequest";
|
|
3772
3790
|
const mutation$L = Selector("Mutation")({
|
|
3773
|
-
[name$
|
|
3791
|
+
[name$Z]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
|
|
3774
3792
|
});
|
|
3775
3793
|
|
|
3776
3794
|
const declineRequest = {
|
|
3777
3795
|
__proto__: null,
|
|
3778
3796
|
mutation: mutation$L,
|
|
3779
|
-
name: name$
|
|
3797
|
+
name: name$Z
|
|
3780
3798
|
};
|
|
3781
3799
|
|
|
3782
|
-
const name$
|
|
3800
|
+
const name$Y = "deliverOnRequest";
|
|
3783
3801
|
const mutation$K = Selector("Mutation")({
|
|
3784
|
-
[name$
|
|
3802
|
+
[name$Y]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
|
|
3785
3803
|
});
|
|
3786
3804
|
|
|
3787
3805
|
const deliverOnRequest = {
|
|
3788
3806
|
__proto__: null,
|
|
3789
3807
|
mutation: mutation$K,
|
|
3790
|
-
name: name$
|
|
3808
|
+
name: name$Y
|
|
3791
3809
|
};
|
|
3792
3810
|
|
|
3793
|
-
const name$
|
|
3811
|
+
const name$X = "disputeOnRequest";
|
|
3794
3812
|
const mutation$J = Selector("Mutation")({
|
|
3795
|
-
[name$
|
|
3813
|
+
[name$X]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
|
|
3796
3814
|
});
|
|
3797
3815
|
|
|
3798
3816
|
const disputeOnRequest = {
|
|
3799
3817
|
__proto__: null,
|
|
3800
3818
|
mutation: mutation$J,
|
|
3801
|
-
name: name$
|
|
3819
|
+
name: name$X
|
|
3802
3820
|
};
|
|
3803
3821
|
|
|
3804
|
-
const name$
|
|
3822
|
+
const name$W = "generateAssetContributionAct";
|
|
3805
3823
|
const mutation$I = Selector("Mutation")({
|
|
3806
|
-
[name$
|
|
3824
|
+
[name$W]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3807
3825
|
});
|
|
3808
3826
|
|
|
3809
3827
|
const generateAssetContributionAct = {
|
|
3810
3828
|
__proto__: null,
|
|
3811
3829
|
mutation: mutation$I,
|
|
3812
|
-
name: name$
|
|
3830
|
+
name: name$W
|
|
3813
3831
|
};
|
|
3814
3832
|
|
|
3815
|
-
const name$
|
|
3833
|
+
const name$V = "generateAssetContributionDecision";
|
|
3816
3834
|
const mutation$H = Selector("Mutation")({
|
|
3817
|
-
[name$
|
|
3835
|
+
[name$V]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3818
3836
|
});
|
|
3819
3837
|
|
|
3820
3838
|
const generateAssetContributionDecision = {
|
|
3821
3839
|
__proto__: null,
|
|
3822
3840
|
mutation: mutation$H,
|
|
3823
|
-
name: name$
|
|
3841
|
+
name: name$V
|
|
3824
3842
|
};
|
|
3825
3843
|
|
|
3826
|
-
const name$
|
|
3844
|
+
const name$U = "generateAssetContributionStatement";
|
|
3827
3845
|
const mutation$G = Selector("Mutation")({
|
|
3828
|
-
[name$
|
|
3846
|
+
[name$U]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3829
3847
|
});
|
|
3830
3848
|
|
|
3831
3849
|
const generateAssetContributionStatement = {
|
|
3832
3850
|
__proto__: null,
|
|
3833
3851
|
mutation: mutation$G,
|
|
3834
|
-
name: name$
|
|
3852
|
+
name: name$U
|
|
3835
3853
|
};
|
|
3836
3854
|
|
|
3837
|
-
const name$
|
|
3855
|
+
const name$T = "generateReturnByAssetAct";
|
|
3838
3856
|
const mutation$F = Selector("Mutation")({
|
|
3839
|
-
[name$
|
|
3857
|
+
[name$T]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3840
3858
|
});
|
|
3841
3859
|
|
|
3842
3860
|
const generateReturnByAssetAct = {
|
|
3843
3861
|
__proto__: null,
|
|
3844
3862
|
mutation: mutation$F,
|
|
3845
|
-
name: name$
|
|
3863
|
+
name: name$T
|
|
3846
3864
|
};
|
|
3847
3865
|
|
|
3848
|
-
const name$
|
|
3866
|
+
const name$S = "generateReturnByAssetDecision";
|
|
3849
3867
|
const mutation$E = Selector("Mutation")({
|
|
3850
|
-
[name$
|
|
3868
|
+
[name$S]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3851
3869
|
});
|
|
3852
3870
|
|
|
3853
3871
|
const generateReturnByAssetDecision = {
|
|
3854
3872
|
__proto__: null,
|
|
3855
3873
|
mutation: mutation$E,
|
|
3856
|
-
name: name$
|
|
3874
|
+
name: name$S
|
|
3857
3875
|
};
|
|
3858
3876
|
|
|
3859
|
-
const name$
|
|
3877
|
+
const name$R = "generateReturnByAssetStatement";
|
|
3860
3878
|
const mutation$D = Selector("Mutation")({
|
|
3861
|
-
[name$
|
|
3879
|
+
[name$R]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3862
3880
|
});
|
|
3863
3881
|
|
|
3864
3882
|
const generateReturnByAssetStatement = {
|
|
3865
3883
|
__proto__: null,
|
|
3866
3884
|
mutation: mutation$D,
|
|
3867
|
-
name: name$
|
|
3885
|
+
name: name$R
|
|
3868
3886
|
};
|
|
3869
3887
|
|
|
3870
|
-
const name$
|
|
3888
|
+
const name$Q = "moderateRequest";
|
|
3871
3889
|
const mutation$C = Selector("Mutation")({
|
|
3872
|
-
[name$
|
|
3890
|
+
[name$Q]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
|
|
3873
3891
|
});
|
|
3874
3892
|
|
|
3875
3893
|
const moderateRequest = {
|
|
3876
3894
|
__proto__: null,
|
|
3877
3895
|
mutation: mutation$C,
|
|
3878
|
-
name: name$
|
|
3896
|
+
name: name$Q
|
|
3879
3897
|
};
|
|
3880
3898
|
|
|
3881
|
-
const name$
|
|
3899
|
+
const name$P = "prohibitRequest";
|
|
3882
3900
|
const mutation$B = Selector("Mutation")({
|
|
3883
|
-
[name$
|
|
3901
|
+
[name$P]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
|
|
3884
3902
|
});
|
|
3885
3903
|
|
|
3886
3904
|
const prohibitRequest = {
|
|
3887
3905
|
__proto__: null,
|
|
3888
3906
|
mutation: mutation$B,
|
|
3889
|
-
name: name$
|
|
3907
|
+
name: name$P
|
|
3890
3908
|
};
|
|
3891
3909
|
|
|
3892
|
-
const name$
|
|
3910
|
+
const name$O = "publishRequest";
|
|
3893
3911
|
const mutation$A = Selector("Mutation")({
|
|
3894
|
-
[name$
|
|
3912
|
+
[name$O]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
|
|
3895
3913
|
});
|
|
3896
3914
|
|
|
3897
3915
|
const publishRequest = {
|
|
3898
3916
|
__proto__: null,
|
|
3899
3917
|
mutation: mutation$A,
|
|
3900
|
-
name: name$
|
|
3918
|
+
name: name$O
|
|
3901
3919
|
};
|
|
3902
3920
|
|
|
3903
|
-
const name$
|
|
3921
|
+
const name$N = "receiveOnRequest";
|
|
3904
3922
|
const mutation$z = Selector("Mutation")({
|
|
3905
|
-
[name$
|
|
3923
|
+
[name$N]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
3906
3924
|
});
|
|
3907
3925
|
|
|
3908
3926
|
const receiveOnRequest = {
|
|
3909
3927
|
__proto__: null,
|
|
3910
3928
|
mutation: mutation$z,
|
|
3911
|
-
name: name$
|
|
3929
|
+
name: name$N
|
|
3912
3930
|
};
|
|
3913
3931
|
|
|
3914
|
-
const name$
|
|
3932
|
+
const name$M = "supplyOnRequest";
|
|
3915
3933
|
const mutation$y = Selector("Mutation")({
|
|
3916
|
-
[name$
|
|
3934
|
+
[name$M]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
|
|
3917
3935
|
});
|
|
3918
3936
|
|
|
3919
3937
|
const supplyOnRequest = {
|
|
3920
3938
|
__proto__: null,
|
|
3921
3939
|
mutation: mutation$y,
|
|
3922
|
-
name: name$
|
|
3940
|
+
name: name$M
|
|
3923
3941
|
};
|
|
3924
3942
|
|
|
3925
|
-
const name$
|
|
3943
|
+
const name$L = "unpublishRequest";
|
|
3926
3944
|
const mutation$x = Selector("Mutation")({
|
|
3927
|
-
[name$
|
|
3945
|
+
[name$L]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
3928
3946
|
});
|
|
3929
3947
|
|
|
3930
3948
|
const unpublishRequest = {
|
|
3931
3949
|
__proto__: null,
|
|
3932
3950
|
mutation: mutation$x,
|
|
3933
|
-
name: name$
|
|
3951
|
+
name: name$L
|
|
3934
3952
|
};
|
|
3935
3953
|
|
|
3936
|
-
const name$
|
|
3954
|
+
const name$K = "updateRequest";
|
|
3937
3955
|
const mutation$w = Selector("Mutation")({
|
|
3938
|
-
[name$
|
|
3956
|
+
[name$K]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
3939
3957
|
});
|
|
3940
3958
|
|
|
3941
3959
|
const updateRequest = {
|
|
3942
3960
|
__proto__: null,
|
|
3943
3961
|
mutation: mutation$w,
|
|
3944
|
-
name: name$
|
|
3962
|
+
name: name$K
|
|
3945
3963
|
};
|
|
3946
3964
|
|
|
3947
3965
|
const index$n = {
|
|
@@ -3971,37 +3989,37 @@ const index$n = {
|
|
|
3971
3989
|
UpdateRequest: updateRequest
|
|
3972
3990
|
};
|
|
3973
3991
|
|
|
3974
|
-
const name$
|
|
3992
|
+
const name$J = "installExtension";
|
|
3975
3993
|
const mutation$v = Selector("Mutation")({
|
|
3976
|
-
[name$
|
|
3994
|
+
[name$J]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
3977
3995
|
});
|
|
3978
3996
|
|
|
3979
3997
|
const installExtension = {
|
|
3980
3998
|
__proto__: null,
|
|
3981
3999
|
mutation: mutation$v,
|
|
3982
|
-
name: name$
|
|
4000
|
+
name: name$J
|
|
3983
4001
|
};
|
|
3984
4002
|
|
|
3985
|
-
const name$
|
|
4003
|
+
const name$I = "uninstallExtension";
|
|
3986
4004
|
const mutation$u = Selector("Mutation")({
|
|
3987
|
-
[name$
|
|
4005
|
+
[name$I]: [{ data: $("data", "UninstallExtensionInput!") }, true]
|
|
3988
4006
|
});
|
|
3989
4007
|
|
|
3990
4008
|
const uninstallExtension = {
|
|
3991
4009
|
__proto__: null,
|
|
3992
4010
|
mutation: mutation$u,
|
|
3993
|
-
name: name$
|
|
4011
|
+
name: name$I
|
|
3994
4012
|
};
|
|
3995
4013
|
|
|
3996
|
-
const name$
|
|
4014
|
+
const name$H = "updateExtension";
|
|
3997
4015
|
const mutation$t = Selector("Mutation")({
|
|
3998
|
-
[name$
|
|
4016
|
+
[name$H]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
3999
4017
|
});
|
|
4000
4018
|
|
|
4001
4019
|
const updateExtension = {
|
|
4002
4020
|
__proto__: null,
|
|
4003
4021
|
mutation: mutation$t,
|
|
4004
|
-
name: name$
|
|
4022
|
+
name: name$H
|
|
4005
4023
|
};
|
|
4006
4024
|
|
|
4007
4025
|
const index$m = {
|
|
@@ -4011,48 +4029,48 @@ const index$m = {
|
|
|
4011
4029
|
UpdateExtension: updateExtension
|
|
4012
4030
|
};
|
|
4013
4031
|
|
|
4014
|
-
const name$
|
|
4032
|
+
const name$G = "generateProjectOfFreeDecision";
|
|
4015
4033
|
const mutation$s = Selector("Mutation")({
|
|
4016
|
-
[name$
|
|
4034
|
+
[name$G]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4017
4035
|
});
|
|
4018
4036
|
|
|
4019
4037
|
const generateProjectOfFreeDecisionDocument = {
|
|
4020
4038
|
__proto__: null,
|
|
4021
4039
|
mutation: mutation$s,
|
|
4022
|
-
name: name$
|
|
4040
|
+
name: name$G
|
|
4023
4041
|
};
|
|
4024
4042
|
|
|
4025
|
-
const name$
|
|
4043
|
+
const name$F = "generateFreeDecision";
|
|
4026
4044
|
const mutation$r = Selector("Mutation")({
|
|
4027
|
-
[name$
|
|
4045
|
+
[name$F]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4028
4046
|
});
|
|
4029
4047
|
|
|
4030
4048
|
const generateFreeDecision = {
|
|
4031
4049
|
__proto__: null,
|
|
4032
4050
|
mutation: mutation$r,
|
|
4033
|
-
name: name$
|
|
4051
|
+
name: name$F
|
|
4034
4052
|
};
|
|
4035
4053
|
|
|
4036
|
-
const name$
|
|
4054
|
+
const name$E = "publishProjectOfFreeDecision";
|
|
4037
4055
|
const mutation$q = Selector("Mutation")({
|
|
4038
|
-
[name$
|
|
4056
|
+
[name$E]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
|
|
4039
4057
|
});
|
|
4040
4058
|
|
|
4041
4059
|
const publishProjectOfFreeDecision = {
|
|
4042
4060
|
__proto__: null,
|
|
4043
4061
|
mutation: mutation$q,
|
|
4044
|
-
name: name$
|
|
4062
|
+
name: name$E
|
|
4045
4063
|
};
|
|
4046
4064
|
|
|
4047
|
-
const name$
|
|
4065
|
+
const name$D = "createProjectOfFreeDecision";
|
|
4048
4066
|
const mutation$p = Selector("Mutation")({
|
|
4049
|
-
[name$
|
|
4067
|
+
[name$D]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
|
|
4050
4068
|
});
|
|
4051
4069
|
|
|
4052
4070
|
const createProjectOfFreeDecision = {
|
|
4053
4071
|
__proto__: null,
|
|
4054
4072
|
mutation: mutation$p,
|
|
4055
|
-
name: name$
|
|
4073
|
+
name: name$D
|
|
4056
4074
|
};
|
|
4057
4075
|
|
|
4058
4076
|
const index$l = {
|
|
@@ -4063,20 +4081,20 @@ const index$l = {
|
|
|
4063
4081
|
PublishProjectOfFreeDecision: publishProjectOfFreeDecision
|
|
4064
4082
|
};
|
|
4065
4083
|
|
|
4066
|
-
const name$
|
|
4084
|
+
const name$C = "createAnnualGeneralMeet";
|
|
4067
4085
|
const mutation$o = Selector("Mutation")({
|
|
4068
|
-
[name$
|
|
4086
|
+
[name$C]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4069
4087
|
});
|
|
4070
4088
|
|
|
4071
4089
|
const createAnnualGeneralMeet = {
|
|
4072
4090
|
__proto__: null,
|
|
4073
4091
|
mutation: mutation$o,
|
|
4074
|
-
name: name$
|
|
4092
|
+
name: name$C
|
|
4075
4093
|
};
|
|
4076
4094
|
|
|
4077
|
-
const name$
|
|
4095
|
+
const name$B = "generateAnnualGeneralMeetAgendaDocument";
|
|
4078
4096
|
const mutation$n = Selector("Mutation")({
|
|
4079
|
-
[name$
|
|
4097
|
+
[name$B]: [
|
|
4080
4098
|
{
|
|
4081
4099
|
data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
|
|
4082
4100
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4088,12 +4106,12 @@ const mutation$n = Selector("Mutation")({
|
|
|
4088
4106
|
const generateAnnualGeneralMeetAgendaDocument = {
|
|
4089
4107
|
__proto__: null,
|
|
4090
4108
|
mutation: mutation$n,
|
|
4091
|
-
name: name$
|
|
4109
|
+
name: name$B
|
|
4092
4110
|
};
|
|
4093
4111
|
|
|
4094
|
-
const name$
|
|
4112
|
+
const name$A = "generateAnnualGeneralMeetDecisionDocument";
|
|
4095
4113
|
const mutation$m = Selector("Mutation")({
|
|
4096
|
-
[name$
|
|
4114
|
+
[name$A]: [
|
|
4097
4115
|
{
|
|
4098
4116
|
data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
|
|
4099
4117
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4105,12 +4123,12 @@ const mutation$m = Selector("Mutation")({
|
|
|
4105
4123
|
const generateAnnualGeneralMeetDecisionDocument = {
|
|
4106
4124
|
__proto__: null,
|
|
4107
4125
|
mutation: mutation$m,
|
|
4108
|
-
name: name$
|
|
4126
|
+
name: name$A
|
|
4109
4127
|
};
|
|
4110
4128
|
|
|
4111
|
-
const name$
|
|
4129
|
+
const name$z = "generateAnnualGeneralMeetNotificationDocument";
|
|
4112
4130
|
const mutation$l = Selector("Mutation")({
|
|
4113
|
-
[name$
|
|
4131
|
+
[name$z]: [
|
|
4114
4132
|
{
|
|
4115
4133
|
data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
|
|
4116
4134
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4122,12 +4140,12 @@ const mutation$l = Selector("Mutation")({
|
|
|
4122
4140
|
const generateAnnualGeneralMeetNotificationDocument = {
|
|
4123
4141
|
__proto__: null,
|
|
4124
4142
|
mutation: mutation$l,
|
|
4125
|
-
name: name$
|
|
4143
|
+
name: name$z
|
|
4126
4144
|
};
|
|
4127
4145
|
|
|
4128
|
-
const name$
|
|
4146
|
+
const name$y = "generateBallotForAnnualGeneralMeetDocument";
|
|
4129
4147
|
const mutation$k = Selector("Mutation")({
|
|
4130
|
-
[name$
|
|
4148
|
+
[name$y]: [
|
|
4131
4149
|
{
|
|
4132
4150
|
data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
|
|
4133
4151
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4139,12 +4157,12 @@ const mutation$k = Selector("Mutation")({
|
|
|
4139
4157
|
const generateBallotForAnnualGeneralMeetDocument = {
|
|
4140
4158
|
__proto__: null,
|
|
4141
4159
|
mutation: mutation$k,
|
|
4142
|
-
name: name$
|
|
4160
|
+
name: name$y
|
|
4143
4161
|
};
|
|
4144
4162
|
|
|
4145
|
-
const name$
|
|
4163
|
+
const name$x = "generateSovietDecisionOnAnnualMeetDocument";
|
|
4146
4164
|
const mutation$j = Selector("Mutation")({
|
|
4147
|
-
[name$
|
|
4165
|
+
[name$x]: [{
|
|
4148
4166
|
data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
|
|
4149
4167
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
4150
4168
|
}, documentSelector]
|
|
@@ -4153,62 +4171,62 @@ const mutation$j = Selector("Mutation")({
|
|
|
4153
4171
|
const generateSovietDecisionOnAnnualMeetDocument = {
|
|
4154
4172
|
__proto__: null,
|
|
4155
4173
|
mutation: mutation$j,
|
|
4156
|
-
name: name$
|
|
4174
|
+
name: name$x
|
|
4157
4175
|
};
|
|
4158
4176
|
|
|
4159
|
-
const name$
|
|
4177
|
+
const name$w = "notifyOnAnnualGeneralMeet";
|
|
4160
4178
|
const mutation$i = Selector("Mutation")({
|
|
4161
|
-
[name$
|
|
4179
|
+
[name$w]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4162
4180
|
});
|
|
4163
4181
|
|
|
4164
4182
|
const notifyOnAnnualGeneralMeet = {
|
|
4165
4183
|
__proto__: null,
|
|
4166
4184
|
mutation: mutation$i,
|
|
4167
|
-
name: name$
|
|
4185
|
+
name: name$w
|
|
4168
4186
|
};
|
|
4169
4187
|
|
|
4170
|
-
const name$
|
|
4188
|
+
const name$v = "restartAnnualGeneralMeet";
|
|
4171
4189
|
const mutation$h = Selector("Mutation")({
|
|
4172
|
-
[name$
|
|
4190
|
+
[name$v]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4173
4191
|
});
|
|
4174
4192
|
|
|
4175
4193
|
const restartAnnualGeneralMeet = {
|
|
4176
4194
|
__proto__: null,
|
|
4177
4195
|
mutation: mutation$h,
|
|
4178
|
-
name: name$
|
|
4196
|
+
name: name$v
|
|
4179
4197
|
};
|
|
4180
4198
|
|
|
4181
|
-
const name$
|
|
4199
|
+
const name$u = "signByPresiderOnAnnualGeneralMeet";
|
|
4182
4200
|
const mutation$g = Selector("Mutation")({
|
|
4183
|
-
[name$
|
|
4201
|
+
[name$u]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4184
4202
|
});
|
|
4185
4203
|
|
|
4186
4204
|
const signByPresiderOnAnnualGeneralMeet = {
|
|
4187
4205
|
__proto__: null,
|
|
4188
4206
|
mutation: mutation$g,
|
|
4189
|
-
name: name$
|
|
4207
|
+
name: name$u
|
|
4190
4208
|
};
|
|
4191
4209
|
|
|
4192
|
-
const name$
|
|
4210
|
+
const name$t = "signBySecretaryOnAnnualGeneralMeet";
|
|
4193
4211
|
const mutation$f = Selector("Mutation")({
|
|
4194
|
-
[name$
|
|
4212
|
+
[name$t]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4195
4213
|
});
|
|
4196
4214
|
|
|
4197
4215
|
const signBySecretaryOnAnnualGeneralMeet = {
|
|
4198
4216
|
__proto__: null,
|
|
4199
4217
|
mutation: mutation$f,
|
|
4200
|
-
name: name$
|
|
4218
|
+
name: name$t
|
|
4201
4219
|
};
|
|
4202
4220
|
|
|
4203
|
-
const name$
|
|
4221
|
+
const name$s = "voteOnAnnualGeneralMeet";
|
|
4204
4222
|
const mutation$e = Selector("Mutation")({
|
|
4205
|
-
[name$
|
|
4223
|
+
[name$s]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4206
4224
|
});
|
|
4207
4225
|
|
|
4208
4226
|
const voteOnAnnualGeneralMeet = {
|
|
4209
4227
|
__proto__: null,
|
|
4210
4228
|
mutation: mutation$e,
|
|
4211
|
-
name: name$
|
|
4229
|
+
name: name$s
|
|
4212
4230
|
};
|
|
4213
4231
|
|
|
4214
4232
|
const index$k = {
|
|
@@ -4226,48 +4244,48 @@ const index$k = {
|
|
|
4226
4244
|
VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
|
|
4227
4245
|
};
|
|
4228
4246
|
|
|
4229
|
-
const name$
|
|
4247
|
+
const name$r = "addParticipant";
|
|
4230
4248
|
const mutation$d = Selector("Mutation")({
|
|
4231
|
-
[name$
|
|
4249
|
+
[name$r]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
|
|
4232
4250
|
});
|
|
4233
4251
|
|
|
4234
4252
|
const addParticipant = {
|
|
4235
4253
|
__proto__: null,
|
|
4236
4254
|
mutation: mutation$d,
|
|
4237
|
-
name: name$
|
|
4255
|
+
name: name$r
|
|
4238
4256
|
};
|
|
4239
4257
|
|
|
4240
|
-
const name$
|
|
4258
|
+
const name$q = "generateParticipantApplication";
|
|
4241
4259
|
const mutation$c = Selector("Mutation")({
|
|
4242
|
-
[name$
|
|
4260
|
+
[name$q]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4243
4261
|
});
|
|
4244
4262
|
|
|
4245
4263
|
const generateParticipantApplication = {
|
|
4246
4264
|
__proto__: null,
|
|
4247
4265
|
mutation: mutation$c,
|
|
4248
|
-
name: name$
|
|
4266
|
+
name: name$q
|
|
4249
4267
|
};
|
|
4250
4268
|
|
|
4251
|
-
const name$
|
|
4269
|
+
const name$p = "generateParticipantApplicationDecision";
|
|
4252
4270
|
const mutation$b = Selector("Mutation")({
|
|
4253
|
-
[name$
|
|
4271
|
+
[name$p]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4254
4272
|
});
|
|
4255
4273
|
|
|
4256
4274
|
const generateParticipantApplicationDecision = {
|
|
4257
4275
|
__proto__: null,
|
|
4258
4276
|
mutation: mutation$b,
|
|
4259
|
-
name: name$
|
|
4277
|
+
name: name$p
|
|
4260
4278
|
};
|
|
4261
4279
|
|
|
4262
|
-
const name$
|
|
4280
|
+
const name$o = "registerParticipant";
|
|
4263
4281
|
const mutation$a = Selector("Mutation")({
|
|
4264
|
-
[name$
|
|
4282
|
+
[name$o]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
|
|
4265
4283
|
});
|
|
4266
4284
|
|
|
4267
4285
|
const registerParticipant = {
|
|
4268
4286
|
__proto__: null,
|
|
4269
4287
|
mutation: mutation$a,
|
|
4270
|
-
name: name$
|
|
4288
|
+
name: name$o
|
|
4271
4289
|
};
|
|
4272
4290
|
|
|
4273
4291
|
const index$j = {
|
|
@@ -4278,37 +4296,37 @@ const index$j = {
|
|
|
4278
4296
|
RegisterParticipant: registerParticipant
|
|
4279
4297
|
};
|
|
4280
4298
|
|
|
4281
|
-
const name$
|
|
4299
|
+
const name$n = "createBankAccount";
|
|
4282
4300
|
const mutation$9 = Selector("Mutation")({
|
|
4283
|
-
[name$
|
|
4301
|
+
[name$n]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
|
|
4284
4302
|
});
|
|
4285
4303
|
|
|
4286
4304
|
const createBankAccount = {
|
|
4287
4305
|
__proto__: null,
|
|
4288
4306
|
mutation: mutation$9,
|
|
4289
|
-
name: name$
|
|
4307
|
+
name: name$n
|
|
4290
4308
|
};
|
|
4291
4309
|
|
|
4292
|
-
const name$
|
|
4310
|
+
const name$m = "deletePaymentMethod";
|
|
4293
4311
|
const mutation$8 = Selector("Mutation")({
|
|
4294
|
-
[name$
|
|
4312
|
+
[name$m]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
|
|
4295
4313
|
});
|
|
4296
4314
|
|
|
4297
4315
|
const deletePaymentMethod = {
|
|
4298
4316
|
__proto__: null,
|
|
4299
4317
|
mutation: mutation$8,
|
|
4300
|
-
name: name$
|
|
4318
|
+
name: name$m
|
|
4301
4319
|
};
|
|
4302
4320
|
|
|
4303
|
-
const name$
|
|
4321
|
+
const name$l = "updateBankAccount";
|
|
4304
4322
|
const mutation$7 = Selector("Mutation")({
|
|
4305
|
-
[name$
|
|
4323
|
+
[name$l]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
|
|
4306
4324
|
});
|
|
4307
4325
|
|
|
4308
4326
|
const updateBankAccount = {
|
|
4309
4327
|
__proto__: null,
|
|
4310
4328
|
mutation: mutation$7,
|
|
4311
|
-
name: name$
|
|
4329
|
+
name: name$l
|
|
4312
4330
|
};
|
|
4313
4331
|
|
|
4314
4332
|
const index$i = {
|
|
@@ -4345,37 +4363,37 @@ const rawPaymentSelector = {
|
|
|
4345
4363
|
};
|
|
4346
4364
|
const paymentSelector = Selector("Payment")(rawPaymentSelector);
|
|
4347
4365
|
|
|
4348
|
-
const name$
|
|
4366
|
+
const name$k = "createInitialPayment";
|
|
4349
4367
|
const mutation$6 = Selector("Mutation")({
|
|
4350
|
-
[name$
|
|
4368
|
+
[name$k]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
4351
4369
|
});
|
|
4352
4370
|
|
|
4353
4371
|
const createInitial = {
|
|
4354
4372
|
__proto__: null,
|
|
4355
4373
|
mutation: mutation$6,
|
|
4356
|
-
name: name$
|
|
4374
|
+
name: name$k
|
|
4357
4375
|
};
|
|
4358
4376
|
|
|
4359
|
-
const name$
|
|
4377
|
+
const name$j = "createDepositPayment";
|
|
4360
4378
|
const mutation$5 = Selector("Mutation")({
|
|
4361
|
-
[name$
|
|
4379
|
+
[name$j]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
4362
4380
|
});
|
|
4363
4381
|
|
|
4364
4382
|
const createDeposit = {
|
|
4365
4383
|
__proto__: null,
|
|
4366
4384
|
mutation: mutation$5,
|
|
4367
|
-
name: name$
|
|
4385
|
+
name: name$j
|
|
4368
4386
|
};
|
|
4369
4387
|
|
|
4370
|
-
const name$
|
|
4388
|
+
const name$i = "setPaymentStatus";
|
|
4371
4389
|
const mutation$4 = Selector("Mutation")({
|
|
4372
|
-
[name$
|
|
4390
|
+
[name$i]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
|
|
4373
4391
|
});
|
|
4374
4392
|
|
|
4375
4393
|
const setPaymentStatus = {
|
|
4376
4394
|
__proto__: null,
|
|
4377
4395
|
mutation: mutation$4,
|
|
4378
|
-
name: name$
|
|
4396
|
+
name: name$i
|
|
4379
4397
|
};
|
|
4380
4398
|
|
|
4381
4399
|
const index$h = {
|
|
@@ -4385,48 +4403,48 @@ const index$h = {
|
|
|
4385
4403
|
SetPaymentStatus: setPaymentStatus
|
|
4386
4404
|
};
|
|
4387
4405
|
|
|
4388
|
-
const name$
|
|
4406
|
+
const name$h = "initSystem";
|
|
4389
4407
|
const mutation$3 = Selector("Mutation")({
|
|
4390
|
-
[name$
|
|
4408
|
+
[name$h]: [{ data: $("data", "Init!") }, systemInfoSelector]
|
|
4391
4409
|
});
|
|
4392
4410
|
|
|
4393
4411
|
const initSystem = {
|
|
4394
4412
|
__proto__: null,
|
|
4395
4413
|
mutation: mutation$3,
|
|
4396
|
-
name: name$
|
|
4414
|
+
name: name$h
|
|
4397
4415
|
};
|
|
4398
4416
|
|
|
4399
|
-
const name$
|
|
4417
|
+
const name$g = "installSystem";
|
|
4400
4418
|
const mutation$2 = Selector("Mutation")({
|
|
4401
|
-
[name$
|
|
4419
|
+
[name$g]: [{ data: $("data", "Install!") }, systemInfoSelector]
|
|
4402
4420
|
});
|
|
4403
4421
|
|
|
4404
4422
|
const installSystem = {
|
|
4405
4423
|
__proto__: null,
|
|
4406
4424
|
mutation: mutation$2,
|
|
4407
|
-
name: name$
|
|
4425
|
+
name: name$g
|
|
4408
4426
|
};
|
|
4409
4427
|
|
|
4410
|
-
const name$
|
|
4428
|
+
const name$f = "setWif";
|
|
4411
4429
|
const mutation$1 = Selector("Mutation")({
|
|
4412
|
-
[name$
|
|
4430
|
+
[name$f]: [{ data: $("data", "Update!") }, true]
|
|
4413
4431
|
});
|
|
4414
4432
|
|
|
4415
4433
|
const setWif = {
|
|
4416
4434
|
__proto__: null,
|
|
4417
4435
|
mutation: mutation$1,
|
|
4418
|
-
name: name$
|
|
4436
|
+
name: name$f
|
|
4419
4437
|
};
|
|
4420
4438
|
|
|
4421
|
-
const name$
|
|
4439
|
+
const name$e = "updateSystem";
|
|
4422
4440
|
const mutation = Selector("Mutation")({
|
|
4423
|
-
[name$
|
|
4441
|
+
[name$e]: [{ data: $("data", "Update!") }, systemInfoSelector]
|
|
4424
4442
|
});
|
|
4425
4443
|
|
|
4426
4444
|
const updateSystem = {
|
|
4427
4445
|
__proto__: null,
|
|
4428
4446
|
mutation: mutation,
|
|
4429
|
-
name: name$
|
|
4447
|
+
name: name$e
|
|
4430
4448
|
};
|
|
4431
4449
|
|
|
4432
4450
|
const index$g = {
|
|
@@ -4453,23 +4471,48 @@ const Mutations = {
|
|
|
4453
4471
|
System: index$g
|
|
4454
4472
|
};
|
|
4455
4473
|
|
|
4456
|
-
const name$
|
|
4457
|
-
const query$
|
|
4458
|
-
[name$
|
|
4474
|
+
const name$d = "getAccount";
|
|
4475
|
+
const query$d = Selector("Query")({
|
|
4476
|
+
[name$d]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
|
|
4459
4477
|
});
|
|
4460
4478
|
|
|
4461
4479
|
const getAccount = {
|
|
4480
|
+
__proto__: null,
|
|
4481
|
+
name: name$d,
|
|
4482
|
+
query: query$d
|
|
4483
|
+
};
|
|
4484
|
+
|
|
4485
|
+
const name$c = "getAccounts";
|
|
4486
|
+
const query$c = Selector("Query")({
|
|
4487
|
+
[name$c]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
4488
|
+
});
|
|
4489
|
+
|
|
4490
|
+
const getAccounts = {
|
|
4462
4491
|
__proto__: null,
|
|
4463
4492
|
name: name$c,
|
|
4464
4493
|
query: query$c
|
|
4465
4494
|
};
|
|
4466
4495
|
|
|
4467
|
-
const
|
|
4496
|
+
const rawSearchPrivateAccountsResultSelector = {
|
|
4497
|
+
type: true,
|
|
4498
|
+
score: true,
|
|
4499
|
+
highlightedFields: true,
|
|
4500
|
+
data: {
|
|
4501
|
+
"...on Individual": rawIndividualSelector,
|
|
4502
|
+
"...on Entrepreneur": rawEntrepreneurSelector,
|
|
4503
|
+
"...on Organization": rawOrganizationSelector
|
|
4504
|
+
}
|
|
4505
|
+
};
|
|
4506
|
+
const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult")(
|
|
4507
|
+
rawSearchPrivateAccountsResultSelector
|
|
4508
|
+
);
|
|
4509
|
+
|
|
4510
|
+
const name$b = "searchPrivateAccounts";
|
|
4468
4511
|
const query$b = Selector("Query")({
|
|
4469
|
-
[name$b]: [{ data: $("data", "
|
|
4512
|
+
[name$b]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
|
|
4470
4513
|
});
|
|
4471
4514
|
|
|
4472
|
-
const
|
|
4515
|
+
const searchPrivateAccounts = {
|
|
4473
4516
|
__proto__: null,
|
|
4474
4517
|
name: name$b,
|
|
4475
4518
|
query: query$b
|
|
@@ -4478,7 +4521,8 @@ const getAccounts = {
|
|
|
4478
4521
|
const index$f = {
|
|
4479
4522
|
__proto__: null,
|
|
4480
4523
|
GetAccount: getAccount,
|
|
4481
|
-
GetAccounts: getAccounts
|
|
4524
|
+
GetAccounts: getAccounts,
|
|
4525
|
+
SearchPrivateAccounts: searchPrivateAccounts
|
|
4482
4526
|
};
|
|
4483
4527
|
|
|
4484
4528
|
const rawBlockchainDecisionSelector = {
|
|
@@ -4842,7 +4886,7 @@ const _Client = class _Client {
|
|
|
4842
4886
|
signature
|
|
4843
4887
|
}
|
|
4844
4888
|
};
|
|
4845
|
-
const { [name$
|
|
4889
|
+
const { [name$1c]: result } = await this.thunder("mutation")(
|
|
4846
4890
|
mutation$_,
|
|
4847
4891
|
{
|
|
4848
4892
|
variables
|