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