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