@coopenomics/sdk 2025.6.24 → 2025.7.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
@@ -840,6 +840,9 @@ const AllTypesProps = {
840
840
  },
841
841
  CreateParentOfferInput: {},
842
842
  CreateProjectFreeDecisionInput: {},
843
+ CreateWithdrawInput: {
844
+ statement: "ReturnByMoneySignedDocumentInput"
845
+ },
843
846
  DateTime: `scalar.DateTime`,
844
847
  DeclineRequestInput: {},
845
848
  DeleteBranchInput: {},
@@ -870,9 +873,6 @@ const AllTypesProps = {
870
873
  GetMeetInput: {},
871
874
  GetMeetsInput: {},
872
875
  GetPaymentMethodsInput: {},
873
- GetPaymentsInput: {
874
- status: "PaymentStatus"
875
- },
876
876
  Init: {
877
877
  organization_data: "CreateOrganizationDataInput",
878
878
  vars: "VarsInput"
@@ -932,6 +932,9 @@ const AllTypesProps = {
932
932
  createProjectOfFreeDecision: {
933
933
  data: "CreateProjectFreeDecisionInput"
934
934
  },
935
+ createWithdraw: {
936
+ input: "CreateWithdrawInput"
937
+ },
935
938
  declineRequest: {
936
939
  data: "DeclineRequestInput"
937
940
  },
@@ -1013,6 +1016,14 @@ const AllTypesProps = {
1013
1016
  data: "ReturnByAssetStatementGenerateDocumentInput",
1014
1017
  options: "GenerateDocumentOptionsInput"
1015
1018
  },
1019
+ generateReturnByMoneyDecisionDocument: {
1020
+ data: "ReturnByMoneyDecisionGenerateDocumentInput",
1021
+ options: "GenerateDocumentOptionsInput"
1022
+ },
1023
+ generateReturnByMoneyStatementDocument: {
1024
+ data: "ReturnByMoneyGenerateDocumentInput",
1025
+ options: "GenerateDocumentOptionsInput"
1026
+ },
1016
1027
  generateSelectBranchDocument: {
1017
1028
  data: "SelectBranchGenerateDocumentInput",
1018
1029
  options: "GenerateDocumentOptionsInput"
@@ -1141,7 +1152,14 @@ const AllTypesProps = {
1141
1152
  },
1142
1153
  ParticipantApplicationSignedMetaDocumentInput: {},
1143
1154
  PassportInput: {},
1155
+ PaymentDirection: "enum",
1156
+ PaymentFiltersInput: {
1157
+ direction: "PaymentDirection",
1158
+ status: "PaymentStatus",
1159
+ type: "PaymentType"
1160
+ },
1144
1161
  PaymentStatus: "enum",
1162
+ PaymentType: "enum",
1145
1163
  ProhibitRequestInput: {},
1146
1164
  ProjectFreeDecisionGenerateDocumentInput: {},
1147
1165
  ProjectFreeDecisionSignedDocumentInput: {
@@ -1180,7 +1198,7 @@ const AllTypesProps = {
1180
1198
  data: "GetPaymentMethodsInput"
1181
1199
  },
1182
1200
  getPayments: {
1183
- data: "GetPaymentsInput",
1201
+ data: "PaymentFiltersInput",
1184
1202
  options: "PaginationInput"
1185
1203
  },
1186
1204
  searchPrivateAccounts: {
@@ -1228,6 +1246,13 @@ const AllTypesProps = {
1228
1246
  ReturnByAssetStatementSignedMetaDocumentInput: {
1229
1247
  request: "CommonRequestInput"
1230
1248
  },
1249
+ ReturnByMoneyDecisionGenerateDocumentInput: {},
1250
+ ReturnByMoneyGenerateDocumentInput: {},
1251
+ ReturnByMoneySignedDocumentInput: {
1252
+ meta: "ReturnByMoneySignedMetaDocumentInput",
1253
+ signatures: "SignatureInfoInput"
1254
+ },
1255
+ ReturnByMoneySignedMetaDocumentInput: {},
1231
1256
  SearchPrivateAccountsInput: {},
1232
1257
  SelectBranchGenerateDocumentInput: {},
1233
1258
  SelectBranchInput: {
@@ -1526,6 +1551,9 @@ const ReturnTypes = {
1526
1551
  username: "String",
1527
1552
  verifications: "Verification"
1528
1553
  },
1554
+ CreateWithdrawResponse: {
1555
+ withdraw_hash: "String"
1556
+ },
1529
1557
  CreatedProjectFreeDecision: {
1530
1558
  decision: "String",
1531
1559
  id: "String",
@@ -1631,6 +1659,36 @@ const ReturnTypes = {
1631
1659
  title: "String",
1632
1660
  updated_at: "DateTime"
1633
1661
  },
1662
+ GatewayPayment: {
1663
+ blockchain_data: "JSON",
1664
+ can_change_status: "Boolean",
1665
+ coopname: "String",
1666
+ created_at: "DateTime",
1667
+ direction: "PaymentDirection",
1668
+ direction_label: "String",
1669
+ expired_at: "DateTime",
1670
+ formatted_amount: "String",
1671
+ hash: "String",
1672
+ id: "ID",
1673
+ income_hash: "String",
1674
+ is_final: "Boolean",
1675
+ memo: "String",
1676
+ message: "String",
1677
+ outcome_hash: "String",
1678
+ payment_details: "PaymentDetails",
1679
+ payment_method_id: "String",
1680
+ provider: "String",
1681
+ quantity: "Float",
1682
+ statement: "JSON",
1683
+ status: "PaymentStatus",
1684
+ status_label: "String",
1685
+ symbol: "String",
1686
+ type: "PaymentType",
1687
+ type_label: "String",
1688
+ updated_at: "DateTime",
1689
+ username: "String",
1690
+ username_certificate: "UserCertificateUnion"
1691
+ },
1634
1692
  GeneratedDocument: {
1635
1693
  binary: "String",
1636
1694
  full_title: "String",
@@ -1767,10 +1825,11 @@ const ReturnTypes = {
1767
1825
  createBankAccount: "PaymentMethod",
1768
1826
  createBranch: "Branch",
1769
1827
  createChildOrder: "Transaction",
1770
- createDepositPayment: "Payment",
1771
- createInitialPayment: "Payment",
1828
+ createDepositPayment: "GatewayPayment",
1829
+ createInitialPayment: "GatewayPayment",
1772
1830
  createParentOffer: "Transaction",
1773
1831
  createProjectOfFreeDecision: "CreatedProjectFreeDecision",
1832
+ createWithdraw: "CreateWithdrawResponse",
1774
1833
  declineRequest: "Transaction",
1775
1834
  deleteBranch: "Boolean",
1776
1835
  deletePaymentMethod: "Boolean",
@@ -1793,6 +1852,8 @@ const ReturnTypes = {
1793
1852
  generateReturnByAssetAct: "GeneratedDocument",
1794
1853
  generateReturnByAssetDecision: "GeneratedDocument",
1795
1854
  generateReturnByAssetStatement: "GeneratedDocument",
1855
+ generateReturnByMoneyDecisionDocument: "GeneratedDocument",
1856
+ generateReturnByMoneyStatementDocument: "GeneratedDocument",
1796
1857
  generateSelectBranchDocument: "GeneratedDocument",
1797
1858
  generateSignatureAgreement: "GeneratedDocument",
1798
1859
  generateSovietDecisionOnAnnualMeetDocument: "GeneratedDocument",
@@ -1815,7 +1876,7 @@ const ReturnTypes = {
1815
1876
  resetKey: "Boolean",
1816
1877
  restartAnnualGeneralMeet: "MeetAggregate",
1817
1878
  selectBranch: "Boolean",
1818
- setPaymentStatus: "Payment",
1879
+ setPaymentStatus: "GatewayPayment",
1819
1880
  setWif: "Boolean",
1820
1881
  signByPresiderOnAnnualGeneralMeet: "MeetAggregate",
1821
1882
  signBySecretaryOnAnnualGeneralMeet: "MeetAggregate",
@@ -1857,6 +1918,12 @@ const ReturnTypes = {
1857
1918
  kpp: "String",
1858
1919
  ogrn: "String"
1859
1920
  },
1921
+ PaginatedGatewayPaymentsPaginationResult: {
1922
+ currentPage: "Int",
1923
+ items: "GatewayPayment",
1924
+ totalCount: "Int",
1925
+ totalPages: "Int"
1926
+ },
1860
1927
  ParticipantAccount: {
1861
1928
  braname: "String",
1862
1929
  created_at: "DateTime",
@@ -1878,26 +1945,10 @@ const ReturnTypes = {
1878
1945
  number: "Int",
1879
1946
  series: "Int"
1880
1947
  },
1881
- Payment: {
1882
- account: "Account",
1883
- amount: "Float",
1884
- blockchain_id: "Float",
1885
- created_at: "DateTime",
1886
- details: "PaymentDetails",
1887
- expired_at: "DateTime",
1888
- id: "String",
1889
- message: "String",
1890
- provider: "String",
1891
- status: "PaymentStatus",
1892
- symbol: "String",
1893
- type: "String",
1894
- updated_at: "DateTime",
1895
- username: "String"
1896
- },
1897
1948
  PaymentDetails: {
1898
1949
  amount_plus_fee: "String",
1899
1950
  amount_without_fee: "String",
1900
- data: "String",
1951
+ data: "JSON",
1901
1952
  fact_fee_percent: "Float",
1902
1953
  fee_amount: "String",
1903
1954
  fee_percent: "Float",
@@ -1922,12 +1973,6 @@ const ReturnTypes = {
1922
1973
  totalCount: "Int",
1923
1974
  totalPages: "Int"
1924
1975
  },
1925
- PaymentPaginationResult: {
1926
- currentPage: "Int",
1927
- items: "Payment",
1928
- totalCount: "Int",
1929
- totalPages: "Int"
1930
- },
1931
1976
  Permission: {
1932
1977
  parent: "String",
1933
1978
  perm_name: "String",
@@ -1974,7 +2019,7 @@ const ReturnTypes = {
1974
2019
  getMeet: "MeetAggregate",
1975
2020
  getMeets: "MeetAggregate",
1976
2021
  getPaymentMethods: "PaymentMethodPaginationResult",
1977
- getPayments: "PaymentPaginationResult",
2022
+ getPayments: "PaginatedGatewayPaymentsPaginationResult",
1978
2023
  getSystemInfo: "SystemInfo",
1979
2024
  searchPrivateAccounts: "PrivateAccountSearchResult"
1980
2025
  },
@@ -2689,15 +2734,28 @@ var OrganizationType = /* @__PURE__ */ ((OrganizationType2) => {
2689
2734
  OrganizationType2["ZAO"] = "ZAO";
2690
2735
  return OrganizationType2;
2691
2736
  })(OrganizationType || {});
2737
+ var PaymentDirection = /* @__PURE__ */ ((PaymentDirection2) => {
2738
+ PaymentDirection2["INCOMING"] = "INCOMING";
2739
+ PaymentDirection2["OUTGOING"] = "OUTGOING";
2740
+ return PaymentDirection2;
2741
+ })(PaymentDirection || {});
2692
2742
  var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
2743
+ PaymentStatus2["CANCELLED"] = "CANCELLED";
2693
2744
  PaymentStatus2["COMPLETED"] = "COMPLETED";
2694
2745
  PaymentStatus2["EXPIRED"] = "EXPIRED";
2695
2746
  PaymentStatus2["FAILED"] = "FAILED";
2696
2747
  PaymentStatus2["PAID"] = "PAID";
2697
2748
  PaymentStatus2["PENDING"] = "PENDING";
2749
+ PaymentStatus2["PROCESSING"] = "PROCESSING";
2698
2750
  PaymentStatus2["REFUNDED"] = "REFUNDED";
2699
2751
  return PaymentStatus2;
2700
2752
  })(PaymentStatus || {});
2753
+ var PaymentType = /* @__PURE__ */ ((PaymentType2) => {
2754
+ PaymentType2["DEPOSIT"] = "DEPOSIT";
2755
+ PaymentType2["REGISTRATION"] = "REGISTRATION";
2756
+ PaymentType2["WITHDRAWAL"] = "WITHDRAWAL";
2757
+ return PaymentType2;
2758
+ })(PaymentType || {});
2701
2759
  var SystemStatus = /* @__PURE__ */ ((SystemStatus2) => {
2702
2760
  SystemStatus2["active"] = "active";
2703
2761
  SystemStatus2["install"] = "install";
@@ -2716,7 +2774,7 @@ var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
2716
2774
  return UserStatus2;
2717
2775
  })(UserStatus || {});
2718
2776
 
2719
- const index$s = {
2777
+ const index$t = {
2720
2778
  __proto__: null,
2721
2779
  $: $,
2722
2780
  AccountType: AccountType,
@@ -2731,7 +2789,9 @@ const index$s = {
2731
2789
  InternalArgsBuilt: InternalArgsBuilt,
2732
2790
  InternalsBuildQuery: InternalsBuildQuery,
2733
2791
  OrganizationType: OrganizationType,
2792
+ PaymentDirection: PaymentDirection,
2734
2793
  PaymentStatus: PaymentStatus,
2794
+ PaymentType: PaymentType,
2735
2795
  PrepareScalarPaths: PrepareScalarPaths,
2736
2796
  ResolveFromPath: ResolveFromPath,
2737
2797
  SEPARATOR: SEPARATOR,
@@ -3092,37 +3152,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
3092
3152
  rawRegisteredAccountSelector
3093
3153
  );
3094
3154
 
3095
- const name$1m = "registerAccount";
3096
- const mutation$18 = Selector("Mutation")({
3097
- [name$1m]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
3155
+ const name$1r = "registerAccount";
3156
+ const mutation$1d = Selector("Mutation")({
3157
+ [name$1r]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
3098
3158
  });
3099
3159
 
3100
3160
  const registerAccount = {
3101
3161
  __proto__: null,
3102
- mutation: mutation$18,
3103
- name: name$1m
3162
+ mutation: mutation$1d,
3163
+ name: name$1r
3104
3164
  };
3105
3165
 
3106
- const name$1l = "resetKey";
3107
- const mutation$17 = Selector("Mutation")({
3108
- [name$1l]: [{ data: $("data", "ResetKeyInput!") }, true]
3166
+ const name$1q = "resetKey";
3167
+ const mutation$1c = Selector("Mutation")({
3168
+ [name$1q]: [{ data: $("data", "ResetKeyInput!") }, true]
3109
3169
  });
3110
3170
 
3111
3171
  const resetKey = {
3112
3172
  __proto__: null,
3113
- mutation: mutation$17,
3114
- name: name$1l
3173
+ mutation: mutation$1c,
3174
+ name: name$1q
3115
3175
  };
3116
3176
 
3117
- const name$1k = "startResetKey";
3118
- const mutation$16 = Selector("Mutation")({
3119
- [name$1k]: [{ data: $("data", "StartResetKeyInput!") }, true]
3177
+ const name$1p = "startResetKey";
3178
+ const mutation$1b = Selector("Mutation")({
3179
+ [name$1p]: [{ data: $("data", "StartResetKeyInput!") }, true]
3120
3180
  });
3121
3181
 
3122
3182
  const startResetKey = {
3123
3183
  __proto__: null,
3124
- mutation: mutation$16,
3125
- name: name$1k
3184
+ mutation: mutation$1b,
3185
+ name: name$1p
3126
3186
  };
3127
3187
 
3128
3188
  const paginationSelector = {
@@ -3237,6 +3297,49 @@ const rawFreeProjectSelector = {
3237
3297
  };
3238
3298
  const createdProjectFreeDecisionSelector = Selector("CreatedProjectFreeDecision")(rawFreeProjectSelector);
3239
3299
 
3300
+ const rawPaymentDetailsSelector = {
3301
+ data: true,
3302
+ amount_plus_fee: true,
3303
+ amount_without_fee: true,
3304
+ fee_amount: true,
3305
+ fee_percent: true,
3306
+ fact_fee_percent: true,
3307
+ tolerance_percent: true
3308
+ };
3309
+ const rawPaymentSelector = {
3310
+ id: true,
3311
+ hash: true,
3312
+ coopname: true,
3313
+ username: true,
3314
+ username_certificate: rawUserCertificateUnionSelector,
3315
+ quantity: true,
3316
+ symbol: true,
3317
+ type: true,
3318
+ direction: true,
3319
+ status: true,
3320
+ provider: true,
3321
+ payment_method_id: true,
3322
+ message: true,
3323
+ memo: true,
3324
+ expired_at: true,
3325
+ created_at: true,
3326
+ updated_at: true,
3327
+ payment_details: rawPaymentDetailsSelector,
3328
+ blockchain_data: true,
3329
+ statement: true,
3330
+ // Поля для обратной совместимости
3331
+ outcome_hash: true,
3332
+ income_hash: true,
3333
+ // Вычисляемые поля
3334
+ formatted_amount: true,
3335
+ status_label: true,
3336
+ type_label: true,
3337
+ direction_label: true,
3338
+ can_change_status: true,
3339
+ is_final: true
3340
+ };
3341
+ const paymentSelector = Selector("GatewayPayment")(rawPaymentSelector);
3342
+
3240
3343
  const rawGeneratedDocumentSelector = {
3241
3344
  hash: true,
3242
3345
  binary: true,
@@ -3529,18 +3632,23 @@ const rawSystemInfoSelector = {
3529
3632
  };
3530
3633
  const systemInfoSelector = Selector("SystemInfo")(rawSystemInfoSelector);
3531
3634
 
3532
- const name$1j = "updateAccount";
3533
- const mutation$15 = Selector("Mutation")({
3534
- [name$1j]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
3635
+ const rawCreateWithdrawResponseSelector = {
3636
+ withdraw_hash: true
3637
+ };
3638
+ const createWithdrawResponseSelector = Selector("CreateWithdrawResponse")(rawCreateWithdrawResponseSelector);
3639
+
3640
+ const name$1o = "updateAccount";
3641
+ const mutation$1a = Selector("Mutation")({
3642
+ [name$1o]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
3535
3643
  });
3536
3644
 
3537
3645
  const updateAccount = {
3538
3646
  __proto__: null,
3539
- mutation: mutation$15,
3540
- name: name$1j
3647
+ mutation: mutation$1a,
3648
+ name: name$1o
3541
3649
  };
3542
3650
 
3543
- const index$r = {
3651
+ const index$s = {
3544
3652
  __proto__: null,
3545
3653
  RegisterAccount: registerAccount,
3546
3654
  ResetKey: resetKey,
@@ -3548,440 +3656,440 @@ const index$r = {
3548
3656
  UpdateAccount: updateAccount
3549
3657
  };
3550
3658
 
3551
- const name$1i = "generatePrivacyAgreement";
3552
- const mutation$14 = Selector("Mutation")({
3553
- [name$1i]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3659
+ const name$1n = "generatePrivacyAgreement";
3660
+ const mutation$19 = Selector("Mutation")({
3661
+ [name$1n]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3554
3662
  });
3555
3663
 
3556
3664
  const generatePrivacyAgreement = {
3665
+ __proto__: null,
3666
+ mutation: mutation$19,
3667
+ name: name$1n
3668
+ };
3669
+
3670
+ const name$1m = "generateSignatureAgreement";
3671
+ const mutation$18 = Selector("Mutation")({
3672
+ [name$1m]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3673
+ });
3674
+
3675
+ const generateSignatureAgreement = {
3676
+ __proto__: null,
3677
+ mutation: mutation$18,
3678
+ name: name$1m
3679
+ };
3680
+
3681
+ const name$1l = "generateWalletAgreement";
3682
+ const mutation$17 = Selector("Mutation")({
3683
+ [name$1l]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3684
+ });
3685
+
3686
+ const generateWalletAgreement = {
3687
+ __proto__: null,
3688
+ mutation: mutation$17,
3689
+ name: name$1l
3690
+ };
3691
+
3692
+ const name$1k = "generateUserAgreement";
3693
+ const mutation$16 = Selector("Mutation")({
3694
+ [name$1k]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3695
+ });
3696
+
3697
+ const generateUserAgreement = {
3698
+ __proto__: null,
3699
+ mutation: mutation$16,
3700
+ name: name$1k
3701
+ };
3702
+
3703
+ const index$r = {
3704
+ __proto__: null,
3705
+ GeneratePrivacyAgreement: generatePrivacyAgreement,
3706
+ GenerateSignatureAgreement: generateSignatureAgreement,
3707
+ GenerateUserAgreement: generateUserAgreement,
3708
+ GenerateWalletAgreement: generateWalletAgreement
3709
+ };
3710
+
3711
+ const name$1j = "refresh";
3712
+ const mutation$15 = Selector("Mutation")({
3713
+ [name$1j]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
3714
+ });
3715
+
3716
+ const refresh = {
3717
+ __proto__: null,
3718
+ mutation: mutation$15,
3719
+ name: name$1j
3720
+ };
3721
+
3722
+ const name$1i = "logout";
3723
+ const mutation$14 = Selector("Mutation")({
3724
+ [name$1i]: [{ data: $("data", "LogoutInput!") }, true]
3725
+ });
3726
+
3727
+ const logout = {
3557
3728
  __proto__: null,
3558
3729
  mutation: mutation$14,
3559
3730
  name: name$1i
3560
3731
  };
3561
3732
 
3562
- const name$1h = "generateSignatureAgreement";
3733
+ const name$1h = "login";
3563
3734
  const mutation$13 = Selector("Mutation")({
3564
- [name$1h]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3735
+ [name$1h]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
3565
3736
  });
3566
3737
 
3567
- const generateSignatureAgreement = {
3738
+ const login = {
3568
3739
  __proto__: null,
3569
3740
  mutation: mutation$13,
3570
3741
  name: name$1h
3571
3742
  };
3572
3743
 
3573
- const name$1g = "generateWalletAgreement";
3744
+ const index$q = {
3745
+ __proto__: null,
3746
+ Login: login,
3747
+ Logout: logout,
3748
+ Refresh: refresh
3749
+ };
3750
+
3751
+ const name$1g = "addTrustedAccount";
3574
3752
  const mutation$12 = Selector("Mutation")({
3575
- [name$1g]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3753
+ [name$1g]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
3576
3754
  });
3577
3755
 
3578
- const generateWalletAgreement = {
3756
+ const addTrustedAccount = {
3579
3757
  __proto__: null,
3580
3758
  mutation: mutation$12,
3581
3759
  name: name$1g
3582
3760
  };
3583
3761
 
3584
- const name$1f = "generateUserAgreement";
3762
+ const name$1f = "createBranch";
3585
3763
  const mutation$11 = Selector("Mutation")({
3586
- [name$1f]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3764
+ [name$1f]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
3587
3765
  });
3588
3766
 
3589
- const generateUserAgreement = {
3767
+ const createBranch = {
3590
3768
  __proto__: null,
3591
3769
  mutation: mutation$11,
3592
3770
  name: name$1f
3593
3771
  };
3594
3772
 
3595
- const index$q = {
3596
- __proto__: null,
3597
- GeneratePrivacyAgreement: generatePrivacyAgreement,
3598
- GenerateSignatureAgreement: generateSignatureAgreement,
3599
- GenerateUserAgreement: generateUserAgreement,
3600
- GenerateWalletAgreement: generateWalletAgreement
3601
- };
3602
-
3603
- const name$1e = "refresh";
3773
+ const name$1e = "deleteBranch";
3604
3774
  const mutation$10 = Selector("Mutation")({
3605
- [name$1e]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
3775
+ [name$1e]: [{ data: $("data", "DeleteBranchInput!") }, true]
3606
3776
  });
3607
3777
 
3608
- const refresh = {
3778
+ const deleteBranch = {
3609
3779
  __proto__: null,
3610
3780
  mutation: mutation$10,
3611
3781
  name: name$1e
3612
3782
  };
3613
3783
 
3614
- const name$1d = "logout";
3784
+ const name$1d = "deleteTrustedAccount";
3615
3785
  const mutation$$ = Selector("Mutation")({
3616
- [name$1d]: [{ data: $("data", "LogoutInput!") }, true]
3786
+ [name$1d]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
3617
3787
  });
3618
3788
 
3619
- const logout = {
3789
+ const deleteTrustedAccount = {
3620
3790
  __proto__: null,
3621
3791
  mutation: mutation$$,
3622
3792
  name: name$1d
3623
3793
  };
3624
3794
 
3625
- const name$1c = "login";
3795
+ const name$1c = "editBranch";
3626
3796
  const mutation$_ = Selector("Mutation")({
3627
- [name$1c]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
3797
+ [name$1c]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
3628
3798
  });
3629
3799
 
3630
- const login = {
3800
+ const editBranch = {
3631
3801
  __proto__: null,
3632
3802
  mutation: mutation$_,
3633
3803
  name: name$1c
3634
3804
  };
3635
3805
 
3636
- const index$p = {
3637
- __proto__: null,
3638
- Login: login,
3639
- Logout: logout,
3640
- Refresh: refresh
3641
- };
3642
-
3643
- const name$1b = "addTrustedAccount";
3806
+ const name$1b = "generateSelectBranchDocument";
3644
3807
  const mutation$Z = Selector("Mutation")({
3645
- [name$1b]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
3808
+ [name$1b]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3646
3809
  });
3647
3810
 
3648
- const addTrustedAccount = {
3811
+ const generateSelectBranchDocument = {
3649
3812
  __proto__: null,
3650
3813
  mutation: mutation$Z,
3651
3814
  name: name$1b
3652
3815
  };
3653
3816
 
3654
- const name$1a = "createBranch";
3817
+ const name$1a = "selectBranch";
3655
3818
  const mutation$Y = Selector("Mutation")({
3656
- [name$1a]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
3819
+ [name$1a]: [{ data: $("data", "SelectBranchInput!") }, true]
3657
3820
  });
3658
3821
 
3659
- const createBranch = {
3822
+ const selectBranch = {
3660
3823
  __proto__: null,
3661
3824
  mutation: mutation$Y,
3662
3825
  name: name$1a
3663
3826
  };
3664
3827
 
3665
- const name$19 = "deleteBranch";
3828
+ const index$p = {
3829
+ __proto__: null,
3830
+ AddTrustedAccount: addTrustedAccount,
3831
+ CreateBranch: createBranch,
3832
+ DeleteBranch: deleteBranch,
3833
+ DeleteTrustedAccount: deleteTrustedAccount,
3834
+ EditBranch: editBranch,
3835
+ GenerateSelectBranchDocument: generateSelectBranchDocument,
3836
+ SelectBranch: selectBranch
3837
+ };
3838
+
3839
+ const name$19 = "acceptChildOrder";
3666
3840
  const mutation$X = Selector("Mutation")({
3667
- [name$19]: [{ data: $("data", "DeleteBranchInput!") }, true]
3841
+ [name$19]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
3668
3842
  });
3669
3843
 
3670
- const deleteBranch = {
3844
+ const acceptChildOrder = {
3671
3845
  __proto__: null,
3672
3846
  mutation: mutation$X,
3673
3847
  name: name$19
3674
3848
  };
3675
3849
 
3676
- const name$18 = "deleteTrustedAccount";
3850
+ const name$18 = "cancelRequest";
3677
3851
  const mutation$W = Selector("Mutation")({
3678
- [name$18]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
3852
+ [name$18]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
3679
3853
  });
3680
3854
 
3681
- const deleteTrustedAccount = {
3855
+ const cancelRequest = {
3682
3856
  __proto__: null,
3683
3857
  mutation: mutation$W,
3684
3858
  name: name$18
3685
3859
  };
3686
3860
 
3687
- const name$17 = "editBranch";
3861
+ const name$17 = "confirmReceiveOnRequest";
3688
3862
  const mutation$V = Selector("Mutation")({
3689
- [name$17]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
3863
+ [name$17]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
3690
3864
  });
3691
3865
 
3692
- const editBranch = {
3866
+ const completeReceiveOnRequest = {
3693
3867
  __proto__: null,
3694
3868
  mutation: mutation$V,
3695
3869
  name: name$17
3696
3870
  };
3697
3871
 
3698
- const name$16 = "generateSelectBranchDocument";
3872
+ const name$16 = "completeRequest";
3699
3873
  const mutation$U = Selector("Mutation")({
3700
- [name$16]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3874
+ [name$16]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
3701
3875
  });
3702
3876
 
3703
- const generateSelectBranchDocument = {
3877
+ const completeRequest = {
3704
3878
  __proto__: null,
3705
3879
  mutation: mutation$U,
3706
3880
  name: name$16
3707
3881
  };
3708
3882
 
3709
- const name$15 = "selectBranch";
3883
+ const name$15 = "confirmSupplyOnRequest";
3710
3884
  const mutation$T = Selector("Mutation")({
3711
- [name$15]: [{ data: $("data", "SelectBranchInput!") }, true]
3885
+ [name$15]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
3712
3886
  });
3713
3887
 
3714
- const selectBranch = {
3888
+ const confirmSupplyOnRequest = {
3715
3889
  __proto__: null,
3716
3890
  mutation: mutation$T,
3717
3891
  name: name$15
3718
3892
  };
3719
3893
 
3720
- const index$o = {
3721
- __proto__: null,
3722
- AddTrustedAccount: addTrustedAccount,
3723
- CreateBranch: createBranch,
3724
- DeleteBranch: deleteBranch,
3725
- DeleteTrustedAccount: deleteTrustedAccount,
3726
- EditBranch: editBranch,
3727
- GenerateSelectBranchDocument: generateSelectBranchDocument,
3728
- SelectBranch: selectBranch
3729
- };
3730
-
3731
- const name$14 = "acceptChildOrder";
3894
+ const name$14 = "createChildOrder";
3732
3895
  const mutation$S = Selector("Mutation")({
3733
- [name$14]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
3896
+ [name$14]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
3734
3897
  });
3735
3898
 
3736
- const acceptChildOrder = {
3899
+ const createChildOrder = {
3737
3900
  __proto__: null,
3738
3901
  mutation: mutation$S,
3739
3902
  name: name$14
3740
3903
  };
3741
3904
 
3742
- const name$13 = "cancelRequest";
3905
+ const name$13 = "createParentOffer";
3743
3906
  const mutation$R = Selector("Mutation")({
3744
- [name$13]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
3907
+ [name$13]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
3745
3908
  });
3746
3909
 
3747
- const cancelRequest = {
3910
+ const createParentOffer = {
3748
3911
  __proto__: null,
3749
3912
  mutation: mutation$R,
3750
3913
  name: name$13
3751
3914
  };
3752
3915
 
3753
- const name$12 = "confirmReceiveOnRequest";
3916
+ const name$12 = "declineRequest";
3754
3917
  const mutation$Q = Selector("Mutation")({
3755
- [name$12]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
3918
+ [name$12]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
3756
3919
  });
3757
3920
 
3758
- const completeReceiveOnRequest = {
3921
+ const declineRequest = {
3759
3922
  __proto__: null,
3760
3923
  mutation: mutation$Q,
3761
3924
  name: name$12
3762
3925
  };
3763
3926
 
3764
- const name$11 = "completeRequest";
3927
+ const name$11 = "deliverOnRequest";
3765
3928
  const mutation$P = Selector("Mutation")({
3766
- [name$11]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
3929
+ [name$11]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
3767
3930
  });
3768
3931
 
3769
- const completeRequest = {
3932
+ const deliverOnRequest = {
3770
3933
  __proto__: null,
3771
3934
  mutation: mutation$P,
3772
3935
  name: name$11
3773
3936
  };
3774
3937
 
3775
- const name$10 = "confirmSupplyOnRequest";
3938
+ const name$10 = "disputeOnRequest";
3776
3939
  const mutation$O = Selector("Mutation")({
3777
- [name$10]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
3940
+ [name$10]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
3778
3941
  });
3779
3942
 
3780
- const confirmSupplyOnRequest = {
3943
+ const disputeOnRequest = {
3781
3944
  __proto__: null,
3782
3945
  mutation: mutation$O,
3783
3946
  name: name$10
3784
3947
  };
3785
3948
 
3786
- const name$$ = "createChildOrder";
3949
+ const name$$ = "generateAssetContributionAct";
3787
3950
  const mutation$N = Selector("Mutation")({
3788
- [name$$]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
3951
+ [name$$]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3789
3952
  });
3790
3953
 
3791
- const createChildOrder = {
3954
+ const generateAssetContributionAct = {
3792
3955
  __proto__: null,
3793
3956
  mutation: mutation$N,
3794
3957
  name: name$$
3795
3958
  };
3796
3959
 
3797
- const name$_ = "createParentOffer";
3960
+ const name$_ = "generateAssetContributionDecision";
3798
3961
  const mutation$M = Selector("Mutation")({
3799
- [name$_]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
3962
+ [name$_]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3800
3963
  });
3801
3964
 
3802
- const createParentOffer = {
3965
+ const generateAssetContributionDecision = {
3803
3966
  __proto__: null,
3804
3967
  mutation: mutation$M,
3805
3968
  name: name$_
3806
3969
  };
3807
3970
 
3808
- const name$Z = "declineRequest";
3971
+ const name$Z = "generateAssetContributionStatement";
3809
3972
  const mutation$L = Selector("Mutation")({
3810
- [name$Z]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
3973
+ [name$Z]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3811
3974
  });
3812
3975
 
3813
- const declineRequest = {
3976
+ const generateAssetContributionStatement = {
3814
3977
  __proto__: null,
3815
3978
  mutation: mutation$L,
3816
3979
  name: name$Z
3817
3980
  };
3818
3981
 
3819
- const name$Y = "deliverOnRequest";
3982
+ const name$Y = "generateReturnByAssetAct";
3820
3983
  const mutation$K = Selector("Mutation")({
3821
- [name$Y]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
3984
+ [name$Y]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3822
3985
  });
3823
3986
 
3824
- const deliverOnRequest = {
3987
+ const generateReturnByAssetAct = {
3825
3988
  __proto__: null,
3826
3989
  mutation: mutation$K,
3827
3990
  name: name$Y
3828
3991
  };
3829
3992
 
3830
- const name$X = "disputeOnRequest";
3993
+ const name$X = "generateReturnByAssetDecision";
3831
3994
  const mutation$J = Selector("Mutation")({
3832
- [name$X]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
3995
+ [name$X]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3833
3996
  });
3834
3997
 
3835
- const disputeOnRequest = {
3998
+ const generateReturnByAssetDecision = {
3836
3999
  __proto__: null,
3837
4000
  mutation: mutation$J,
3838
4001
  name: name$X
3839
4002
  };
3840
4003
 
3841
- const name$W = "generateAssetContributionAct";
4004
+ const name$W = "generateReturnByAssetStatement";
3842
4005
  const mutation$I = Selector("Mutation")({
3843
- [name$W]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4006
+ [name$W]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
3844
4007
  });
3845
4008
 
3846
- const generateAssetContributionAct = {
4009
+ const generateReturnByAssetStatement = {
3847
4010
  __proto__: null,
3848
4011
  mutation: mutation$I,
3849
4012
  name: name$W
3850
4013
  };
3851
4014
 
3852
- const name$V = "generateAssetContributionDecision";
4015
+ const name$V = "moderateRequest";
3853
4016
  const mutation$H = Selector("Mutation")({
3854
- [name$V]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4017
+ [name$V]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
3855
4018
  });
3856
4019
 
3857
- const generateAssetContributionDecision = {
4020
+ const moderateRequest = {
3858
4021
  __proto__: null,
3859
4022
  mutation: mutation$H,
3860
4023
  name: name$V
3861
4024
  };
3862
4025
 
3863
- const name$U = "generateAssetContributionStatement";
4026
+ const name$U = "prohibitRequest";
3864
4027
  const mutation$G = Selector("Mutation")({
3865
- [name$U]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4028
+ [name$U]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
3866
4029
  });
3867
4030
 
3868
- const generateAssetContributionStatement = {
4031
+ const prohibitRequest = {
3869
4032
  __proto__: null,
3870
4033
  mutation: mutation$G,
3871
4034
  name: name$U
3872
4035
  };
3873
4036
 
3874
- const name$T = "generateReturnByAssetAct";
4037
+ const name$T = "publishRequest";
3875
4038
  const mutation$F = Selector("Mutation")({
3876
- [name$T]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4039
+ [name$T]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
3877
4040
  });
3878
4041
 
3879
- const generateReturnByAssetAct = {
4042
+ const publishRequest = {
3880
4043
  __proto__: null,
3881
4044
  mutation: mutation$F,
3882
4045
  name: name$T
3883
4046
  };
3884
4047
 
3885
- const name$S = "generateReturnByAssetDecision";
4048
+ const name$S = "receiveOnRequest";
3886
4049
  const mutation$E = Selector("Mutation")({
3887
- [name$S]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4050
+ [name$S]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
3888
4051
  });
3889
4052
 
3890
- const generateReturnByAssetDecision = {
4053
+ const receiveOnRequest = {
3891
4054
  __proto__: null,
3892
4055
  mutation: mutation$E,
3893
4056
  name: name$S
3894
4057
  };
3895
4058
 
3896
- const name$R = "generateReturnByAssetStatement";
4059
+ const name$R = "supplyOnRequest";
3897
4060
  const mutation$D = Selector("Mutation")({
3898
- [name$R]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4061
+ [name$R]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
3899
4062
  });
3900
4063
 
3901
- const generateReturnByAssetStatement = {
4064
+ const supplyOnRequest = {
3902
4065
  __proto__: null,
3903
4066
  mutation: mutation$D,
3904
4067
  name: name$R
3905
4068
  };
3906
4069
 
3907
- const name$Q = "moderateRequest";
4070
+ const name$Q = "unpublishRequest";
3908
4071
  const mutation$C = Selector("Mutation")({
3909
- [name$Q]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
4072
+ [name$Q]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
3910
4073
  });
3911
4074
 
3912
- const moderateRequest = {
4075
+ const unpublishRequest = {
3913
4076
  __proto__: null,
3914
4077
  mutation: mutation$C,
3915
4078
  name: name$Q
3916
4079
  };
3917
4080
 
3918
- const name$P = "prohibitRequest";
4081
+ const name$P = "updateRequest";
3919
4082
  const mutation$B = Selector("Mutation")({
3920
- [name$P]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
4083
+ [name$P]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
3921
4084
  });
3922
4085
 
3923
- const prohibitRequest = {
4086
+ const updateRequest = {
3924
4087
  __proto__: null,
3925
4088
  mutation: mutation$B,
3926
4089
  name: name$P
3927
4090
  };
3928
4091
 
3929
- const name$O = "publishRequest";
3930
- const mutation$A = Selector("Mutation")({
3931
- [name$O]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
3932
- });
3933
-
3934
- const publishRequest = {
3935
- __proto__: null,
3936
- mutation: mutation$A,
3937
- name: name$O
3938
- };
3939
-
3940
- const name$N = "receiveOnRequest";
3941
- const mutation$z = Selector("Mutation")({
3942
- [name$N]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
3943
- });
3944
-
3945
- const receiveOnRequest = {
3946
- __proto__: null,
3947
- mutation: mutation$z,
3948
- name: name$N
3949
- };
3950
-
3951
- const name$M = "supplyOnRequest";
3952
- const mutation$y = Selector("Mutation")({
3953
- [name$M]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
3954
- });
3955
-
3956
- const supplyOnRequest = {
3957
- __proto__: null,
3958
- mutation: mutation$y,
3959
- name: name$M
3960
- };
3961
-
3962
- const name$L = "unpublishRequest";
3963
- const mutation$x = Selector("Mutation")({
3964
- [name$L]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
3965
- });
3966
-
3967
- const unpublishRequest = {
3968
- __proto__: null,
3969
- mutation: mutation$x,
3970
- name: name$L
3971
- };
3972
-
3973
- const name$K = "updateRequest";
3974
- const mutation$w = Selector("Mutation")({
3975
- [name$K]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
3976
- });
3977
-
3978
- const updateRequest = {
3979
- __proto__: null,
3980
- mutation: mutation$w,
3981
- name: name$K
3982
- };
3983
-
3984
- const index$n = {
4092
+ const index$o = {
3985
4093
  __proto__: null,
3986
4094
  AcceptChildOrder: acceptChildOrder,
3987
4095
  CancelRequest: cancelRequest,
@@ -4008,91 +4116,91 @@ const index$n = {
4008
4116
  UpdateRequest: updateRequest
4009
4117
  };
4010
4118
 
4011
- const name$J = "installExtension";
4012
- const mutation$v = Selector("Mutation")({
4013
- [name$J]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4119
+ const name$O = "installExtension";
4120
+ const mutation$A = Selector("Mutation")({
4121
+ [name$O]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4014
4122
  });
4015
4123
 
4016
4124
  const installExtension = {
4017
4125
  __proto__: null,
4018
- mutation: mutation$v,
4019
- name: name$J
4126
+ mutation: mutation$A,
4127
+ name: name$O
4020
4128
  };
4021
4129
 
4022
- const name$I = "uninstallExtension";
4023
- const mutation$u = Selector("Mutation")({
4024
- [name$I]: [{ data: $("data", "UninstallExtensionInput!") }, true]
4130
+ const name$N = "uninstallExtension";
4131
+ const mutation$z = Selector("Mutation")({
4132
+ [name$N]: [{ data: $("data", "UninstallExtensionInput!") }, true]
4025
4133
  });
4026
4134
 
4027
4135
  const uninstallExtension = {
4028
4136
  __proto__: null,
4029
- mutation: mutation$u,
4030
- name: name$I
4137
+ mutation: mutation$z,
4138
+ name: name$N
4031
4139
  };
4032
4140
 
4033
- const name$H = "updateExtension";
4034
- const mutation$t = Selector("Mutation")({
4035
- [name$H]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4141
+ const name$M = "updateExtension";
4142
+ const mutation$y = Selector("Mutation")({
4143
+ [name$M]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
4036
4144
  });
4037
4145
 
4038
4146
  const updateExtension = {
4039
4147
  __proto__: null,
4040
- mutation: mutation$t,
4041
- name: name$H
4148
+ mutation: mutation$y,
4149
+ name: name$M
4042
4150
  };
4043
4151
 
4044
- const index$m = {
4152
+ const index$n = {
4045
4153
  __proto__: null,
4046
4154
  InstallExtension: installExtension,
4047
4155
  UninstallExtension: uninstallExtension,
4048
4156
  UpdateExtension: updateExtension
4049
4157
  };
4050
4158
 
4051
- const name$G = "generateProjectOfFreeDecision";
4052
- const mutation$s = Selector("Mutation")({
4053
- [name$G]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4159
+ const name$L = "generateProjectOfFreeDecision";
4160
+ const mutation$x = Selector("Mutation")({
4161
+ [name$L]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4054
4162
  });
4055
4163
 
4056
4164
  const generateProjectOfFreeDecisionDocument = {
4057
4165
  __proto__: null,
4058
- mutation: mutation$s,
4059
- name: name$G
4166
+ mutation: mutation$x,
4167
+ name: name$L
4060
4168
  };
4061
4169
 
4062
- const name$F = "generateFreeDecision";
4063
- const mutation$r = Selector("Mutation")({
4064
- [name$F]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4170
+ const name$K = "generateFreeDecision";
4171
+ const mutation$w = Selector("Mutation")({
4172
+ [name$K]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4065
4173
  });
4066
4174
 
4067
4175
  const generateFreeDecision = {
4068
4176
  __proto__: null,
4069
- mutation: mutation$r,
4070
- name: name$F
4177
+ mutation: mutation$w,
4178
+ name: name$K
4071
4179
  };
4072
4180
 
4073
- const name$E = "publishProjectOfFreeDecision";
4074
- const mutation$q = Selector("Mutation")({
4075
- [name$E]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
4181
+ const name$J = "publishProjectOfFreeDecision";
4182
+ const mutation$v = Selector("Mutation")({
4183
+ [name$J]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
4076
4184
  });
4077
4185
 
4078
4186
  const publishProjectOfFreeDecision = {
4079
4187
  __proto__: null,
4080
- mutation: mutation$q,
4081
- name: name$E
4188
+ mutation: mutation$v,
4189
+ name: name$J
4082
4190
  };
4083
4191
 
4084
- const name$D = "createProjectOfFreeDecision";
4085
- const mutation$p = Selector("Mutation")({
4086
- [name$D]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
4192
+ const name$I = "createProjectOfFreeDecision";
4193
+ const mutation$u = Selector("Mutation")({
4194
+ [name$I]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
4087
4195
  });
4088
4196
 
4089
4197
  const createProjectOfFreeDecision = {
4090
4198
  __proto__: null,
4091
- mutation: mutation$p,
4092
- name: name$D
4199
+ mutation: mutation$u,
4200
+ name: name$I
4093
4201
  };
4094
4202
 
4095
- const index$l = {
4203
+ const index$m = {
4096
4204
  __proto__: null,
4097
4205
  CreateProjectOfFreeDecision: createProjectOfFreeDecision,
4098
4206
  GenerateFreeDecision: generateFreeDecision,
@@ -4100,20 +4208,60 @@ const index$l = {
4100
4208
  PublishProjectOfFreeDecision: publishProjectOfFreeDecision
4101
4209
  };
4102
4210
 
4103
- const name$C = "createAnnualGeneralMeet";
4104
- const mutation$o = Selector("Mutation")({
4105
- [name$C]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
4211
+ const name$H = "setPaymentStatus";
4212
+ const mutation$t = Selector("Mutation")({
4213
+ [name$H]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
4214
+ });
4215
+
4216
+ const updatePaymentStatus = {
4217
+ __proto__: null,
4218
+ mutation: mutation$t,
4219
+ name: name$H
4220
+ };
4221
+
4222
+ const name$G = "createInitialPayment";
4223
+ const mutation$s = Selector("Mutation")({
4224
+ [name$G]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4225
+ });
4226
+
4227
+ const createInitialPayment$1 = {
4228
+ __proto__: null,
4229
+ mutation: mutation$s,
4230
+ name: name$G
4231
+ };
4232
+
4233
+ const name$F = "createDepositPayment";
4234
+ const mutation$r = Selector("Mutation")({
4235
+ [name$F]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4236
+ });
4237
+
4238
+ const createDepositPayment$1 = {
4239
+ __proto__: null,
4240
+ mutation: mutation$r,
4241
+ name: name$F
4242
+ };
4243
+
4244
+ const index$l = {
4245
+ __proto__: null,
4246
+ CreateDepositPayment: createDepositPayment$1,
4247
+ CreateInitialPayment: createInitialPayment$1,
4248
+ SetPaymentStatus: updatePaymentStatus
4249
+ };
4250
+
4251
+ const name$E = "createAnnualGeneralMeet";
4252
+ const mutation$q = Selector("Mutation")({
4253
+ [name$E]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
4106
4254
  });
4107
4255
 
4108
4256
  const createAnnualGeneralMeet = {
4109
4257
  __proto__: null,
4110
- mutation: mutation$o,
4111
- name: name$C
4258
+ mutation: mutation$q,
4259
+ name: name$E
4112
4260
  };
4113
4261
 
4114
- const name$B = "generateAnnualGeneralMeetAgendaDocument";
4115
- const mutation$n = Selector("Mutation")({
4116
- [name$B]: [
4262
+ const name$D = "generateAnnualGeneralMeetAgendaDocument";
4263
+ const mutation$p = Selector("Mutation")({
4264
+ [name$D]: [
4117
4265
  {
4118
4266
  data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
4119
4267
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4124,13 +4272,13 @@ const mutation$n = Selector("Mutation")({
4124
4272
 
4125
4273
  const generateAnnualGeneralMeetAgendaDocument = {
4126
4274
  __proto__: null,
4127
- mutation: mutation$n,
4128
- name: name$B
4275
+ mutation: mutation$p,
4276
+ name: name$D
4129
4277
  };
4130
4278
 
4131
- const name$A = "generateAnnualGeneralMeetDecisionDocument";
4132
- const mutation$m = Selector("Mutation")({
4133
- [name$A]: [
4279
+ const name$C = "generateAnnualGeneralMeetDecisionDocument";
4280
+ const mutation$o = Selector("Mutation")({
4281
+ [name$C]: [
4134
4282
  {
4135
4283
  data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
4136
4284
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4141,13 +4289,13 @@ const mutation$m = Selector("Mutation")({
4141
4289
 
4142
4290
  const generateAnnualGeneralMeetDecisionDocument = {
4143
4291
  __proto__: null,
4144
- mutation: mutation$m,
4145
- name: name$A
4292
+ mutation: mutation$o,
4293
+ name: name$C
4146
4294
  };
4147
4295
 
4148
- const name$z = "generateAnnualGeneralMeetNotificationDocument";
4149
- const mutation$l = Selector("Mutation")({
4150
- [name$z]: [
4296
+ const name$B = "generateAnnualGeneralMeetNotificationDocument";
4297
+ const mutation$n = Selector("Mutation")({
4298
+ [name$B]: [
4151
4299
  {
4152
4300
  data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
4153
4301
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4158,13 +4306,13 @@ const mutation$l = Selector("Mutation")({
4158
4306
 
4159
4307
  const generateAnnualGeneralMeetNotificationDocument = {
4160
4308
  __proto__: null,
4161
- mutation: mutation$l,
4162
- name: name$z
4309
+ mutation: mutation$n,
4310
+ name: name$B
4163
4311
  };
4164
4312
 
4165
- const name$y = "generateBallotForAnnualGeneralMeetDocument";
4166
- const mutation$k = Selector("Mutation")({
4167
- [name$y]: [
4313
+ const name$A = "generateBallotForAnnualGeneralMeetDocument";
4314
+ const mutation$m = Selector("Mutation")({
4315
+ [name$A]: [
4168
4316
  {
4169
4317
  data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
4170
4318
  options: $("options", "GenerateDocumentOptionsInput")
@@ -4175,13 +4323,13 @@ const mutation$k = Selector("Mutation")({
4175
4323
 
4176
4324
  const generateBallotForAnnualGeneralMeetDocument = {
4177
4325
  __proto__: null,
4178
- mutation: mutation$k,
4179
- name: name$y
4326
+ mutation: mutation$m,
4327
+ name: name$A
4180
4328
  };
4181
4329
 
4182
- const name$x = "generateSovietDecisionOnAnnualMeetDocument";
4183
- const mutation$j = Selector("Mutation")({
4184
- [name$x]: [{
4330
+ const name$z = "generateSovietDecisionOnAnnualMeetDocument";
4331
+ const mutation$l = Selector("Mutation")({
4332
+ [name$z]: [{
4185
4333
  data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
4186
4334
  options: $("options", "GenerateDocumentOptionsInput")
4187
4335
  }, documentSelector]
@@ -4189,63 +4337,63 @@ const mutation$j = Selector("Mutation")({
4189
4337
 
4190
4338
  const generateSovietDecisionOnAnnualMeetDocument = {
4191
4339
  __proto__: null,
4192
- mutation: mutation$j,
4193
- name: name$x
4340
+ mutation: mutation$l,
4341
+ name: name$z
4194
4342
  };
4195
4343
 
4196
- const name$w = "notifyOnAnnualGeneralMeet";
4197
- const mutation$i = Selector("Mutation")({
4198
- [name$w]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4344
+ const name$y = "notifyOnAnnualGeneralMeet";
4345
+ const mutation$k = Selector("Mutation")({
4346
+ [name$y]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4199
4347
  });
4200
4348
 
4201
4349
  const notifyOnAnnualGeneralMeet = {
4202
4350
  __proto__: null,
4203
- mutation: mutation$i,
4204
- name: name$w
4351
+ mutation: mutation$k,
4352
+ name: name$y
4205
4353
  };
4206
4354
 
4207
- const name$v = "restartAnnualGeneralMeet";
4208
- const mutation$h = Selector("Mutation")({
4209
- [name$v]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
4355
+ const name$x = "restartAnnualGeneralMeet";
4356
+ const mutation$j = Selector("Mutation")({
4357
+ [name$x]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
4210
4358
  });
4211
4359
 
4212
4360
  const restartAnnualGeneralMeet = {
4213
4361
  __proto__: null,
4214
- mutation: mutation$h,
4215
- name: name$v
4362
+ mutation: mutation$j,
4363
+ name: name$x
4216
4364
  };
4217
4365
 
4218
- const name$u = "signByPresiderOnAnnualGeneralMeet";
4219
- const mutation$g = Selector("Mutation")({
4220
- [name$u]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4366
+ const name$w = "signByPresiderOnAnnualGeneralMeet";
4367
+ const mutation$i = Selector("Mutation")({
4368
+ [name$w]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4221
4369
  });
4222
4370
 
4223
4371
  const signByPresiderOnAnnualGeneralMeet = {
4224
4372
  __proto__: null,
4225
- mutation: mutation$g,
4226
- name: name$u
4373
+ mutation: mutation$i,
4374
+ name: name$w
4227
4375
  };
4228
4376
 
4229
- const name$t = "signBySecretaryOnAnnualGeneralMeet";
4230
- const mutation$f = Selector("Mutation")({
4231
- [name$t]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4377
+ const name$v = "signBySecretaryOnAnnualGeneralMeet";
4378
+ const mutation$h = Selector("Mutation")({
4379
+ [name$v]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4232
4380
  });
4233
4381
 
4234
4382
  const signBySecretaryOnAnnualGeneralMeet = {
4235
4383
  __proto__: null,
4236
- mutation: mutation$f,
4237
- name: name$t
4384
+ mutation: mutation$h,
4385
+ name: name$v
4238
4386
  };
4239
4387
 
4240
- const name$s = "voteOnAnnualGeneralMeet";
4241
- const mutation$e = Selector("Mutation")({
4242
- [name$s]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4388
+ const name$u = "voteOnAnnualGeneralMeet";
4389
+ const mutation$g = Selector("Mutation")({
4390
+ [name$u]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
4243
4391
  });
4244
4392
 
4245
4393
  const voteOnAnnualGeneralMeet = {
4246
4394
  __proto__: null,
4247
- mutation: mutation$e,
4248
- name: name$s
4395
+ mutation: mutation$g,
4396
+ name: name$u
4249
4397
  };
4250
4398
 
4251
4399
  const index$k = {
@@ -4263,89 +4411,101 @@ const index$k = {
4263
4411
  VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
4264
4412
  };
4265
4413
 
4266
- const name$r = "addParticipant";
4267
- const mutation$d = Selector("Mutation")({
4268
- [name$r]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
4414
+ const name$t = "addParticipant";
4415
+ const mutation$f = Selector("Mutation")({
4416
+ [name$t]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
4269
4417
  });
4270
4418
 
4271
4419
  const addParticipant = {
4272
4420
  __proto__: null,
4273
- mutation: mutation$d,
4274
- name: name$r
4421
+ mutation: mutation$f,
4422
+ name: name$t
4275
4423
  };
4276
4424
 
4277
- const name$q = "generateParticipantApplication";
4278
- const mutation$c = Selector("Mutation")({
4279
- [name$q]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4425
+ const name$s = "generateParticipantApplication";
4426
+ const mutation$e = Selector("Mutation")({
4427
+ [name$s]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4280
4428
  });
4281
4429
 
4282
4430
  const generateParticipantApplication = {
4283
4431
  __proto__: null,
4284
- mutation: mutation$c,
4285
- name: name$q
4432
+ mutation: mutation$e,
4433
+ name: name$s
4286
4434
  };
4287
4435
 
4288
- const name$p = "generateParticipantApplicationDecision";
4289
- const mutation$b = Selector("Mutation")({
4290
- [name$p]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4436
+ const name$r = "generateParticipantApplicationDecision";
4437
+ const mutation$d = Selector("Mutation")({
4438
+ [name$r]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
4291
4439
  });
4292
4440
 
4293
4441
  const generateParticipantApplicationDecision = {
4294
4442
  __proto__: null,
4295
- mutation: mutation$b,
4296
- name: name$p
4443
+ mutation: mutation$d,
4444
+ name: name$r
4297
4445
  };
4298
4446
 
4299
- const name$o = "registerParticipant";
4300
- const mutation$a = Selector("Mutation")({
4301
- [name$o]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
4447
+ const name$q = "registerParticipant";
4448
+ const mutation$c = Selector("Mutation")({
4449
+ [name$q]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
4302
4450
  });
4303
4451
 
4304
4452
  const registerParticipant = {
4305
4453
  __proto__: null,
4306
- mutation: mutation$a,
4307
- name: name$o
4454
+ mutation: mutation$c,
4455
+ name: name$q
4456
+ };
4457
+
4458
+ const name$p = "createInitialPayment";
4459
+ const mutation$b = Selector("Mutation")({
4460
+ [name$p]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4461
+ });
4462
+
4463
+ const createInitialPayment = {
4464
+ __proto__: null,
4465
+ mutation: mutation$b,
4466
+ name: name$p
4308
4467
  };
4309
4468
 
4310
4469
  const index$j = {
4311
4470
  __proto__: null,
4312
4471
  AddParticipant: addParticipant,
4472
+ CreateInitialPayment: createInitialPayment,
4313
4473
  GenerateParticipantApplication: generateParticipantApplication,
4314
4474
  GenerateParticipantApplicationDecision: generateParticipantApplicationDecision,
4315
4475
  RegisterParticipant: registerParticipant
4316
4476
  };
4317
4477
 
4318
- const name$n = "createBankAccount";
4319
- const mutation$9 = Selector("Mutation")({
4320
- [name$n]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
4478
+ const name$o = "createBankAccount";
4479
+ const mutation$a = Selector("Mutation")({
4480
+ [name$o]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
4321
4481
  });
4322
4482
 
4323
4483
  const createBankAccount = {
4324
4484
  __proto__: null,
4325
- mutation: mutation$9,
4326
- name: name$n
4485
+ mutation: mutation$a,
4486
+ name: name$o
4327
4487
  };
4328
4488
 
4329
- const name$m = "deletePaymentMethod";
4330
- const mutation$8 = Selector("Mutation")({
4331
- [name$m]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
4489
+ const name$n = "deletePaymentMethod";
4490
+ const mutation$9 = Selector("Mutation")({
4491
+ [name$n]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
4332
4492
  });
4333
4493
 
4334
4494
  const deletePaymentMethod = {
4335
4495
  __proto__: null,
4336
- mutation: mutation$8,
4337
- name: name$m
4496
+ mutation: mutation$9,
4497
+ name: name$n
4338
4498
  };
4339
4499
 
4340
- const name$l = "updateBankAccount";
4341
- const mutation$7 = Selector("Mutation")({
4342
- [name$l]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
4500
+ const name$m = "updateBankAccount";
4501
+ const mutation$8 = Selector("Mutation")({
4502
+ [name$m]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
4343
4503
  });
4344
4504
 
4345
4505
  const updateBankAccount = {
4346
4506
  __proto__: null,
4347
- mutation: mutation$7,
4348
- name: name$l
4507
+ mutation: mutation$8,
4508
+ name: name$m
4349
4509
  };
4350
4510
 
4351
4511
  const index$i = {
@@ -4355,61 +4515,45 @@ const index$i = {
4355
4515
  UpdateBankAccount: updateBankAccount
4356
4516
  };
4357
4517
 
4358
- const rawPaymentDetailsSelector = {
4359
- amount_plus_fee: true,
4360
- amount_without_fee: true,
4361
- data: true,
4362
- fact_fee_percent: true,
4363
- fee_amount: true,
4364
- fee_percent: true,
4365
- tolerance_percent: true
4366
- };
4367
- const rawPaymentSelector = {
4368
- account: rawAccountSelector,
4369
- amount: true,
4370
- blockchain_id: true,
4371
- created_at: true,
4372
- details: rawPaymentDetailsSelector,
4373
- expired_at: true,
4374
- id: true,
4375
- type: true,
4376
- message: true,
4377
- provider: true,
4378
- status: true,
4379
- symbol: true,
4380
- updated_at: true,
4381
- username: true
4518
+ const name$l = "initSystem";
4519
+ const mutation$7 = Selector("Mutation")({
4520
+ [name$l]: [{ data: $("data", "Init!") }, systemInfoSelector]
4521
+ });
4522
+
4523
+ const initSystem = {
4524
+ __proto__: null,
4525
+ mutation: mutation$7,
4526
+ name: name$l
4382
4527
  };
4383
- const paymentSelector = Selector("Payment")(rawPaymentSelector);
4384
4528
 
4385
- const name$k = "createInitialPayment";
4529
+ const name$k = "installSystem";
4386
4530
  const mutation$6 = Selector("Mutation")({
4387
- [name$k]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
4531
+ [name$k]: [{ data: $("data", "Install!") }, systemInfoSelector]
4388
4532
  });
4389
4533
 
4390
- const createInitial = {
4534
+ const installSystem = {
4391
4535
  __proto__: null,
4392
4536
  mutation: mutation$6,
4393
4537
  name: name$k
4394
4538
  };
4395
4539
 
4396
- const name$j = "createDepositPayment";
4540
+ const name$j = "setWif";
4397
4541
  const mutation$5 = Selector("Mutation")({
4398
- [name$j]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4542
+ [name$j]: [{ data: $("data", "Update!") }, true]
4399
4543
  });
4400
4544
 
4401
- const createDeposit = {
4545
+ const setWif = {
4402
4546
  __proto__: null,
4403
4547
  mutation: mutation$5,
4404
4548
  name: name$j
4405
4549
  };
4406
4550
 
4407
- const name$i = "setPaymentStatus";
4551
+ const name$i = "updateSystem";
4408
4552
  const mutation$4 = Selector("Mutation")({
4409
- [name$i]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
4553
+ [name$i]: [{ data: $("data", "Update!") }, systemInfoSelector]
4410
4554
  });
4411
4555
 
4412
- const setPaymentStatus = {
4556
+ const updateSystem = {
4413
4557
  __proto__: null,
4414
4558
  mutation: mutation$4,
4415
4559
  name: name$i
@@ -4417,50 +4561,63 @@ const setPaymentStatus = {
4417
4561
 
4418
4562
  const index$h = {
4419
4563
  __proto__: null,
4420
- CreateDepositPayment: createDeposit,
4421
- CreateInitialPayment: createInitial,
4422
- SetPaymentStatus: setPaymentStatus
4564
+ InitSystem: initSystem,
4565
+ InstallSystem: installSystem,
4566
+ SetWif: setWif,
4567
+ UpdateSystem: updateSystem
4423
4568
  };
4424
4569
 
4425
- const name$h = "initSystem";
4570
+ const name$h = "createWithdraw";
4426
4571
  const mutation$3 = Selector("Mutation")({
4427
- [name$h]: [{ data: $("data", "Init!") }, systemInfoSelector]
4572
+ [name$h]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
4428
4573
  });
4429
4574
 
4430
- const initSystem = {
4575
+ const createWithdraw = {
4431
4576
  __proto__: null,
4432
4577
  mutation: mutation$3,
4433
4578
  name: name$h
4434
4579
  };
4435
4580
 
4436
- const name$g = "installSystem";
4581
+ const name$g = "createDepositPayment";
4437
4582
  const mutation$2 = Selector("Mutation")({
4438
- [name$g]: [{ data: $("data", "Install!") }, systemInfoSelector]
4583
+ [name$g]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
4439
4584
  });
4440
4585
 
4441
- const installSystem = {
4586
+ const createDepositPayment = {
4442
4587
  __proto__: null,
4443
4588
  mutation: mutation$2,
4444
4589
  name: name$g
4445
4590
  };
4446
4591
 
4447
- const name$f = "setWif";
4592
+ const name$f = "generateReturnByMoneyStatementDocument";
4448
4593
  const mutation$1 = Selector("Mutation")({
4449
- [name$f]: [{ data: $("data", "Update!") }, true]
4594
+ [name$f]: [
4595
+ {
4596
+ data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
4597
+ options: $("options", "GenerateDocumentOptionsInput")
4598
+ },
4599
+ rawGeneratedDocumentSelector
4600
+ ]
4450
4601
  });
4451
4602
 
4452
- const setWif = {
4603
+ const generateReturnByMoneyStatementDocument = {
4453
4604
  __proto__: null,
4454
4605
  mutation: mutation$1,
4455
4606
  name: name$f
4456
4607
  };
4457
4608
 
4458
- const name$e = "updateSystem";
4609
+ const name$e = "generateReturnByMoneyDecisionDocument";
4459
4610
  const mutation = Selector("Mutation")({
4460
- [name$e]: [{ data: $("data", "Update!") }, systemInfoSelector]
4611
+ [name$e]: [
4612
+ {
4613
+ data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
4614
+ options: $("options", "GenerateDocumentOptionsInput")
4615
+ },
4616
+ rawGeneratedDocumentSelector
4617
+ ]
4461
4618
  });
4462
4619
 
4463
- const updateSystem = {
4620
+ const generateReturnByMoneyDecisionDocument = {
4464
4621
  __proto__: null,
4465
4622
  mutation: mutation,
4466
4623
  name: name$e
@@ -4468,26 +4625,27 @@ const updateSystem = {
4468
4625
 
4469
4626
  const index$g = {
4470
4627
  __proto__: null,
4471
- InitSystem: initSystem,
4472
- InstallSystem: installSystem,
4473
- SetWif: setWif,
4474
- UpdateSystem: updateSystem
4628
+ CreateDepositPayment: createDepositPayment,
4629
+ CreateWithdraw: createWithdraw,
4630
+ GenerateReturnByMoneyDecisionDocument: generateReturnByMoneyDecisionDocument,
4631
+ GenerateReturnByMoneyStatementDocument: generateReturnByMoneyStatementDocument
4475
4632
  };
4476
4633
 
4477
4634
  const Mutations = {
4478
4635
  __proto__: null,
4479
- Accounts: index$r,
4480
- Agreements: index$q,
4481
- Auth: index$p,
4482
- Branches: index$o,
4483
- Cooplace: index$n,
4484
- Extensions: index$m,
4485
- FreeDecisions: index$l,
4636
+ Accounts: index$s,
4637
+ Agreements: index$r,
4638
+ Auth: index$q,
4639
+ Branches: index$p,
4640
+ Cooplace: index$o,
4641
+ Extensions: index$n,
4642
+ FreeDecisions: index$m,
4643
+ Gateway: index$l,
4486
4644
  Meet: index$k,
4487
4645
  Participants: index$j,
4488
4646
  PaymentMethods: index$i,
4489
- Payments: index$h,
4490
- System: index$g
4647
+ System: index$h,
4648
+ Wallet: index$g
4491
4649
  };
4492
4650
 
4493
4651
  const name$d = "getAccount";
@@ -4713,67 +4871,73 @@ const index$a = {
4713
4871
  GetExtensions: getExtensions
4714
4872
  };
4715
4873
 
4716
- const name$4 = "getMeet";
4874
+ const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
4875
+ const name$4 = "getPayments";
4717
4876
  const query$4 = Selector("Query")({
4718
- [name$4]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
4877
+ [name$4]: [
4878
+ {
4879
+ data: $("data", "PaymentFiltersInput"),
4880
+ options: $("options", "PaginationInput")
4881
+ },
4882
+ paginatedPaymentsSelector
4883
+ ]
4719
4884
  });
4720
4885
 
4721
- const getMeet = {
4886
+ const getPayments = {
4722
4887
  __proto__: null,
4723
4888
  name: name$4,
4724
4889
  query: query$4
4725
4890
  };
4726
4891
 
4727
- const name$3 = "getMeets";
4892
+ const index$9 = {
4893
+ __proto__: null,
4894
+ GetPayments: getPayments
4895
+ };
4896
+
4897
+ const name$3 = "getMeet";
4728
4898
  const query$3 = Selector("Query")({
4729
- [name$3]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
4899
+ [name$3]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
4730
4900
  });
4731
4901
 
4732
- const getMeets = {
4902
+ const getMeet = {
4733
4903
  __proto__: null,
4734
4904
  name: name$3,
4735
4905
  query: query$3
4736
4906
  };
4737
4907
 
4738
- const index$9 = {
4739
- __proto__: null,
4740
- GetMeet: getMeet,
4741
- GetMeets: getMeets
4742
- };
4743
-
4744
- const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
4745
- Selector("PaymentMethodPaginationResult")(rawPaymentMethodPaginationSelector);
4746
-
4747
- const name$2 = "getPaymentMethods";
4908
+ const name$2 = "getMeets";
4748
4909
  const query$2 = Selector("Query")({
4749
- [name$2]: [{ data: $("data", "GetPaymentMethodsInput") }, rawPaymentMethodPaginationSelector]
4910
+ [name$2]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
4750
4911
  });
4751
4912
 
4752
- const getPaymentMethods = {
4913
+ const getMeets = {
4753
4914
  __proto__: null,
4915
+ name: name$2,
4754
4916
  query: query$2
4755
4917
  };
4756
4918
 
4757
4919
  const index$8 = {
4758
4920
  __proto__: null,
4759
- GetPaymentMethods: getPaymentMethods
4921
+ GetMeet: getMeet,
4922
+ GetMeets: getMeets
4760
4923
  };
4761
4924
 
4762
- const paymentPaginationSelector = { ...paginationSelector, items: rawPaymentSelector };
4763
- const name$1 = "getPayments";
4925
+ const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
4926
+ Selector("PaymentMethodPaginationResult")(rawPaymentMethodPaginationSelector);
4927
+
4928
+ const name$1 = "getPaymentMethods";
4764
4929
  const query$1 = Selector("Query")({
4765
- [name$1]: [{ data: $("data", "GetPaymentsInput"), options: $("options", "PaginationInput") }, paymentPaginationSelector]
4930
+ [name$1]: [{ data: $("data", "GetPaymentMethodsInput") }, rawPaymentMethodPaginationSelector]
4766
4931
  });
4767
4932
 
4768
- const getPayments = {
4933
+ const getPaymentMethods = {
4769
4934
  __proto__: null,
4770
- name: name$1,
4771
4935
  query: query$1
4772
4936
  };
4773
4937
 
4774
4938
  const index$7 = {
4775
4939
  __proto__: null,
4776
- GetPayments: getPayments
4940
+ GetPaymentMethods: getPaymentMethods
4777
4941
  };
4778
4942
 
4779
4943
  const name = "getSystemInfo";
@@ -4800,9 +4964,9 @@ const index$5 = {
4800
4964
  Desktop: index$c,
4801
4965
  Documents: index$b,
4802
4966
  Extensions: index$a,
4803
- Meet: index$9,
4804
- PaymentMethods: index$8,
4805
- Payments: index$7,
4967
+ Gateway: index$9,
4968
+ Meet: index$8,
4969
+ PaymentMethods: index$7,
4806
4970
  System: index$6
4807
4971
  };
4808
4972
 
@@ -4905,8 +5069,8 @@ const _Client = class _Client {
4905
5069
  signature
4906
5070
  }
4907
5071
  };
4908
- const { [name$1c]: result } = await this.thunder("mutation")(
4909
- mutation$_,
5072
+ const { [name$1h]: result } = await this.thunder("mutation")(
5073
+ mutation$13,
4910
5074
  {
4911
5075
  variables
4912
5076
  }
@@ -5033,4 +5197,4 @@ exports.Client = Client;
5033
5197
  exports.Mutations = Mutations;
5034
5198
  exports.Queries = index$5;
5035
5199
  exports.Types = index;
5036
- exports.Zeus = index$s;
5200
+ exports.Zeus = index$t;