@coopenomics/sdk 2025.7.28 → 2025.9.1

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.mjs CHANGED
@@ -855,6 +855,7 @@ const AllTypesProps = {
855
855
  filter: "JSON"
856
856
  },
857
857
  GetExtensionsInput: {},
858
+ GetLedgerHistoryInput: {},
858
859
  GetLedgerInput: {},
859
860
  GetMeetInput: {},
860
861
  GetMeetsInput: {},
@@ -1184,6 +1185,9 @@ const AllTypesProps = {
1184
1185
  getLedger: {
1185
1186
  data: "GetLedgerInput"
1186
1187
  },
1188
+ getLedgerHistory: {
1189
+ data: "GetLedgerHistoryInput"
1190
+ },
1187
1191
  getMeet: {
1188
1192
  data: "GetMeetInput"
1189
1193
  },
@@ -1736,6 +1740,21 @@ const ReturnTypes = {
1736
1740
  key: "String",
1737
1741
  weight: "Int"
1738
1742
  },
1743
+ LedgerHistoryResponse: {
1744
+ currentPage: "Int",
1745
+ items: "LedgerOperation",
1746
+ totalCount: "Int",
1747
+ totalPages: "Int"
1748
+ },
1749
+ LedgerOperation: {
1750
+ account_id: "Int",
1751
+ action: "String",
1752
+ comment: "String",
1753
+ coopname: "String",
1754
+ created_at: "DateTime",
1755
+ global_sequence: "Int",
1756
+ quantity: "String"
1757
+ },
1739
1758
  LedgerState: {
1740
1759
  chartOfAccounts: "ChartOfAccountsItem",
1741
1760
  coopname: "String"
@@ -2041,6 +2060,7 @@ const ReturnTypes = {
2041
2060
  getDocuments: "DocumentsAggregatePaginationResult",
2042
2061
  getExtensions: "Extension",
2043
2062
  getLedger: "LedgerState",
2063
+ getLedgerHistory: "LedgerHistoryResponse",
2044
2064
  getMeet: "MeetAggregate",
2045
2065
  getMeets: "MeetAggregate",
2046
2066
  getPaymentMethods: "PaymentMethodPaginationResult",
@@ -3198,37 +3218,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
3198
3218
  rawRegisteredAccountSelector
3199
3219
  );
3200
3220
 
3201
- const name$1w = "registerAccount";
3221
+ const name$1x = "registerAccount";
3202
3222
  const mutation$1f = Selector("Mutation")({
3203
- [name$1w]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
3223
+ [name$1x]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
3204
3224
  });
3205
3225
 
3206
3226
  const registerAccount = {
3207
3227
  __proto__: null,
3208
3228
  mutation: mutation$1f,
3209
- name: name$1w
3229
+ name: name$1x
3210
3230
  };
3211
3231
 
3212
- const name$1v = "resetKey";
3232
+ const name$1w = "resetKey";
3213
3233
  const mutation$1e = Selector("Mutation")({
3214
- [name$1v]: [{ data: $("data", "ResetKeyInput!") }, true]
3234
+ [name$1w]: [{ data: $("data", "ResetKeyInput!") }, true]
3215
3235
  });
3216
3236
 
3217
3237
  const resetKey = {
3218
3238
  __proto__: null,
3219
3239
  mutation: mutation$1e,
3220
- name: name$1v
3240
+ name: name$1w
3221
3241
  };
3222
3242
 
3223
- const name$1u = "startResetKey";
3243
+ const name$1v = "startResetKey";
3224
3244
  const mutation$1d = Selector("Mutation")({
3225
- [name$1u]: [{ data: $("data", "StartResetKeyInput!") }, true]
3245
+ [name$1v]: [{ data: $("data", "StartResetKeyInput!") }, true]
3226
3246
  });
3227
3247
 
3228
3248
  const startResetKey = {
3229
3249
  __proto__: null,
3230
3250
  mutation: mutation$1d,
3231
- name: name$1u
3251
+ name: name$1v
3232
3252
  };
3233
3253
 
3234
3254
  const paginationSelector = {
@@ -3402,6 +3422,23 @@ const rawLedgerStateSelector = {
3402
3422
  };
3403
3423
  const ledgerStateSelector = Selector("LedgerState")(rawLedgerStateSelector);
3404
3424
 
3425
+ const rawLedgerOperationSelector = {
3426
+ global_sequence: true,
3427
+ coopname: true,
3428
+ action: true,
3429
+ created_at: true,
3430
+ account_id: true,
3431
+ quantity: true,
3432
+ comment: true
3433
+ };
3434
+ Selector("LedgerOperation")(rawLedgerOperationSelector);
3435
+
3436
+ const rawLedgerHistorySelector = {
3437
+ ...paginationSelector,
3438
+ items: rawLedgerOperationSelector
3439
+ };
3440
+ Selector("LedgerHistoryResponse")(rawLedgerHistorySelector);
3441
+
3405
3442
  const rawGeneratedDocumentSelector = {
3406
3443
  hash: true,
3407
3444
  binary: true,
@@ -3727,15 +3764,15 @@ const rawCreateWithdrawResponseSelector = {
3727
3764
  };
3728
3765
  const createWithdrawResponseSelector = Selector("CreateWithdrawResponse")(rawCreateWithdrawResponseSelector);
3729
3766
 
3730
- const name$1t = "updateAccount";
3767
+ const name$1u = "updateAccount";
3731
3768
  const mutation$1c = Selector("Mutation")({
3732
- [name$1t]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
3769
+ [name$1u]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
3733
3770
  });
3734
3771
 
3735
3772
  const updateAccount = {
3736
3773
  __proto__: null,
3737
3774
  mutation: mutation$1c,
3738
- name: name$1t
3775
+ name: name$1u
3739
3776
  };
3740
3777
 
3741
3778
  const index$v = {
@@ -3746,48 +3783,48 @@ const index$v = {
3746
3783
  UpdateAccount: updateAccount
3747
3784
  };
3748
3785
 
3749
- const name$1s = "generatePrivacyAgreement";
3786
+ const name$1t = "generatePrivacyAgreement";
3750
3787
  const mutation$1b = Selector("Mutation")({
3751
- [name$1s]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3788
+ [name$1t]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3752
3789
  });
3753
3790
 
3754
3791
  const generatePrivacyAgreement = {
3755
3792
  __proto__: null,
3756
3793
  mutation: mutation$1b,
3757
- name: name$1s
3794
+ name: name$1t
3758
3795
  };
3759
3796
 
3760
- const name$1r = "generateSignatureAgreement";
3797
+ const name$1s = "generateSignatureAgreement";
3761
3798
  const mutation$1a = Selector("Mutation")({
3762
- [name$1r]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3799
+ [name$1s]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3763
3800
  });
3764
3801
 
3765
3802
  const generateSignatureAgreement = {
3766
3803
  __proto__: null,
3767
3804
  mutation: mutation$1a,
3768
- name: name$1r
3805
+ name: name$1s
3769
3806
  };
3770
3807
 
3771
- const name$1q = "generateWalletAgreement";
3808
+ const name$1r = "generateWalletAgreement";
3772
3809
  const mutation$19 = Selector("Mutation")({
3773
- [name$1q]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3810
+ [name$1r]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3774
3811
  });
3775
3812
 
3776
3813
  const generateWalletAgreement = {
3777
3814
  __proto__: null,
3778
3815
  mutation: mutation$19,
3779
- name: name$1q
3816
+ name: name$1r
3780
3817
  };
3781
3818
 
3782
- const name$1p = "generateUserAgreement";
3819
+ const name$1q = "generateUserAgreement";
3783
3820
  const mutation$18 = Selector("Mutation")({
3784
- [name$1p]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3821
+ [name$1q]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3785
3822
  });
3786
3823
 
3787
3824
  const generateUserAgreement = {
3788
3825
  __proto__: null,
3789
3826
  mutation: mutation$18,
3790
- name: name$1p
3827
+ name: name$1q
3791
3828
  };
3792
3829
 
3793
3830
  const index$u = {
@@ -3798,37 +3835,37 @@ const index$u = {
3798
3835
  GenerateWalletAgreement: generateWalletAgreement
3799
3836
  };
3800
3837
 
3801
- const name$1o = "refresh";
3838
+ const name$1p = "refresh";
3802
3839
  const mutation$17 = Selector("Mutation")({
3803
- [name$1o]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
3840
+ [name$1p]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
3804
3841
  });
3805
3842
 
3806
3843
  const refresh = {
3807
3844
  __proto__: null,
3808
3845
  mutation: mutation$17,
3809
- name: name$1o
3846
+ name: name$1p
3810
3847
  };
3811
3848
 
3812
- const name$1n = "logout";
3849
+ const name$1o = "logout";
3813
3850
  const mutation$16 = Selector("Mutation")({
3814
- [name$1n]: [{ data: $("data", "LogoutInput!") }, true]
3851
+ [name$1o]: [{ data: $("data", "LogoutInput!") }, true]
3815
3852
  });
3816
3853
 
3817
3854
  const logout = {
3818
3855
  __proto__: null,
3819
3856
  mutation: mutation$16,
3820
- name: name$1n
3857
+ name: name$1o
3821
3858
  };
3822
3859
 
3823
- const name$1m = "login";
3860
+ const name$1n = "login";
3824
3861
  const mutation$15 = Selector("Mutation")({
3825
- [name$1m]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
3862
+ [name$1n]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
3826
3863
  });
3827
3864
 
3828
3865
  const login = {
3829
3866
  __proto__: null,
3830
3867
  mutation: mutation$15,
3831
- name: name$1m
3868
+ name: name$1n
3832
3869
  };
3833
3870
 
3834
3871
  const index$t = {
@@ -3838,81 +3875,81 @@ const index$t = {
3838
3875
  Refresh: refresh
3839
3876
  };
3840
3877
 
3841
- const name$1l = "addTrustedAccount";
3878
+ const name$1m = "addTrustedAccount";
3842
3879
  const mutation$14 = Selector("Mutation")({
3843
- [name$1l]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
3880
+ [name$1m]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
3844
3881
  });
3845
3882
 
3846
3883
  const addTrustedAccount = {
3847
3884
  __proto__: null,
3848
3885
  mutation: mutation$14,
3849
- name: name$1l
3886
+ name: name$1m
3850
3887
  };
3851
3888
 
3852
- const name$1k = "createBranch";
3889
+ const name$1l = "createBranch";
3853
3890
  const mutation$13 = Selector("Mutation")({
3854
- [name$1k]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
3891
+ [name$1l]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
3855
3892
  });
3856
3893
 
3857
3894
  const createBranch = {
3858
3895
  __proto__: null,
3859
3896
  mutation: mutation$13,
3860
- name: name$1k
3897
+ name: name$1l
3861
3898
  };
3862
3899
 
3863
- const name$1j = "deleteBranch";
3900
+ const name$1k = "deleteBranch";
3864
3901
  const mutation$12 = Selector("Mutation")({
3865
- [name$1j]: [{ data: $("data", "DeleteBranchInput!") }, true]
3902
+ [name$1k]: [{ data: $("data", "DeleteBranchInput!") }, true]
3866
3903
  });
3867
3904
 
3868
3905
  const deleteBranch = {
3869
3906
  __proto__: null,
3870
3907
  mutation: mutation$12,
3871
- name: name$1j
3908
+ name: name$1k
3872
3909
  };
3873
3910
 
3874
- const name$1i = "deleteTrustedAccount";
3911
+ const name$1j = "deleteTrustedAccount";
3875
3912
  const mutation$11 = Selector("Mutation")({
3876
- [name$1i]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
3913
+ [name$1j]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
3877
3914
  });
3878
3915
 
3879
3916
  const deleteTrustedAccount = {
3880
3917
  __proto__: null,
3881
3918
  mutation: mutation$11,
3882
- name: name$1i
3919
+ name: name$1j
3883
3920
  };
3884
3921
 
3885
- const name$1h = "editBranch";
3922
+ const name$1i = "editBranch";
3886
3923
  const mutation$10 = Selector("Mutation")({
3887
- [name$1h]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
3924
+ [name$1i]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
3888
3925
  });
3889
3926
 
3890
3927
  const editBranch = {
3891
3928
  __proto__: null,
3892
3929
  mutation: mutation$10,
3893
- name: name$1h
3930
+ name: name$1i
3894
3931
  };
3895
3932
 
3896
- const name$1g = "generateSelectBranchDocument";
3933
+ const name$1h = "generateSelectBranchDocument";
3897
3934
  const mutation$$ = Selector("Mutation")({
3898
- [name$1g]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3935
+ [name$1h]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3899
3936
  });
3900
3937
 
3901
3938
  const generateSelectBranchDocument = {
3902
3939
  __proto__: null,
3903
3940
  mutation: mutation$$,
3904
- name: name$1g
3941
+ name: name$1h
3905
3942
  };
3906
3943
 
3907
- const name$1f = "selectBranch";
3944
+ const name$1g = "selectBranch";
3908
3945
  const mutation$_ = Selector("Mutation")({
3909
- [name$1f]: [{ data: $("data", "SelectBranchInput!") }, true]
3946
+ [name$1g]: [{ data: $("data", "SelectBranchInput!") }, true]
3910
3947
  });
3911
3948
 
3912
3949
  const selectBranch = {
3913
3950
  __proto__: null,
3914
3951
  mutation: mutation$_,
3915
- name: name$1f
3952
+ name: name$1g
3916
3953
  };
3917
3954
 
3918
3955
  const index$s = {
@@ -3926,257 +3963,257 @@ const index$s = {
3926
3963
  SelectBranch: selectBranch
3927
3964
  };
3928
3965
 
3929
- const name$1e = "acceptChildOrder";
3966
+ const name$1f = "acceptChildOrder";
3930
3967
  const mutation$Z = Selector("Mutation")({
3931
- [name$1e]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
3968
+ [name$1f]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
3932
3969
  });
3933
3970
 
3934
3971
  const acceptChildOrder = {
3935
3972
  __proto__: null,
3936
3973
  mutation: mutation$Z,
3937
- name: name$1e
3974
+ name: name$1f
3938
3975
  };
3939
3976
 
3940
- const name$1d = "cancelRequest";
3977
+ const name$1e = "cancelRequest";
3941
3978
  const mutation$Y = Selector("Mutation")({
3942
- [name$1d]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
3979
+ [name$1e]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
3943
3980
  });
3944
3981
 
3945
3982
  const cancelRequest = {
3946
3983
  __proto__: null,
3947
3984
  mutation: mutation$Y,
3948
- name: name$1d
3985
+ name: name$1e
3949
3986
  };
3950
3987
 
3951
- const name$1c = "confirmReceiveOnRequest";
3988
+ const name$1d = "confirmReceiveOnRequest";
3952
3989
  const mutation$X = Selector("Mutation")({
3953
- [name$1c]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
3990
+ [name$1d]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
3954
3991
  });
3955
3992
 
3956
3993
  const completeReceiveOnRequest = {
3957
3994
  __proto__: null,
3958
3995
  mutation: mutation$X,
3959
- name: name$1c
3996
+ name: name$1d
3960
3997
  };
3961
3998
 
3962
- const name$1b = "completeRequest";
3999
+ const name$1c = "completeRequest";
3963
4000
  const mutation$W = Selector("Mutation")({
3964
- [name$1b]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
4001
+ [name$1c]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
3965
4002
  });
3966
4003
 
3967
4004
  const completeRequest = {
3968
4005
  __proto__: null,
3969
4006
  mutation: mutation$W,
3970
- name: name$1b
4007
+ name: name$1c
3971
4008
  };
3972
4009
 
3973
- const name$1a = "confirmSupplyOnRequest";
4010
+ const name$1b = "confirmSupplyOnRequest";
3974
4011
  const mutation$V = Selector("Mutation")({
3975
- [name$1a]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
4012
+ [name$1b]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
3976
4013
  });
3977
4014
 
3978
4015
  const confirmSupplyOnRequest = {
3979
4016
  __proto__: null,
3980
4017
  mutation: mutation$V,
3981
- name: name$1a
4018
+ name: name$1b
3982
4019
  };
3983
4020
 
3984
- const name$19 = "createChildOrder";
4021
+ const name$1a = "createChildOrder";
3985
4022
  const mutation$U = Selector("Mutation")({
3986
- [name$19]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
4023
+ [name$1a]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
3987
4024
  });
3988
4025
 
3989
4026
  const createChildOrder = {
3990
4027
  __proto__: null,
3991
4028
  mutation: mutation$U,
3992
- name: name$19
4029
+ name: name$1a
3993
4030
  };
3994
4031
 
3995
- const name$18 = "createParentOffer";
4032
+ const name$19 = "createParentOffer";
3996
4033
  const mutation$T = Selector("Mutation")({
3997
- [name$18]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
4034
+ [name$19]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
3998
4035
  });
3999
4036
 
4000
4037
  const createParentOffer = {
4001
4038
  __proto__: null,
4002
4039
  mutation: mutation$T,
4003
- name: name$18
4040
+ name: name$19
4004
4041
  };
4005
4042
 
4006
- const name$17 = "declineRequest";
4043
+ const name$18 = "declineRequest";
4007
4044
  const mutation$S = Selector("Mutation")({
4008
- [name$17]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
4045
+ [name$18]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
4009
4046
  });
4010
4047
 
4011
4048
  const declineRequest = {
4012
4049
  __proto__: null,
4013
4050
  mutation: mutation$S,
4014
- name: name$17
4051
+ name: name$18
4015
4052
  };
4016
4053
 
4017
- const name$16 = "deliverOnRequest";
4054
+ const name$17 = "deliverOnRequest";
4018
4055
  const mutation$R = Selector("Mutation")({
4019
- [name$16]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
4056
+ [name$17]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
4020
4057
  });
4021
4058
 
4022
4059
  const deliverOnRequest = {
4023
4060
  __proto__: null,
4024
4061
  mutation: mutation$R,
4025
- name: name$16
4062
+ name: name$17
4026
4063
  };
4027
4064
 
4028
- const name$15 = "disputeOnRequest";
4065
+ const name$16 = "disputeOnRequest";
4029
4066
  const mutation$Q = Selector("Mutation")({
4030
- [name$15]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
4067
+ [name$16]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
4031
4068
  });
4032
4069
 
4033
4070
  const disputeOnRequest = {
4034
4071
  __proto__: null,
4035
4072
  mutation: mutation$Q,
4036
- name: name$15
4073
+ name: name$16
4037
4074
  };
4038
4075
 
4039
- const name$14 = "generateAssetContributionAct";
4076
+ const name$15 = "generateAssetContributionAct";
4040
4077
  const mutation$P = Selector("Mutation")({
4041
- [name$14]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4078
+ [name$15]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4042
4079
  });
4043
4080
 
4044
4081
  const generateAssetContributionAct = {
4045
4082
  __proto__: null,
4046
4083
  mutation: mutation$P,
4047
- name: name$14
4084
+ name: name$15
4048
4085
  };
4049
4086
 
4050
- const name$13 = "generateAssetContributionDecision";
4087
+ const name$14 = "generateAssetContributionDecision";
4051
4088
  const mutation$O = Selector("Mutation")({
4052
- [name$13]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4089
+ [name$14]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4053
4090
  });
4054
4091
 
4055
4092
  const generateAssetContributionDecision = {
4056
4093
  __proto__: null,
4057
4094
  mutation: mutation$O,
4058
- name: name$13
4095
+ name: name$14
4059
4096
  };
4060
4097
 
4061
- const name$12 = "generateAssetContributionStatement";
4098
+ const name$13 = "generateAssetContributionStatement";
4062
4099
  const mutation$N = Selector("Mutation")({
4063
- [name$12]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4100
+ [name$13]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4064
4101
  });
4065
4102
 
4066
4103
  const generateAssetContributionStatement = {
4067
4104
  __proto__: null,
4068
4105
  mutation: mutation$N,
4069
- name: name$12
4106
+ name: name$13
4070
4107
  };
4071
4108
 
4072
- const name$11 = "generateReturnByAssetAct";
4109
+ const name$12 = "generateReturnByAssetAct";
4073
4110
  const mutation$M = Selector("Mutation")({
4074
- [name$11]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4111
+ [name$12]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4075
4112
  });
4076
4113
 
4077
4114
  const generateReturnByAssetAct = {
4078
4115
  __proto__: null,
4079
4116
  mutation: mutation$M,
4080
- name: name$11
4117
+ name: name$12
4081
4118
  };
4082
4119
 
4083
- const name$10 = "generateReturnByAssetDecision";
4120
+ const name$11 = "generateReturnByAssetDecision";
4084
4121
  const mutation$L = Selector("Mutation")({
4085
- [name$10]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4122
+ [name$11]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4086
4123
  });
4087
4124
 
4088
4125
  const generateReturnByAssetDecision = {
4089
4126
  __proto__: null,
4090
4127
  mutation: mutation$L,
4091
- name: name$10
4128
+ name: name$11
4092
4129
  };
4093
4130
 
4094
- const name$$ = "generateReturnByAssetStatement";
4131
+ const name$10 = "generateReturnByAssetStatement";
4095
4132
  const mutation$K = Selector("Mutation")({
4096
- [name$$]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4133
+ [name$10]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4097
4134
  });
4098
4135
 
4099
4136
  const generateReturnByAssetStatement = {
4100
4137
  __proto__: null,
4101
4138
  mutation: mutation$K,
4102
- name: name$$
4139
+ name: name$10
4103
4140
  };
4104
4141
 
4105
- const name$_ = "moderateRequest";
4142
+ const name$$ = "moderateRequest";
4106
4143
  const mutation$J = Selector("Mutation")({
4107
- [name$_]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
4144
+ [name$$]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
4108
4145
  });
4109
4146
 
4110
4147
  const moderateRequest = {
4111
4148
  __proto__: null,
4112
4149
  mutation: mutation$J,
4113
- name: name$_
4150
+ name: name$$
4114
4151
  };
4115
4152
 
4116
- const name$Z = "prohibitRequest";
4153
+ const name$_ = "prohibitRequest";
4117
4154
  const mutation$I = Selector("Mutation")({
4118
- [name$Z]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
4155
+ [name$_]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
4119
4156
  });
4120
4157
 
4121
4158
  const prohibitRequest = {
4122
4159
  __proto__: null,
4123
4160
  mutation: mutation$I,
4124
- name: name$Z
4161
+ name: name$_
4125
4162
  };
4126
4163
 
4127
- const name$Y = "publishRequest";
4164
+ const name$Z = "publishRequest";
4128
4165
  const mutation$H = Selector("Mutation")({
4129
- [name$Y]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
4166
+ [name$Z]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
4130
4167
  });
4131
4168
 
4132
4169
  const publishRequest = {
4133
4170
  __proto__: null,
4134
4171
  mutation: mutation$H,
4135
- name: name$Y
4172
+ name: name$Z
4136
4173
  };
4137
4174
 
4138
- const name$X = "receiveOnRequest";
4175
+ const name$Y = "receiveOnRequest";
4139
4176
  const mutation$G = Selector("Mutation")({
4140
- [name$X]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
4177
+ [name$Y]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
4141
4178
  });
4142
4179
 
4143
4180
  const receiveOnRequest = {
4144
4181
  __proto__: null,
4145
4182
  mutation: mutation$G,
4146
- name: name$X
4183
+ name: name$Y
4147
4184
  };
4148
4185
 
4149
- const name$W = "supplyOnRequest";
4186
+ const name$X = "supplyOnRequest";
4150
4187
  const mutation$F = Selector("Mutation")({
4151
- [name$W]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
4188
+ [name$X]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
4152
4189
  });
4153
4190
 
4154
4191
  const supplyOnRequest = {
4155
4192
  __proto__: null,
4156
4193
  mutation: mutation$F,
4157
- name: name$W
4194
+ name: name$X
4158
4195
  };
4159
4196
 
4160
- const name$V = "unpublishRequest";
4197
+ const name$W = "unpublishRequest";
4161
4198
  const mutation$E = Selector("Mutation")({
4162
- [name$V]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
4199
+ [name$W]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
4163
4200
  });
4164
4201
 
4165
4202
  const unpublishRequest = {
4166
4203
  __proto__: null,
4167
4204
  mutation: mutation$E,
4168
- name: name$V
4205
+ name: name$W
4169
4206
  };
4170
4207
 
4171
- const name$U = "updateRequest";
4208
+ const name$V = "updateRequest";
4172
4209
  const mutation$D = Selector("Mutation")({
4173
- [name$U]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
4210
+ [name$V]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
4174
4211
  });
4175
4212
 
4176
4213
  const updateRequest = {
4177
4214
  __proto__: null,
4178
4215
  mutation: mutation$D,
4179
- name: name$U
4216
+ name: name$V
4180
4217
  };
4181
4218
 
4182
4219
  const index$r = {
@@ -4206,37 +4243,37 @@ const index$r = {
4206
4243
  UpdateRequest: updateRequest
4207
4244
  };
4208
4245
 
4209
- const name$T = "installExtension";
4246
+ const name$U = "installExtension";
4210
4247
  const mutation$C = Selector("Mutation")({
4211
- [name$T]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4248
+ [name$U]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4212
4249
  });
4213
4250
 
4214
4251
  const installExtension = {
4215
4252
  __proto__: null,
4216
4253
  mutation: mutation$C,
4217
- name: name$T
4254
+ name: name$U
4218
4255
  };
4219
4256
 
4220
- const name$S = "uninstallExtension";
4257
+ const name$T = "uninstallExtension";
4221
4258
  const mutation$B = Selector("Mutation")({
4222
- [name$S]: [{ data: $("data", "UninstallExtensionInput!") }, true]
4259
+ [name$T]: [{ data: $("data", "UninstallExtensionInput!") }, true]
4223
4260
  });
4224
4261
 
4225
4262
  const uninstallExtension = {
4226
4263
  __proto__: null,
4227
4264
  mutation: mutation$B,
4228
- name: name$S
4265
+ name: name$T
4229
4266
  };
4230
4267
 
4231
- const name$R = "updateExtension";
4268
+ const name$S = "updateExtension";
4232
4269
  const mutation$A = Selector("Mutation")({
4233
- [name$R]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4270
+ [name$S]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4234
4271
  });
4235
4272
 
4236
4273
  const updateExtension = {
4237
4274
  __proto__: null,
4238
4275
  mutation: mutation$A,
4239
- name: name$R
4276
+ name: name$S
4240
4277
  };
4241
4278
 
4242
4279
  const index$q = {
@@ -4246,48 +4283,48 @@ const index$q = {
4246
4283
  UpdateExtension: updateExtension
4247
4284
  };
4248
4285
 
4249
- const name$Q = "generateProjectOfFreeDecision";
4286
+ const name$R = "generateProjectOfFreeDecision";
4250
4287
  const mutation$z = Selector("Mutation")({
4251
- [name$Q]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4288
+ [name$R]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4252
4289
  });
4253
4290
 
4254
4291
  const generateProjectOfFreeDecisionDocument = {
4255
4292
  __proto__: null,
4256
4293
  mutation: mutation$z,
4257
- name: name$Q
4294
+ name: name$R
4258
4295
  };
4259
4296
 
4260
- const name$P = "generateFreeDecision";
4297
+ const name$Q = "generateFreeDecision";
4261
4298
  const mutation$y = Selector("Mutation")({
4262
- [name$P]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4299
+ [name$Q]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4263
4300
  });
4264
4301
 
4265
4302
  const generateFreeDecision = {
4266
4303
  __proto__: null,
4267
4304
  mutation: mutation$y,
4268
- name: name$P
4305
+ name: name$Q
4269
4306
  };
4270
4307
 
4271
- const name$O = "publishProjectOfFreeDecision";
4308
+ const name$P = "publishProjectOfFreeDecision";
4272
4309
  const mutation$x = Selector("Mutation")({
4273
- [name$O]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
4310
+ [name$P]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
4274
4311
  });
4275
4312
 
4276
4313
  const publishProjectOfFreeDecision = {
4277
4314
  __proto__: null,
4278
4315
  mutation: mutation$x,
4279
- name: name$O
4316
+ name: name$P
4280
4317
  };
4281
4318
 
4282
- const name$N = "createProjectOfFreeDecision";
4319
+ const name$O = "createProjectOfFreeDecision";
4283
4320
  const mutation$w = Selector("Mutation")({
4284
- [name$N]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
4321
+ [name$O]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
4285
4322
  });
4286
4323
 
4287
4324
  const createProjectOfFreeDecision = {
4288
4325
  __proto__: null,
4289
4326
  mutation: mutation$w,
4290
- name: name$N
4327
+ name: name$O
4291
4328
  };
4292
4329
 
4293
4330
  const index$p = {
@@ -4298,37 +4335,37 @@ const index$p = {
4298
4335
  PublishProjectOfFreeDecision: publishProjectOfFreeDecision
4299
4336
  };
4300
4337
 
4301
- const name$M = "setPaymentStatus";
4338
+ const name$N = "setPaymentStatus";
4302
4339
  const mutation$v = Selector("Mutation")({
4303
- [name$M]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
4340
+ [name$N]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
4304
4341
  });
4305
4342
 
4306
4343
  const updatePaymentStatus = {
4307
4344
  __proto__: null,
4308
4345
  mutation: mutation$v,
4309
- name: name$M
4346
+ name: name$N
4310
4347
  };
4311
4348
 
4312
- const name$L = "createInitialPayment";
4349
+ const name$M = "createInitialPayment";
4313
4350
  const mutation$u = Selector("Mutation")({
4314
- [name$L]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4351
+ [name$M]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4315
4352
  });
4316
4353
 
4317
4354
  const createInitialPayment$1 = {
4318
4355
  __proto__: null,
4319
4356
  mutation: mutation$u,
4320
- name: name$L
4357
+ name: name$M
4321
4358
  };
4322
4359
 
4323
- const name$K = "createDepositPayment";
4360
+ const name$L = "createDepositPayment";
4324
4361
  const mutation$t = Selector("Mutation")({
4325
- [name$K]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4362
+ [name$L]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4326
4363
  });
4327
4364
 
4328
4365
  const createDepositPayment$1 = {
4329
4366
  __proto__: null,
4330
4367
  mutation: mutation$t,
4331
- name: name$K
4368
+ name: name$L
4332
4369
  };
4333
4370
 
4334
4371
  const index$o = {
@@ -4338,20 +4375,20 @@ const index$o = {
4338
4375
  SetPaymentStatus: updatePaymentStatus
4339
4376
  };
4340
4377
 
4341
- const name$J = "createAnnualGeneralMeet";
4378
+ const name$K = "createAnnualGeneralMeet";
4342
4379
  const mutation$s = Selector("Mutation")({
4343
- [name$J]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
4380
+ [name$K]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
4344
4381
  });
4345
4382
 
4346
4383
  const createAnnualGeneralMeet = {
4347
4384
  __proto__: null,
4348
4385
  mutation: mutation$s,
4349
- name: name$J
4386
+ name: name$K
4350
4387
  };
4351
4388
 
4352
- const name$I = "generateAnnualGeneralMeetAgendaDocument";
4389
+ const name$J = "generateAnnualGeneralMeetAgendaDocument";
4353
4390
  const mutation$r = Selector("Mutation")({
4354
- [name$I]: [
4391
+ [name$J]: [
4355
4392
  {
4356
4393
  data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
4357
4394
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4363,12 +4400,12 @@ const mutation$r = Selector("Mutation")({
4363
4400
  const generateAnnualGeneralMeetAgendaDocument = {
4364
4401
  __proto__: null,
4365
4402
  mutation: mutation$r,
4366
- name: name$I
4403
+ name: name$J
4367
4404
  };
4368
4405
 
4369
- const name$H = "generateAnnualGeneralMeetDecisionDocument";
4406
+ const name$I = "generateAnnualGeneralMeetDecisionDocument";
4370
4407
  const mutation$q = Selector("Mutation")({
4371
- [name$H]: [
4408
+ [name$I]: [
4372
4409
  {
4373
4410
  data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
4374
4411
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4380,12 +4417,12 @@ const mutation$q = Selector("Mutation")({
4380
4417
  const generateAnnualGeneralMeetDecisionDocument = {
4381
4418
  __proto__: null,
4382
4419
  mutation: mutation$q,
4383
- name: name$H
4420
+ name: name$I
4384
4421
  };
4385
4422
 
4386
- const name$G = "generateAnnualGeneralMeetNotificationDocument";
4423
+ const name$H = "generateAnnualGeneralMeetNotificationDocument";
4387
4424
  const mutation$p = Selector("Mutation")({
4388
- [name$G]: [
4425
+ [name$H]: [
4389
4426
  {
4390
4427
  data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
4391
4428
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4397,12 +4434,12 @@ const mutation$p = Selector("Mutation")({
4397
4434
  const generateAnnualGeneralMeetNotificationDocument = {
4398
4435
  __proto__: null,
4399
4436
  mutation: mutation$p,
4400
- name: name$G
4437
+ name: name$H
4401
4438
  };
4402
4439
 
4403
- const name$F = "generateBallotForAnnualGeneralMeetDocument";
4440
+ const name$G = "generateBallotForAnnualGeneralMeetDocument";
4404
4441
  const mutation$o = Selector("Mutation")({
4405
- [name$F]: [
4442
+ [name$G]: [
4406
4443
  {
4407
4444
  data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
4408
4445
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4414,12 +4451,12 @@ const mutation$o = Selector("Mutation")({
4414
4451
  const generateBallotForAnnualGeneralMeetDocument = {
4415
4452
  __proto__: null,
4416
4453
  mutation: mutation$o,
4417
- name: name$F
4454
+ name: name$G
4418
4455
  };
4419
4456
 
4420
- const name$E = "generateSovietDecisionOnAnnualMeetDocument";
4457
+ const name$F = "generateSovietDecisionOnAnnualMeetDocument";
4421
4458
  const mutation$n = Selector("Mutation")({
4422
- [name$E]: [{
4459
+ [name$F]: [{
4423
4460
  data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
4424
4461
  options: $("options", "GenerateDocumentOptionsInput")
4425
4462
  }, documentSelector]
@@ -4428,62 +4465,62 @@ const mutation$n = Selector("Mutation")({
4428
4465
  const generateSovietDecisionOnAnnualMeetDocument = {
4429
4466
  __proto__: null,
4430
4467
  mutation: mutation$n,
4431
- name: name$E
4468
+ name: name$F
4432
4469
  };
4433
4470
 
4434
- const name$D = "notifyOnAnnualGeneralMeet";
4471
+ const name$E = "notifyOnAnnualGeneralMeet";
4435
4472
  const mutation$m = Selector("Mutation")({
4436
- [name$D]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4473
+ [name$E]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4437
4474
  });
4438
4475
 
4439
4476
  const notifyOnAnnualGeneralMeet = {
4440
4477
  __proto__: null,
4441
4478
  mutation: mutation$m,
4442
- name: name$D
4479
+ name: name$E
4443
4480
  };
4444
4481
 
4445
- const name$C = "restartAnnualGeneralMeet";
4482
+ const name$D = "restartAnnualGeneralMeet";
4446
4483
  const mutation$l = Selector("Mutation")({
4447
- [name$C]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
4484
+ [name$D]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
4448
4485
  });
4449
4486
 
4450
4487
  const restartAnnualGeneralMeet = {
4451
4488
  __proto__: null,
4452
4489
  mutation: mutation$l,
4453
- name: name$C
4490
+ name: name$D
4454
4491
  };
4455
4492
 
4456
- const name$B = "signByPresiderOnAnnualGeneralMeet";
4493
+ const name$C = "signByPresiderOnAnnualGeneralMeet";
4457
4494
  const mutation$k = Selector("Mutation")({
4458
- [name$B]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4495
+ [name$C]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4459
4496
  });
4460
4497
 
4461
4498
  const signByPresiderOnAnnualGeneralMeet = {
4462
4499
  __proto__: null,
4463
4500
  mutation: mutation$k,
4464
- name: name$B
4501
+ name: name$C
4465
4502
  };
4466
4503
 
4467
- const name$A = "signBySecretaryOnAnnualGeneralMeet";
4504
+ const name$B = "signBySecretaryOnAnnualGeneralMeet";
4468
4505
  const mutation$j = Selector("Mutation")({
4469
- [name$A]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4506
+ [name$B]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4470
4507
  });
4471
4508
 
4472
4509
  const signBySecretaryOnAnnualGeneralMeet = {
4473
4510
  __proto__: null,
4474
4511
  mutation: mutation$j,
4475
- name: name$A
4512
+ name: name$B
4476
4513
  };
4477
4514
 
4478
- const name$z = "voteOnAnnualGeneralMeet";
4515
+ const name$A = "voteOnAnnualGeneralMeet";
4479
4516
  const mutation$i = Selector("Mutation")({
4480
- [name$z]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4517
+ [name$A]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4481
4518
  });
4482
4519
 
4483
4520
  const voteOnAnnualGeneralMeet = {
4484
4521
  __proto__: null,
4485
4522
  mutation: mutation$i,
4486
- name: name$z
4523
+ name: name$A
4487
4524
  };
4488
4525
 
4489
4526
  const index$n = {
@@ -4501,26 +4538,26 @@ const index$n = {
4501
4538
  VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
4502
4539
  };
4503
4540
 
4504
- const name$y = "createWebPushSubscription";
4541
+ const name$z = "createWebPushSubscription";
4505
4542
  const mutation$h = Selector("Mutation")({
4506
- [name$y]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
4543
+ [name$z]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
4507
4544
  });
4508
4545
 
4509
4546
  const createWebPushSubscription = {
4510
4547
  __proto__: null,
4511
4548
  mutation: mutation$h,
4512
- name: name$y
4549
+ name: name$z
4513
4550
  };
4514
4551
 
4515
- const name$x = "deactivateWebPushSubscriptionById";
4552
+ const name$y = "deactivateWebPushSubscriptionById";
4516
4553
  const mutation$g = Selector("Mutation")({
4517
- [name$x]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
4554
+ [name$y]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
4518
4555
  });
4519
4556
 
4520
4557
  const deactivateWebPushSubscriptionById = {
4521
4558
  __proto__: null,
4522
4559
  mutation: mutation$g,
4523
- name: name$x
4560
+ name: name$y
4524
4561
  };
4525
4562
 
4526
4563
  const index$m = {
@@ -4529,59 +4566,59 @@ const index$m = {
4529
4566
  DeactivateWebPushSubscriptionById: deactivateWebPushSubscriptionById
4530
4567
  };
4531
4568
 
4532
- const name$w = "addParticipant";
4569
+ const name$x = "addParticipant";
4533
4570
  const mutation$f = Selector("Mutation")({
4534
- [name$w]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
4571
+ [name$x]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
4535
4572
  });
4536
4573
 
4537
4574
  const addParticipant = {
4538
4575
  __proto__: null,
4539
4576
  mutation: mutation$f,
4540
- name: name$w
4577
+ name: name$x
4541
4578
  };
4542
4579
 
4543
- const name$v = "generateParticipantApplication";
4580
+ const name$w = "generateParticipantApplication";
4544
4581
  const mutation$e = Selector("Mutation")({
4545
- [name$v]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4582
+ [name$w]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4546
4583
  });
4547
4584
 
4548
4585
  const generateParticipantApplication = {
4549
4586
  __proto__: null,
4550
4587
  mutation: mutation$e,
4551
- name: name$v
4588
+ name: name$w
4552
4589
  };
4553
4590
 
4554
- const name$u = "generateParticipantApplicationDecision";
4591
+ const name$v = "generateParticipantApplicationDecision";
4555
4592
  const mutation$d = Selector("Mutation")({
4556
- [name$u]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4593
+ [name$v]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4557
4594
  });
4558
4595
 
4559
4596
  const generateParticipantApplicationDecision = {
4560
4597
  __proto__: null,
4561
4598
  mutation: mutation$d,
4562
- name: name$u
4599
+ name: name$v
4563
4600
  };
4564
4601
 
4565
- const name$t = "registerParticipant";
4602
+ const name$u = "registerParticipant";
4566
4603
  const mutation$c = Selector("Mutation")({
4567
- [name$t]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
4604
+ [name$u]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
4568
4605
  });
4569
4606
 
4570
4607
  const registerParticipant = {
4571
4608
  __proto__: null,
4572
4609
  mutation: mutation$c,
4573
- name: name$t
4610
+ name: name$u
4574
4611
  };
4575
4612
 
4576
- const name$s = "createInitialPayment";
4613
+ const name$t = "createInitialPayment";
4577
4614
  const mutation$b = Selector("Mutation")({
4578
- [name$s]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4615
+ [name$t]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4579
4616
  });
4580
4617
 
4581
4618
  const createInitialPayment = {
4582
4619
  __proto__: null,
4583
4620
  mutation: mutation$b,
4584
- name: name$s
4621
+ name: name$t
4585
4622
  };
4586
4623
 
4587
4624
  const index$l = {
@@ -4593,37 +4630,37 @@ const index$l = {
4593
4630
  RegisterParticipant: registerParticipant
4594
4631
  };
4595
4632
 
4596
- const name$r = "createBankAccount";
4633
+ const name$s = "createBankAccount";
4597
4634
  const mutation$a = Selector("Mutation")({
4598
- [name$r]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
4635
+ [name$s]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
4599
4636
  });
4600
4637
 
4601
4638
  const createBankAccount = {
4602
4639
  __proto__: null,
4603
4640
  mutation: mutation$a,
4604
- name: name$r
4641
+ name: name$s
4605
4642
  };
4606
4643
 
4607
- const name$q = "deletePaymentMethod";
4644
+ const name$r = "deletePaymentMethod";
4608
4645
  const mutation$9 = Selector("Mutation")({
4609
- [name$q]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
4646
+ [name$r]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
4610
4647
  });
4611
4648
 
4612
4649
  const deletePaymentMethod = {
4613
4650
  __proto__: null,
4614
4651
  mutation: mutation$9,
4615
- name: name$q
4652
+ name: name$r
4616
4653
  };
4617
4654
 
4618
- const name$p = "updateBankAccount";
4655
+ const name$q = "updateBankAccount";
4619
4656
  const mutation$8 = Selector("Mutation")({
4620
- [name$p]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
4657
+ [name$q]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
4621
4658
  });
4622
4659
 
4623
4660
  const updateBankAccount = {
4624
4661
  __proto__: null,
4625
4662
  mutation: mutation$8,
4626
- name: name$p
4663
+ name: name$q
4627
4664
  };
4628
4665
 
4629
4666
  const index$k = {
@@ -4633,48 +4670,48 @@ const index$k = {
4633
4670
  UpdateBankAccount: updateBankAccount
4634
4671
  };
4635
4672
 
4636
- const name$o = "initSystem";
4673
+ const name$p = "initSystem";
4637
4674
  const mutation$7 = Selector("Mutation")({
4638
- [name$o]: [{ data: $("data", "Init!") }, systemInfoSelector]
4675
+ [name$p]: [{ data: $("data", "Init!") }, systemInfoSelector]
4639
4676
  });
4640
4677
 
4641
4678
  const initSystem = {
4642
4679
  __proto__: null,
4643
4680
  mutation: mutation$7,
4644
- name: name$o
4681
+ name: name$p
4645
4682
  };
4646
4683
 
4647
- const name$n = "installSystem";
4684
+ const name$o = "installSystem";
4648
4685
  const mutation$6 = Selector("Mutation")({
4649
- [name$n]: [{ data: $("data", "Install!") }, systemInfoSelector]
4686
+ [name$o]: [{ data: $("data", "Install!") }, systemInfoSelector]
4650
4687
  });
4651
4688
 
4652
4689
  const installSystem = {
4653
4690
  __proto__: null,
4654
4691
  mutation: mutation$6,
4655
- name: name$n
4692
+ name: name$o
4656
4693
  };
4657
4694
 
4658
- const name$m = "setWif";
4695
+ const name$n = "setWif";
4659
4696
  const mutation$5 = Selector("Mutation")({
4660
- [name$m]: [{ data: $("data", "SetWifInput!") }, true]
4697
+ [name$n]: [{ data: $("data", "SetWifInput!") }, true]
4661
4698
  });
4662
4699
 
4663
4700
  const saveWif = {
4664
4701
  __proto__: null,
4665
4702
  mutation: mutation$5,
4666
- name: name$m
4703
+ name: name$n
4667
4704
  };
4668
4705
 
4669
- const name$l = "updateSystem";
4706
+ const name$m = "updateSystem";
4670
4707
  const mutation$4 = Selector("Mutation")({
4671
- [name$l]: [{ data: $("data", "Update!") }, systemInfoSelector]
4708
+ [name$m]: [{ data: $("data", "Update!") }, systemInfoSelector]
4672
4709
  });
4673
4710
 
4674
4711
  const updateSystem = {
4675
4712
  __proto__: null,
4676
4713
  mutation: mutation$4,
4677
- name: name$l
4714
+ name: name$m
4678
4715
  };
4679
4716
 
4680
4717
  const index$j = {
@@ -4685,31 +4722,31 @@ const index$j = {
4685
4722
  UpdateSystem: updateSystem
4686
4723
  };
4687
4724
 
4688
- const name$k = "createWithdraw";
4725
+ const name$l = "createWithdraw";
4689
4726
  const mutation$3 = Selector("Mutation")({
4690
- [name$k]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
4727
+ [name$l]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
4691
4728
  });
4692
4729
 
4693
4730
  const createWithdraw = {
4694
4731
  __proto__: null,
4695
4732
  mutation: mutation$3,
4696
- name: name$k
4733
+ name: name$l
4697
4734
  };
4698
4735
 
4699
- const name$j = "createDepositPayment";
4736
+ const name$k = "createDepositPayment";
4700
4737
  const mutation$2 = Selector("Mutation")({
4701
- [name$j]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4738
+ [name$k]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4702
4739
  });
4703
4740
 
4704
4741
  const createDepositPayment = {
4705
4742
  __proto__: null,
4706
4743
  mutation: mutation$2,
4707
- name: name$j
4744
+ name: name$k
4708
4745
  };
4709
4746
 
4710
- const name$i = "generateReturnByMoneyStatementDocument";
4747
+ const name$j = "generateReturnByMoneyStatementDocument";
4711
4748
  const mutation$1 = Selector("Mutation")({
4712
- [name$i]: [
4749
+ [name$j]: [
4713
4750
  {
4714
4751
  data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
4715
4752
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4721,12 +4758,12 @@ const mutation$1 = Selector("Mutation")({
4721
4758
  const generateReturnByMoneyStatementDocument = {
4722
4759
  __proto__: null,
4723
4760
  mutation: mutation$1,
4724
- name: name$i
4761
+ name: name$j
4725
4762
  };
4726
4763
 
4727
- const name$h = "generateReturnByMoneyDecisionDocument";
4764
+ const name$i = "generateReturnByMoneyDecisionDocument";
4728
4765
  const mutation = Selector("Mutation")({
4729
- [name$h]: [
4766
+ [name$i]: [
4730
4767
  {
4731
4768
  data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
4732
4769
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4738,7 +4775,7 @@ const mutation = Selector("Mutation")({
4738
4775
  const generateReturnByMoneyDecisionDocument = {
4739
4776
  __proto__: null,
4740
4777
  mutation: mutation,
4741
- name: name$h
4778
+ name: name$i
4742
4779
  };
4743
4780
 
4744
4781
  const index$i = {
@@ -4767,26 +4804,26 @@ const Mutations = {
4767
4804
  Wallet: index$i
4768
4805
  };
4769
4806
 
4770
- const name$g = "getAccount";
4771
- const query$g = Selector("Query")({
4772
- [name$g]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
4807
+ const name$h = "getAccount";
4808
+ const query$h = Selector("Query")({
4809
+ [name$h]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
4773
4810
  });
4774
4811
 
4775
4812
  const getAccount = {
4776
4813
  __proto__: null,
4777
- name: name$g,
4778
- query: query$g
4814
+ name: name$h,
4815
+ query: query$h
4779
4816
  };
4780
4817
 
4781
- const name$f = "getAccounts";
4782
- const query$f = Selector("Query")({
4783
- [name$f]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
4818
+ const name$g = "getAccounts";
4819
+ const query$g = Selector("Query")({
4820
+ [name$g]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
4784
4821
  });
4785
4822
 
4786
4823
  const getAccounts = {
4787
4824
  __proto__: null,
4788
- name: name$f,
4789
- query: query$f
4825
+ name: name$g,
4826
+ query: query$g
4790
4827
  };
4791
4828
 
4792
4829
  const rawSearchPrivateAccountsResultSelector = {
@@ -4803,15 +4840,15 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
4803
4840
  rawSearchPrivateAccountsResultSelector
4804
4841
  );
4805
4842
 
4806
- const name$e = "searchPrivateAccounts";
4807
- const query$e = Selector("Query")({
4808
- [name$e]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
4843
+ const name$f = "searchPrivateAccounts";
4844
+ const query$f = Selector("Query")({
4845
+ [name$f]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
4809
4846
  });
4810
4847
 
4811
4848
  const searchPrivateAccounts = {
4812
4849
  __proto__: null,
4813
- name: name$e,
4814
- query: query$e
4850
+ name: name$f,
4851
+ query: query$f
4815
4852
  };
4816
4853
 
4817
4854
  const index$h = {
@@ -4882,15 +4919,15 @@ const rawAgendaSelector = {
4882
4919
  };
4883
4920
  const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
4884
4921
 
4885
- const name$d = "getAgenda";
4886
- const query$d = Selector("Query")({
4887
- [name$d]: agendaSelector
4922
+ const name$e = "getAgenda";
4923
+ const query$e = Selector("Query")({
4924
+ [name$e]: agendaSelector
4888
4925
  });
4889
4926
 
4890
4927
  const getAgenda = {
4891
4928
  __proto__: null,
4892
- name: name$d,
4893
- query: query$d
4929
+ name: name$e,
4930
+ query: query$e
4894
4931
  };
4895
4932
 
4896
4933
  const index$g = {
@@ -4898,26 +4935,26 @@ const index$g = {
4898
4935
  GetAgenda: getAgenda
4899
4936
  };
4900
4937
 
4901
- const name$c = "getBranches";
4902
- const query$c = Selector("Query")({
4903
- [name$c]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
4938
+ const name$d = "getBranches";
4939
+ const query$d = Selector("Query")({
4940
+ [name$d]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
4904
4941
  });
4905
4942
 
4906
4943
  const getBranches = {
4907
4944
  __proto__: null,
4908
- name: name$c,
4909
- query: query$c
4945
+ name: name$d,
4946
+ query: query$d
4910
4947
  };
4911
4948
 
4912
- const name$b = "getBranches";
4913
- const query$b = Selector("Query")({
4914
- [name$b]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
4949
+ const name$c = "getBranches";
4950
+ const query$c = Selector("Query")({
4951
+ [name$c]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
4915
4952
  });
4916
4953
 
4917
4954
  const getPublicBranches = {
4918
4955
  __proto__: null,
4919
- name: name$b,
4920
- query: query$b
4956
+ name: name$c,
4957
+ query: query$c
4921
4958
  };
4922
4959
 
4923
4960
  const index$f = {
@@ -4941,15 +4978,15 @@ const rawDesktopSelector = {
4941
4978
  };
4942
4979
  const desktopSelector = Selector("Desktop")(rawDesktopSelector);
4943
4980
 
4944
- const name$a = "getDesktop";
4945
- const query$a = Selector("Query")({
4946
- [name$a]: desktopSelector
4981
+ const name$b = "getDesktop";
4982
+ const query$b = Selector("Query")({
4983
+ [name$b]: desktopSelector
4947
4984
  });
4948
4985
 
4949
4986
  const getDesktop = {
4950
4987
  __proto__: null,
4951
- name: name$a,
4952
- query: query$a
4988
+ name: name$b,
4989
+ query: query$b
4953
4990
  };
4954
4991
 
4955
4992
  const index$e = {
@@ -4958,15 +4995,15 @@ const index$e = {
4958
4995
  };
4959
4996
 
4960
4997
  const documentPaginationSelector = { ...paginationSelector, items: rawDocumentPackageAggregateSelector };
4961
- const name$9 = "getDocuments";
4962
- const query$9 = Selector("Query")({
4963
- [name$9]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
4998
+ const name$a = "getDocuments";
4999
+ const query$a = Selector("Query")({
5000
+ [name$a]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
4964
5001
  });
4965
5002
 
4966
5003
  const getDocuments = {
4967
5004
  __proto__: null,
4968
- name: name$9,
4969
- query: query$9
5005
+ name: name$a,
5006
+ query: query$a
4970
5007
  };
4971
5008
 
4972
5009
  const index$d = {
@@ -4974,15 +5011,15 @@ const index$d = {
4974
5011
  GetDocuments: getDocuments
4975
5012
  };
4976
5013
 
4977
- const name$8 = "getExtensions";
4978
- const query$8 = Selector("Query")({
4979
- [name$8]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
5014
+ const name$9 = "getExtensions";
5015
+ const query$9 = Selector("Query")({
5016
+ [name$9]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
4980
5017
  });
4981
5018
 
4982
5019
  const getExtensions = {
4983
5020
  __proto__: null,
4984
- name: name$8,
4985
- query: query$8
5021
+ name: name$9,
5022
+ query: query$9
4986
5023
  };
4987
5024
 
4988
5025
  const index$c = {
@@ -4991,9 +5028,9 @@ const index$c = {
4991
5028
  };
4992
5029
 
4993
5030
  const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
4994
- const name$7 = "getPayments";
4995
- const query$7 = Selector("Query")({
4996
- [name$7]: [
5031
+ const name$8 = "getPayments";
5032
+ const query$8 = Selector("Query")({
5033
+ [name$8]: [
4997
5034
  {
4998
5035
  data: $("data", "PaymentFiltersInput"),
4999
5036
  options: $("options", "PaginationInput")
@@ -5004,8 +5041,8 @@ const query$7 = Selector("Query")({
5004
5041
 
5005
5042
  const getPayments = {
5006
5043
  __proto__: null,
5007
- name: name$7,
5008
- query: query$7
5044
+ name: name$8,
5045
+ query: query$8
5009
5046
  };
5010
5047
 
5011
5048
  const index$b = {
@@ -5013,12 +5050,23 @@ const index$b = {
5013
5050
  GetPayments: getPayments
5014
5051
  };
5015
5052
 
5016
- const name$6 = "getLedger";
5017
- const query$6 = Selector("Query")({
5018
- [name$6]: [{ data: $("data", "GetLedgerInput!") }, ledgerStateSelector]
5053
+ const name$7 = "getLedger";
5054
+ const query$7 = Selector("Query")({
5055
+ [name$7]: [{ data: $("data", "GetLedgerInput!") }, ledgerStateSelector]
5019
5056
  });
5020
5057
 
5021
5058
  const getLedger = {
5059
+ __proto__: null,
5060
+ name: name$7,
5061
+ query: query$7
5062
+ };
5063
+
5064
+ const name$6 = "getLedgerHistory";
5065
+ const query$6 = Selector("Query")({
5066
+ [name$6]: [{ data: $("data", "GetLedgerHistoryInput!") }, rawLedgerHistorySelector]
5067
+ });
5068
+
5069
+ const getLedgerHistory = {
5022
5070
  __proto__: null,
5023
5071
  name: name$6,
5024
5072
  query: query$6
@@ -5026,7 +5074,8 @@ const getLedger = {
5026
5074
 
5027
5075
  const index$a = {
5028
5076
  __proto__: null,
5029
- GetLedger: getLedger
5077
+ GetLedger: getLedger,
5078
+ GetLedgerHistory: getLedgerHistory
5030
5079
  };
5031
5080
 
5032
5081
  const name$5 = "getMeet";
@@ -5234,7 +5283,7 @@ const _Client = class _Client {
5234
5283
  signature
5235
5284
  }
5236
5285
  };
5237
- const { [name$1m]: result } = await this.thunder("mutation")(
5286
+ const { [name$1n]: result } = await this.thunder("mutation")(
5238
5287
  mutation$15,
5239
5288
  {
5240
5289
  variables