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