@coopenomics/sdk 2025.6.19 → 2025.6.24

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.d.ts CHANGED
@@ -257,7 +257,7 @@ type ScalarCoders = {
257
257
  JSON?: ScalarResolver;
258
258
  JSONObject?: ScalarResolver;
259
259
  };
260
- type ZEUS_UNIONS = GraphQLTypes["PaymentMethodData"] | GraphQLTypes["UserCertificateUnion"];
260
+ type ZEUS_UNIONS = GraphQLTypes["PaymentMethodData"] | GraphQLTypes["PrivateAccountSearchData"] | GraphQLTypes["UserCertificateUnion"];
261
261
  type ValueTypes = {
262
262
  ["AcceptChildOrderInput"]: {
263
263
  /** Имя аккаунта кооператива */
@@ -2679,6 +2679,23 @@ type ValueTypes = {
2679
2679
  type?: boolean | `@${string}`;
2680
2680
  __typename?: boolean | `@${string}`;
2681
2681
  }>;
2682
+ ["PrivateAccountSearchData"]: AliasType<{
2683
+ ["...on Entrepreneur"]?: ValueTypes["Entrepreneur"];
2684
+ ["...on Individual"]?: ValueTypes["Individual"];
2685
+ ["...on Organization"]?: ValueTypes["Organization"];
2686
+ __typename?: boolean | `@${string}`;
2687
+ }>;
2688
+ ["PrivateAccountSearchResult"]: AliasType<{
2689
+ /** Данные найденного аккаунта */
2690
+ data?: ValueTypes["PrivateAccountSearchData"];
2691
+ /** Поля, в которых найдены совпадения */
2692
+ highlightedFields?: boolean | `@${string}`;
2693
+ /** Оценка релевантности результата */
2694
+ score?: boolean | `@${string}`;
2695
+ /** Тип аккаунта */
2696
+ type?: boolean | `@${string}`;
2697
+ __typename?: boolean | `@${string}`;
2698
+ }>;
2682
2699
  ["ProhibitRequestInput"]: {
2683
2700
  /** Имя аккаунта кооператива */
2684
2701
  coopname: string | Variable<any, string>;
@@ -2813,6 +2830,9 @@ type ValueTypes = {
2813
2830
  }, ValueTypes["PaymentPaginationResult"]];
2814
2831
  /** Получить сводную публичную информацию о системе */
2815
2832
  getSystemInfo?: ValueTypes["SystemInfo"];
2833
+ searchPrivateAccounts?: [{
2834
+ data: ValueTypes["SearchPrivateAccountsInput"] | Variable<any, string>;
2835
+ }, ValueTypes["PrivateAccountSearchResult"]];
2816
2836
  __typename?: boolean | `@${string}`;
2817
2837
  }>;
2818
2838
  /** Вопрос повестки собрания с результатами голосования */
@@ -3160,6 +3180,10 @@ type ValueTypes = {
3160
3180
  phone?: boolean | `@${string}`;
3161
3181
  __typename?: boolean | `@${string}`;
3162
3182
  }>;
3183
+ ["SearchPrivateAccountsInput"]: {
3184
+ /** Поисковый запрос для поиска приватных аккаунтов */
3185
+ query: string | Variable<any, string>;
3186
+ };
3163
3187
  ["SelectBranchGenerateDocumentInput"]: {
3164
3188
  /** Номер блока, на котором был создан документ */
3165
3189
  block_num?: number | undefined | null | Variable<any, string>;
@@ -6076,6 +6100,23 @@ type ResolverInputTypes = {
6076
6100
  type?: boolean | `@${string}`;
6077
6101
  __typename?: boolean | `@${string}`;
6078
6102
  }>;
6103
+ ["PrivateAccountSearchData"]: AliasType<{
6104
+ Entrepreneur?: ResolverInputTypes["Entrepreneur"];
6105
+ Individual?: ResolverInputTypes["Individual"];
6106
+ Organization?: ResolverInputTypes["Organization"];
6107
+ __typename?: boolean | `@${string}`;
6108
+ }>;
6109
+ ["PrivateAccountSearchResult"]: AliasType<{
6110
+ /** Данные найденного аккаунта */
6111
+ data?: ResolverInputTypes["PrivateAccountSearchData"];
6112
+ /** Поля, в которых найдены совпадения */
6113
+ highlightedFields?: boolean | `@${string}`;
6114
+ /** Оценка релевантности результата */
6115
+ score?: boolean | `@${string}`;
6116
+ /** Тип аккаунта */
6117
+ type?: boolean | `@${string}`;
6118
+ __typename?: boolean | `@${string}`;
6119
+ }>;
6079
6120
  ["ProhibitRequestInput"]: {
6080
6121
  /** Имя аккаунта кооператива */
6081
6122
  coopname: string;
@@ -6210,6 +6251,9 @@ type ResolverInputTypes = {
6210
6251
  }, ResolverInputTypes["PaymentPaginationResult"]];
6211
6252
  /** Получить сводную публичную информацию о системе */
6212
6253
  getSystemInfo?: ResolverInputTypes["SystemInfo"];
6254
+ searchPrivateAccounts?: [{
6255
+ data: ResolverInputTypes["SearchPrivateAccountsInput"];
6256
+ }, ResolverInputTypes["PrivateAccountSearchResult"]];
6213
6257
  __typename?: boolean | `@${string}`;
6214
6258
  }>;
6215
6259
  /** Вопрос повестки собрания с результатами голосования */
@@ -6557,6 +6601,10 @@ type ResolverInputTypes = {
6557
6601
  phone?: boolean | `@${string}`;
6558
6602
  __typename?: boolean | `@${string}`;
6559
6603
  }>;
6604
+ ["SearchPrivateAccountsInput"]: {
6605
+ /** Поисковый запрос для поиска приватных аккаунтов */
6606
+ query: string;
6607
+ };
6560
6608
  ["SelectBranchGenerateDocumentInput"]: {
6561
6609
  /** Номер блока, на котором был создан документ */
6562
6610
  block_num?: number | undefined | null;
@@ -9316,6 +9364,17 @@ type ModelTypes = {
9316
9364
  /** Тип аккаунта */
9317
9365
  type: ModelTypes["AccountType"];
9318
9366
  };
9367
+ ["PrivateAccountSearchData"]: ModelTypes["Entrepreneur"] | ModelTypes["Individual"] | ModelTypes["Organization"];
9368
+ ["PrivateAccountSearchResult"]: {
9369
+ /** Данные найденного аккаунта */
9370
+ data: ModelTypes["PrivateAccountSearchData"];
9371
+ /** Поля, в которых найдены совпадения */
9372
+ highlightedFields?: Array<string> | undefined | null;
9373
+ /** Оценка релевантности результата */
9374
+ score?: number | undefined | null;
9375
+ /** Тип аккаунта */
9376
+ type: string;
9377
+ };
9319
9378
  ["ProhibitRequestInput"]: {
9320
9379
  /** Имя аккаунта кооператива */
9321
9380
  coopname: string;
@@ -9437,6 +9496,8 @@ type ModelTypes = {
9437
9496
  getPayments: ModelTypes["PaymentPaginationResult"];
9438
9497
  /** Получить сводную публичную информацию о системе */
9439
9498
  getSystemInfo: ModelTypes["SystemInfo"];
9499
+ /** Поиск приватных данных аккаунтов по запросу. Поиск осуществляется по полям ФИО, ИНН, ОГРН, наименованию организации и другим приватным данным. */
9500
+ searchPrivateAccounts: Array<ModelTypes["PrivateAccountSearchResult"]>;
9440
9501
  };
9441
9502
  /** Вопрос повестки собрания с результатами голосования */
9442
9503
  ["Question"]: {
@@ -9775,6 +9836,10 @@ type ModelTypes = {
9775
9836
  /** Мобильный телефон получателя */
9776
9837
  phone: string;
9777
9838
  };
9839
+ ["SearchPrivateAccountsInput"]: {
9840
+ /** Поисковый запрос для поиска приватных аккаунтов */
9841
+ query: string;
9842
+ };
9778
9843
  ["SelectBranchGenerateDocumentInput"]: {
9779
9844
  /** Номер блока, на котором был создан документ */
9780
9845
  block_num?: number | undefined | null;
@@ -12589,6 +12654,23 @@ type GraphQLTypes = {
12589
12654
  /** Тип аккаунта */
12590
12655
  type: GraphQLTypes["AccountType"];
12591
12656
  };
12657
+ ["PrivateAccountSearchData"]: {
12658
+ __typename: "Entrepreneur" | "Individual" | "Organization";
12659
+ ['...on Entrepreneur']: '__union' & GraphQLTypes["Entrepreneur"];
12660
+ ['...on Individual']: '__union' & GraphQLTypes["Individual"];
12661
+ ['...on Organization']: '__union' & GraphQLTypes["Organization"];
12662
+ };
12663
+ ["PrivateAccountSearchResult"]: {
12664
+ __typename: "PrivateAccountSearchResult";
12665
+ /** Данные найденного аккаунта */
12666
+ data: GraphQLTypes["PrivateAccountSearchData"];
12667
+ /** Поля, в которых найдены совпадения */
12668
+ highlightedFields?: Array<string> | undefined | null;
12669
+ /** Оценка релевантности результата */
12670
+ score?: number | undefined | null;
12671
+ /** Тип аккаунта */
12672
+ type: string;
12673
+ };
12592
12674
  ["ProhibitRequestInput"]: {
12593
12675
  /** Имя аккаунта кооператива */
12594
12676
  coopname: string;
@@ -12712,6 +12794,8 @@ type GraphQLTypes = {
12712
12794
  getPayments: GraphQLTypes["PaymentPaginationResult"];
12713
12795
  /** Получить сводную публичную информацию о системе */
12714
12796
  getSystemInfo: GraphQLTypes["SystemInfo"];
12797
+ /** Поиск приватных данных аккаунтов по запросу. Поиск осуществляется по полям ФИО, ИНН, ОГРН, наименованию организации и другим приватным данным. */
12798
+ searchPrivateAccounts: Array<GraphQLTypes["PrivateAccountSearchResult"]>;
12715
12799
  };
12716
12800
  /** Вопрос повестки собрания с результатами голосования */
12717
12801
  ["Question"]: {
@@ -13058,6 +13142,10 @@ type GraphQLTypes = {
13058
13142
  /** Мобильный телефон получателя */
13059
13143
  phone: string;
13060
13144
  };
13145
+ ["SearchPrivateAccountsInput"]: {
13146
+ /** Поисковый запрос для поиска приватных аккаунтов */
13147
+ query: string;
13148
+ };
13061
13149
  ["SelectBranchGenerateDocumentInput"]: {
13062
13150
  /** Номер блока, на котором был создан документ */
13063
13151
  block_num?: number | undefined | null;
@@ -13722,6 +13810,7 @@ type ZEUS_VARIABLES = {
13722
13810
  ["ReturnByAssetStatementGenerateDocumentInput"]: ValueTypes["ReturnByAssetStatementGenerateDocumentInput"];
13723
13811
  ["ReturnByAssetStatementSignedDocumentInput"]: ValueTypes["ReturnByAssetStatementSignedDocumentInput"];
13724
13812
  ["ReturnByAssetStatementSignedMetaDocumentInput"]: ValueTypes["ReturnByAssetStatementSignedMetaDocumentInput"];
13813
+ ["SearchPrivateAccountsInput"]: ValueTypes["SearchPrivateAccountsInput"];
13725
13814
  ["SelectBranchGenerateDocumentInput"]: ValueTypes["SelectBranchGenerateDocumentInput"];
13726
13815
  ["SelectBranchInput"]: ValueTypes["SelectBranchInput"];
13727
13816
  ["SelectBranchSignedDocumentInput"]: ValueTypes["SelectBranchSignedDocumentInput"];
@@ -14294,7 +14383,7 @@ declare namespace Classes {
14294
14383
  export { Classes_Account as Account, Classes_Blockchain as Blockchain, Classes_Canvas as Canvas, Classes_Crypto as Crypto, Classes_Document as Document, type Classes_IVoteData as IVoteData, Classes_Vote as Vote };
14295
14384
  }
14296
14385
 
14297
- declare const name$1k = "registerAccount";
14386
+ declare const name$1l = "registerAccount";
14298
14387
  declare const mutation$18: {
14299
14388
  registerAccount: [{
14300
14389
  data: Variable<"RegisterAccountInput!", "data">;
@@ -14489,58 +14578,58 @@ declare const mutation$18: {
14489
14578
  };
14490
14579
  }];
14491
14580
  };
14492
- interface IInput$1l {
14581
+ interface IInput$1m {
14493
14582
  /**
14494
14583
  * @private
14495
14584
  */
14496
14585
  [key: string]: unknown;
14497
14586
  data: ModelTypes['RegisterAccountInput'];
14498
14587
  }
14499
- type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
14588
+ type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
14500
14589
 
14501
14590
  declare namespace registerAccount {
14502
- export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$18 as mutation, name$1k as name };
14591
+ export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$18 as mutation, name$1l as name };
14503
14592
  }
14504
14593
 
14505
- declare const name$1j = "resetKey";
14594
+ declare const name$1k = "resetKey";
14506
14595
  declare const mutation$17: {
14507
14596
  resetKey: [{
14508
14597
  data: Variable<"ResetKeyInput!", "data">;
14509
14598
  }, true];
14510
14599
  };
14511
- interface IInput$1k {
14600
+ interface IInput$1l {
14512
14601
  /**
14513
14602
  * @private
14514
14603
  */
14515
14604
  [key: string]: unknown;
14516
14605
  data: ModelTypes['ResetKeyInput'];
14517
14606
  }
14518
- type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
14607
+ type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
14519
14608
 
14520
14609
  declare namespace resetKey {
14521
- export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$17 as mutation, name$1j as name };
14610
+ export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$17 as mutation, name$1k as name };
14522
14611
  }
14523
14612
 
14524
- declare const name$1i = "startResetKey";
14613
+ declare const name$1j = "startResetKey";
14525
14614
  declare const mutation$16: {
14526
14615
  startResetKey: [{
14527
14616
  data: Variable<"StartResetKeyInput!", "data">;
14528
14617
  }, true];
14529
14618
  };
14530
- interface IInput$1j {
14619
+ interface IInput$1k {
14531
14620
  /**
14532
14621
  * @private
14533
14622
  */
14534
14623
  [key: string]: unknown;
14535
14624
  data: ModelTypes['StartResetKeyInput'];
14536
14625
  }
14537
- type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
14626
+ type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
14538
14627
 
14539
14628
  declare namespace startResetKey {
14540
- export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$16 as mutation, name$1i as name };
14629
+ export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$16 as mutation, name$1j as name };
14541
14630
  }
14542
14631
 
14543
- declare const name$1h = "updateAccount";
14632
+ declare const name$1i = "updateAccount";
14544
14633
  declare const mutation$15: {
14545
14634
  updateAccount: [{
14546
14635
  data: Variable<"UpdateAccountInput!", "data">;
@@ -14723,17 +14812,17 @@ declare const mutation$15: {
14723
14812
  };
14724
14813
  }];
14725
14814
  };
14726
- interface IInput$1i {
14815
+ interface IInput$1j {
14727
14816
  /**
14728
14817
  * @private
14729
14818
  */
14730
14819
  [key: string]: unknown;
14731
14820
  data: ModelTypes['UpdateAccountInput'];
14732
14821
  }
14733
- type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
14822
+ type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
14734
14823
 
14735
14824
  declare namespace updateAccount {
14736
- export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$15 as mutation, name$1h as name };
14825
+ export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$15 as mutation, name$1i as name };
14737
14826
  }
14738
14827
 
14739
14828
  /** Зарегистрировать аккаунт пользователя в системе */
@@ -14742,7 +14831,7 @@ declare namespace index$p {
14742
14831
  export { registerAccount as RegisterAccount, resetKey as ResetKey, startResetKey as StartResetKey, updateAccount as UpdateAccount };
14743
14832
  }
14744
14833
 
14745
- declare const name$1g = "generatePrivacyAgreement";
14834
+ declare const name$1h = "generatePrivacyAgreement";
14746
14835
  declare const mutation$14: {
14747
14836
  generatePrivacyAgreement: [{
14748
14837
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -14755,7 +14844,7 @@ declare const mutation$14: {
14755
14844
  meta: boolean;
14756
14845
  }];
14757
14846
  };
14758
- interface IInput$1h {
14847
+ interface IInput$1i {
14759
14848
  /**
14760
14849
  * @private
14761
14850
  */
@@ -14763,13 +14852,13 @@ interface IInput$1h {
14763
14852
  data: ModelTypes['GenerateDocumentInput'];
14764
14853
  options?: ModelTypes['GenerateDocumentOptionsInput'];
14765
14854
  }
14766
- type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
14855
+ type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
14767
14856
 
14768
14857
  declare namespace generatePrivacyAgreement {
14769
- export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$14 as mutation, name$1g as name };
14858
+ export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$14 as mutation, name$1h as name };
14770
14859
  }
14771
14860
 
14772
- declare const name$1f = "generateSignatureAgreement";
14861
+ declare const name$1g = "generateSignatureAgreement";
14773
14862
  declare const mutation$13: {
14774
14863
  generateSignatureAgreement: [{
14775
14864
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -14782,7 +14871,7 @@ declare const mutation$13: {
14782
14871
  meta: boolean;
14783
14872
  }];
14784
14873
  };
14785
- interface IInput$1g {
14874
+ interface IInput$1h {
14786
14875
  /**
14787
14876
  * @private
14788
14877
  */
@@ -14790,13 +14879,13 @@ interface IInput$1g {
14790
14879
  data: ModelTypes['GenerateDocumentInput'];
14791
14880
  options?: ModelTypes['GenerateDocumentOptionsInput'];
14792
14881
  }
14793
- type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
14882
+ type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
14794
14883
 
14795
14884
  declare namespace generateSignatureAgreement {
14796
- export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$13 as mutation, name$1f as name };
14885
+ export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$13 as mutation, name$1g as name };
14797
14886
  }
14798
14887
 
14799
- declare const name$1e = "generateWalletAgreement";
14888
+ declare const name$1f = "generateWalletAgreement";
14800
14889
  declare const mutation$12: {
14801
14890
  generateWalletAgreement: [{
14802
14891
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -14809,7 +14898,7 @@ declare const mutation$12: {
14809
14898
  meta: boolean;
14810
14899
  }];
14811
14900
  };
14812
- interface IInput$1f {
14901
+ interface IInput$1g {
14813
14902
  /**
14814
14903
  * @private
14815
14904
  */
@@ -14817,13 +14906,13 @@ interface IInput$1f {
14817
14906
  data: ModelTypes['GenerateDocumentInput'];
14818
14907
  options?: ModelTypes['GenerateDocumentOptionsInput'];
14819
14908
  }
14820
- type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
14909
+ type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
14821
14910
 
14822
14911
  declare namespace generateWalletAgreement {
14823
- export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$12 as mutation, name$1e as name };
14912
+ export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$12 as mutation, name$1f as name };
14824
14913
  }
14825
14914
 
14826
- declare const name$1d = "generateUserAgreement";
14915
+ declare const name$1e = "generateUserAgreement";
14827
14916
  declare const mutation$11: {
14828
14917
  generateUserAgreement: [{
14829
14918
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -14836,7 +14925,7 @@ declare const mutation$11: {
14836
14925
  meta: boolean;
14837
14926
  }];
14838
14927
  };
14839
- interface IInput$1e {
14928
+ interface IInput$1f {
14840
14929
  /**
14841
14930
  * @private
14842
14931
  */
@@ -14844,10 +14933,10 @@ interface IInput$1e {
14844
14933
  data: ModelTypes['GenerateDocumentInput'];
14845
14934
  options?: ModelTypes['GenerateDocumentOptionsInput'];
14846
14935
  }
14847
- type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
14936
+ type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
14848
14937
 
14849
14938
  declare namespace generateUserAgreement {
14850
- export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$11 as mutation, name$1d as name };
14939
+ export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$11 as mutation, name$1e as name };
14851
14940
  }
14852
14941
 
14853
14942
  /** Сгенерировать документ согласия с политикой конфиденциальности. */
@@ -14856,7 +14945,7 @@ declare namespace index$o {
14856
14945
  export { generatePrivacyAgreement as GeneratePrivacyAgreement, generateSignatureAgreement as GenerateSignatureAgreement, generateUserAgreement as GenerateUserAgreement, generateWalletAgreement as GenerateWalletAgreement };
14857
14946
  }
14858
14947
 
14859
- declare const name$1c = "refresh";
14948
+ declare const name$1d = "refresh";
14860
14949
  declare const mutation$10: {
14861
14950
  refresh: [{
14862
14951
  data: Variable<"RefreshInput!", "data">;
@@ -15051,39 +15140,39 @@ declare const mutation$10: {
15051
15140
  };
15052
15141
  }];
15053
15142
  };
15054
- interface IInput$1d {
15143
+ interface IInput$1e {
15055
15144
  /**
15056
15145
  * @private
15057
15146
  */
15058
15147
  [key: string]: unknown;
15059
15148
  data: ModelTypes['RefreshInput'];
15060
15149
  }
15061
- type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
15150
+ type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
15062
15151
 
15063
15152
  declare namespace refresh {
15064
- export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$10 as mutation, name$1c as name };
15153
+ export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$10 as mutation, name$1d as name };
15065
15154
  }
15066
15155
 
15067
- declare const name$1b = "logout";
15156
+ declare const name$1c = "logout";
15068
15157
  declare const mutation$$: {
15069
15158
  logout: [{
15070
15159
  data: Variable<"LogoutInput!", "data">;
15071
15160
  }, true];
15072
15161
  };
15073
- interface IInput$1c {
15162
+ interface IInput$1d {
15074
15163
  /**
15075
15164
  * @private
15076
15165
  */
15077
15166
  [key: string]: unknown;
15078
15167
  data: ModelTypes['LogoutInput'];
15079
15168
  }
15080
- type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
15169
+ type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
15081
15170
 
15082
15171
  declare namespace logout {
15083
- export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$$ as mutation, name$1b as name };
15172
+ export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$$ as mutation, name$1c as name };
15084
15173
  }
15085
15174
 
15086
- declare const name$1a = "login";
15175
+ declare const name$1b = "login";
15087
15176
  declare const mutation$_: {
15088
15177
  login: [{
15089
15178
  data: Variable<"LoginInput!", "data">;
@@ -15278,17 +15367,17 @@ declare const mutation$_: {
15278
15367
  };
15279
15368
  }];
15280
15369
  };
15281
- interface IInput$1b {
15370
+ interface IInput$1c {
15282
15371
  /**
15283
15372
  * @private
15284
15373
  */
15285
15374
  [key: string]: unknown;
15286
15375
  data: ModelTypes['LoginInput'];
15287
15376
  }
15288
- type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
15377
+ type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
15289
15378
 
15290
15379
  declare namespace login {
15291
- export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$_ as mutation, name$1a as name };
15380
+ export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$_ as mutation, name$1b as name };
15292
15381
  }
15293
15382
 
15294
15383
  /** Обновить токен доступа аккаунта */
@@ -15297,7 +15386,7 @@ declare namespace index$n {
15297
15386
  export { login as Login, logout as Logout, refresh as Refresh };
15298
15387
  }
15299
15388
 
15300
- declare const name$19 = "addTrustedAccount";
15389
+ declare const name$1a = "addTrustedAccount";
15301
15390
  declare const mutation$Z: {
15302
15391
  addTrustedAccount: [{
15303
15392
  data: Variable<"AddTrustedAccountInput!", "data">;
@@ -15380,20 +15469,20 @@ declare const mutation$Z: {
15380
15469
  type: boolean;
15381
15470
  }];
15382
15471
  };
15383
- interface IInput$1a {
15472
+ interface IInput$1b {
15384
15473
  /**
15385
15474
  * @private
15386
15475
  */
15387
15476
  [key: string]: unknown;
15388
15477
  data: ModelTypes['AddTrustedAccountInput'];
15389
15478
  }
15390
- type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
15479
+ type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
15391
15480
 
15392
15481
  declare namespace addTrustedAccount {
15393
- export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$Z as mutation, name$19 as name };
15482
+ export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$Z as mutation, name$1a as name };
15394
15483
  }
15395
15484
 
15396
- declare const name$18 = "createBranch";
15485
+ declare const name$19 = "createBranch";
15397
15486
  declare const mutation$Y: {
15398
15487
  createBranch: [{
15399
15488
  data: Variable<"CreateBranchInput!", "data">;
@@ -15476,39 +15565,39 @@ declare const mutation$Y: {
15476
15565
  type: boolean;
15477
15566
  }];
15478
15567
  };
15479
- interface IInput$19 {
15568
+ interface IInput$1a {
15480
15569
  /**
15481
15570
  * @private
15482
15571
  */
15483
15572
  [key: string]: unknown;
15484
15573
  data: ModelTypes['CreateBranchInput'];
15485
15574
  }
15486
- type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
15575
+ type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
15487
15576
 
15488
15577
  declare namespace createBranch {
15489
- export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$Y as mutation, name$18 as name };
15578
+ export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$Y as mutation, name$19 as name };
15490
15579
  }
15491
15580
 
15492
- declare const name$17 = "deleteBranch";
15581
+ declare const name$18 = "deleteBranch";
15493
15582
  declare const mutation$X: {
15494
15583
  deleteBranch: [{
15495
15584
  data: Variable<"DeleteBranchInput!", "data">;
15496
15585
  }, true];
15497
15586
  };
15498
- interface IInput$18 {
15587
+ interface IInput$19 {
15499
15588
  /**
15500
15589
  * @private
15501
15590
  */
15502
15591
  [key: string]: unknown;
15503
15592
  data: ModelTypes['DeleteBranchInput'];
15504
15593
  }
15505
- type IOutput$18 = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
15594
+ type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
15506
15595
 
15507
15596
  declare namespace deleteBranch {
15508
- export { type IInput$18 as IInput, type IOutput$18 as IOutput, mutation$X as mutation, name$17 as name };
15597
+ export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$X as mutation, name$18 as name };
15509
15598
  }
15510
15599
 
15511
- declare const name$16 = "deleteTrustedAccount";
15600
+ declare const name$17 = "deleteTrustedAccount";
15512
15601
  declare const mutation$W: {
15513
15602
  deleteTrustedAccount: [{
15514
15603
  data: Variable<"DeleteTrustedAccountInput!", "data">;
@@ -15591,20 +15680,20 @@ declare const mutation$W: {
15591
15680
  type: boolean;
15592
15681
  }];
15593
15682
  };
15594
- interface IInput$17 {
15683
+ interface IInput$18 {
15595
15684
  /**
15596
15685
  * @private
15597
15686
  */
15598
15687
  [key: string]: unknown;
15599
15688
  data: ModelTypes['DeleteTrustedAccountInput'];
15600
15689
  }
15601
- type IOutput$17 = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
15690
+ type IOutput$18 = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
15602
15691
 
15603
15692
  declare namespace deleteTrustedAccount {
15604
- export { type IInput$17 as IInput, type IOutput$17 as IOutput, mutation$W as mutation, name$16 as name };
15693
+ export { type IInput$18 as IInput, type IOutput$18 as IOutput, mutation$W as mutation, name$17 as name };
15605
15694
  }
15606
15695
 
15607
- declare const name$15 = "editBranch";
15696
+ declare const name$16 = "editBranch";
15608
15697
  declare const mutation$V: {
15609
15698
  editBranch: [{
15610
15699
  data: Variable<"EditBranchInput!", "data">;
@@ -15687,20 +15776,20 @@ declare const mutation$V: {
15687
15776
  type: boolean;
15688
15777
  }];
15689
15778
  };
15690
- interface IInput$16 {
15779
+ interface IInput$17 {
15691
15780
  /**
15692
15781
  * @private
15693
15782
  */
15694
15783
  [key: string]: unknown;
15695
15784
  data: ModelTypes['EditBranchInput'];
15696
15785
  }
15697
- type IOutput$16 = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
15786
+ type IOutput$17 = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
15698
15787
 
15699
15788
  declare namespace editBranch {
15700
- export { type IInput$16 as IInput, type IOutput$16 as IOutput, mutation$V as mutation, name$15 as name };
15789
+ export { type IInput$17 as IInput, type IOutput$17 as IOutput, mutation$V as mutation, name$16 as name };
15701
15790
  }
15702
15791
 
15703
- declare const name$14 = "generateSelectBranchDocument";
15792
+ declare const name$15 = "generateSelectBranchDocument";
15704
15793
  declare const mutation$U: {
15705
15794
  generateSelectBranchDocument: [{
15706
15795
  data: Variable<"SelectBranchGenerateDocumentInput!", "data">;
@@ -15713,7 +15802,7 @@ declare const mutation$U: {
15713
15802
  meta: boolean;
15714
15803
  }];
15715
15804
  };
15716
- interface IInput$15 {
15805
+ interface IInput$16 {
15717
15806
  /**
15718
15807
  * @private
15719
15808
  */
@@ -15721,29 +15810,29 @@ interface IInput$15 {
15721
15810
  data: ModelTypes['SelectBranchGenerateDocumentInput'];
15722
15811
  options?: ModelTypes['GenerateDocumentOptionsInput'];
15723
15812
  }
15724
- type IOutput$15 = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
15813
+ type IOutput$16 = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
15725
15814
 
15726
15815
  declare namespace generateSelectBranchDocument {
15727
- export { type IInput$15 as IInput, type IOutput$15 as IOutput, mutation$U as mutation, name$14 as name };
15816
+ export { type IInput$16 as IInput, type IOutput$16 as IOutput, mutation$U as mutation, name$15 as name };
15728
15817
  }
15729
15818
 
15730
- declare const name$13 = "selectBranch";
15819
+ declare const name$14 = "selectBranch";
15731
15820
  declare const mutation$T: {
15732
15821
  selectBranch: [{
15733
15822
  data: Variable<"SelectBranchInput!", "data">;
15734
15823
  }, true];
15735
15824
  };
15736
- interface IInput$14 {
15825
+ interface IInput$15 {
15737
15826
  /**
15738
15827
  * @private
15739
15828
  */
15740
15829
  [key: string]: unknown;
15741
15830
  data: ModelTypes['SelectBranchInput'];
15742
15831
  }
15743
- type IOutput$14 = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
15832
+ type IOutput$15 = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
15744
15833
 
15745
15834
  declare namespace selectBranch {
15746
- export { type IInput$14 as IInput, type IOutput$14 as IOutput, mutation$T as mutation, name$13 as name };
15835
+ export { type IInput$15 as IInput, type IOutput$15 as IOutput, mutation$T as mutation, name$14 as name };
15747
15836
  }
15748
15837
 
15749
15838
  /** Добавить доверенное лицо кооперативного участка */
@@ -15752,7 +15841,7 @@ declare namespace index$m {
15752
15841
  export { addTrustedAccount as AddTrustedAccount, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrustedAccount as DeleteTrustedAccount, editBranch as EditBranch, generateSelectBranchDocument as GenerateSelectBranchDocument, selectBranch as SelectBranch };
15753
15842
  }
15754
15843
 
15755
- declare const name$12 = "acceptChildOrder";
15844
+ declare const name$13 = "acceptChildOrder";
15756
15845
  declare const mutation$S: {
15757
15846
  acceptChildOrder: [{
15758
15847
  data: Variable<"AcceptChildOrderInput!", "data">;
@@ -15768,20 +15857,20 @@ declare const mutation$S: {
15768
15857
  transaction: boolean;
15769
15858
  }];
15770
15859
  };
15771
- interface IInput$13 {
15860
+ interface IInput$14 {
15772
15861
  /**
15773
15862
  * @private
15774
15863
  */
15775
15864
  [key: string]: unknown;
15776
15865
  data: ModelTypes['AcceptChildOrderInput'];
15777
15866
  }
15778
- type IOutput$13 = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
15867
+ type IOutput$14 = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
15779
15868
 
15780
15869
  declare namespace acceptChildOrder {
15781
- export { type IInput$13 as IInput, type IOutput$13 as IOutput, mutation$S as mutation, name$12 as name };
15870
+ export { type IInput$14 as IInput, type IOutput$14 as IOutput, mutation$S as mutation, name$13 as name };
15782
15871
  }
15783
15872
 
15784
- declare const name$11 = "cancelRequest";
15873
+ declare const name$12 = "cancelRequest";
15785
15874
  declare const mutation$R: {
15786
15875
  cancelRequest: [{
15787
15876
  data: Variable<"CancelRequestInput!", "data">;
@@ -15797,20 +15886,20 @@ declare const mutation$R: {
15797
15886
  transaction: boolean;
15798
15887
  }];
15799
15888
  };
15800
- interface IInput$12 {
15889
+ interface IInput$13 {
15801
15890
  /**
15802
15891
  * @private
15803
15892
  */
15804
15893
  [key: string]: unknown;
15805
15894
  data: ModelTypes['CancelRequestInput'];
15806
15895
  }
15807
- type IOutput$12 = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
15896
+ type IOutput$13 = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
15808
15897
 
15809
15898
  declare namespace cancelRequest {
15810
- export { type IInput$12 as IInput, type IOutput$12 as IOutput, mutation$R as mutation, name$11 as name };
15899
+ export { type IInput$13 as IInput, type IOutput$13 as IOutput, mutation$R as mutation, name$12 as name };
15811
15900
  }
15812
15901
 
15813
- declare const name$10 = "confirmReceiveOnRequest";
15902
+ declare const name$11 = "confirmReceiveOnRequest";
15814
15903
  declare const mutation$Q: {
15815
15904
  confirmReceiveOnRequest: [{
15816
15905
  data: Variable<"ConfirmReceiveOnRequestInput!", "data">;
@@ -15826,20 +15915,20 @@ declare const mutation$Q: {
15826
15915
  transaction: boolean;
15827
15916
  }];
15828
15917
  };
15829
- interface IInput$11 {
15918
+ interface IInput$12 {
15830
15919
  /**
15831
15920
  * @private
15832
15921
  */
15833
15922
  [key: string]: unknown;
15834
15923
  data: ModelTypes['ConfirmReceiveOnRequestInput'];
15835
15924
  }
15836
- type IOutput$11 = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
15925
+ type IOutput$12 = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
15837
15926
 
15838
15927
  declare namespace completeReceiveOnRequest {
15839
- export { type IInput$11 as IInput, type IOutput$11 as IOutput, mutation$Q as mutation, name$10 as name };
15928
+ export { type IInput$12 as IInput, type IOutput$12 as IOutput, mutation$Q as mutation, name$11 as name };
15840
15929
  }
15841
15930
 
15842
- declare const name$$ = "completeRequest";
15931
+ declare const name$10 = "completeRequest";
15843
15932
  declare const mutation$P: {
15844
15933
  completeRequest: [{
15845
15934
  data: Variable<"CompleteRequestInput!", "data">;
@@ -15855,20 +15944,20 @@ declare const mutation$P: {
15855
15944
  transaction: boolean;
15856
15945
  }];
15857
15946
  };
15858
- interface IInput$10 {
15947
+ interface IInput$11 {
15859
15948
  /**
15860
15949
  * @private
15861
15950
  */
15862
15951
  [key: string]: unknown;
15863
15952
  data: ModelTypes['CompleteRequestInput'];
15864
15953
  }
15865
- type IOutput$10 = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
15954
+ type IOutput$11 = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
15866
15955
 
15867
15956
  declare namespace completeRequest {
15868
- export { type IInput$10 as IInput, type IOutput$10 as IOutput, mutation$P as mutation, name$$ as name };
15957
+ export { type IInput$11 as IInput, type IOutput$11 as IOutput, mutation$P as mutation, name$10 as name };
15869
15958
  }
15870
15959
 
15871
- declare const name$_ = "confirmSupplyOnRequest";
15960
+ declare const name$$ = "confirmSupplyOnRequest";
15872
15961
  declare const mutation$O: {
15873
15962
  confirmSupplyOnRequest: [{
15874
15963
  data: Variable<"ConfirmSupplyOnRequestInput!", "data">;
@@ -15884,20 +15973,20 @@ declare const mutation$O: {
15884
15973
  transaction: boolean;
15885
15974
  }];
15886
15975
  };
15887
- interface IInput$$ {
15976
+ interface IInput$10 {
15888
15977
  /**
15889
15978
  * @private
15890
15979
  */
15891
15980
  [key: string]: unknown;
15892
15981
  data: ModelTypes['ConfirmSupplyOnRequestInput'];
15893
15982
  }
15894
- type IOutput$$ = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
15983
+ type IOutput$10 = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
15895
15984
 
15896
15985
  declare namespace confirmSupplyOnRequest {
15897
- export { type IInput$$ as IInput, type IOutput$$ as IOutput, mutation$O as mutation, name$_ as name };
15986
+ export { type IInput$10 as IInput, type IOutput$10 as IOutput, mutation$O as mutation, name$$ as name };
15898
15987
  }
15899
15988
 
15900
- declare const name$Z = "createChildOrder";
15989
+ declare const name$_ = "createChildOrder";
15901
15990
  declare const mutation$N: {
15902
15991
  createChildOrder: [{
15903
15992
  data: Variable<"CreateChildOrderInput!", "data">;
@@ -15913,20 +16002,20 @@ declare const mutation$N: {
15913
16002
  transaction: boolean;
15914
16003
  }];
15915
16004
  };
15916
- interface IInput$_ {
16005
+ interface IInput$$ {
15917
16006
  /**
15918
16007
  * @private
15919
16008
  */
15920
16009
  [key: string]: unknown;
15921
16010
  data: ModelTypes['CreateChildOrderInput'];
15922
16011
  }
15923
- type IOutput$_ = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
16012
+ type IOutput$$ = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
15924
16013
 
15925
16014
  declare namespace createChildOrder {
15926
- export { type IInput$_ as IInput, type IOutput$_ as IOutput, mutation$N as mutation, name$Z as name };
16015
+ export { type IInput$$ as IInput, type IOutput$$ as IOutput, mutation$N as mutation, name$_ as name };
15927
16016
  }
15928
16017
 
15929
- declare const name$Y = "createParentOffer";
16018
+ declare const name$Z = "createParentOffer";
15930
16019
  declare const mutation$M: {
15931
16020
  createParentOffer: [{
15932
16021
  data: Variable<"CreateParentOfferInput!", "data">;
@@ -15942,20 +16031,20 @@ declare const mutation$M: {
15942
16031
  transaction: boolean;
15943
16032
  }];
15944
16033
  };
15945
- interface IInput$Z {
16034
+ interface IInput$_ {
15946
16035
  /**
15947
16036
  * @private
15948
16037
  */
15949
16038
  [key: string]: unknown;
15950
16039
  data: ModelTypes['CreateParentOfferInput'];
15951
16040
  }
15952
- type IOutput$Z = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
16041
+ type IOutput$_ = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
15953
16042
 
15954
16043
  declare namespace createParentOffer {
15955
- export { type IInput$Z as IInput, type IOutput$Z as IOutput, mutation$M as mutation, name$Y as name };
16044
+ export { type IInput$_ as IInput, type IOutput$_ as IOutput, mutation$M as mutation, name$Z as name };
15956
16045
  }
15957
16046
 
15958
- declare const name$X = "declineRequest";
16047
+ declare const name$Y = "declineRequest";
15959
16048
  declare const mutation$L: {
15960
16049
  declineRequest: [{
15961
16050
  data: Variable<"DeclineRequestInput!", "data">;
@@ -15971,20 +16060,20 @@ declare const mutation$L: {
15971
16060
  transaction: boolean;
15972
16061
  }];
15973
16062
  };
15974
- interface IInput$Y {
16063
+ interface IInput$Z {
15975
16064
  /**
15976
16065
  * @private
15977
16066
  */
15978
16067
  [key: string]: unknown;
15979
16068
  data: ModelTypes['DeclineRequestInput'];
15980
16069
  }
15981
- type IOutput$Y = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
16070
+ type IOutput$Z = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
15982
16071
 
15983
16072
  declare namespace declineRequest {
15984
- export { type IInput$Y as IInput, type IOutput$Y as IOutput, mutation$L as mutation, name$X as name };
16073
+ export { type IInput$Z as IInput, type IOutput$Z as IOutput, mutation$L as mutation, name$Y as name };
15985
16074
  }
15986
16075
 
15987
- declare const name$W = "deliverOnRequest";
16076
+ declare const name$X = "deliverOnRequest";
15988
16077
  declare const mutation$K: {
15989
16078
  deliverOnRequest: [{
15990
16079
  data: Variable<"DeliverOnRequestInput!", "data">;
@@ -16000,20 +16089,20 @@ declare const mutation$K: {
16000
16089
  transaction: boolean;
16001
16090
  }];
16002
16091
  };
16003
- interface IInput$X {
16092
+ interface IInput$Y {
16004
16093
  /**
16005
16094
  * @private
16006
16095
  */
16007
16096
  [key: string]: unknown;
16008
16097
  data: ModelTypes['DeliverOnRequestInput'];
16009
16098
  }
16010
- type IOutput$X = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
16099
+ type IOutput$Y = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
16011
16100
 
16012
16101
  declare namespace deliverOnRequest {
16013
- export { type IInput$X as IInput, type IOutput$X as IOutput, mutation$K as mutation, name$W as name };
16102
+ export { type IInput$Y as IInput, type IOutput$Y as IOutput, mutation$K as mutation, name$X as name };
16014
16103
  }
16015
16104
 
16016
- declare const name$V = "disputeOnRequest";
16105
+ declare const name$W = "disputeOnRequest";
16017
16106
  declare const mutation$J: {
16018
16107
  disputeOnRequest: [{
16019
16108
  data: Variable<"DisputeOnRequestInput!", "data">;
@@ -16029,20 +16118,20 @@ declare const mutation$J: {
16029
16118
  transaction: boolean;
16030
16119
  }];
16031
16120
  };
16032
- interface IInput$W {
16121
+ interface IInput$X {
16033
16122
  /**
16034
16123
  * @private
16035
16124
  */
16036
16125
  [key: string]: unknown;
16037
16126
  data: ModelTypes['DisputeOnRequestInput'];
16038
16127
  }
16039
- type IOutput$W = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
16128
+ type IOutput$X = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
16040
16129
 
16041
16130
  declare namespace disputeOnRequest {
16042
- export { type IInput$W as IInput, type IOutput$W as IOutput, mutation$J as mutation, name$V as name };
16131
+ export { type IInput$X as IInput, type IOutput$X as IOutput, mutation$J as mutation, name$W as name };
16043
16132
  }
16044
16133
 
16045
- declare const name$U = "generateAssetContributionAct";
16134
+ declare const name$V = "generateAssetContributionAct";
16046
16135
  declare const mutation$I: {
16047
16136
  generateAssetContributionAct: [{
16048
16137
  data: Variable<"AssetContributionActGenerateDocumentInput!", "data">;
@@ -16055,7 +16144,7 @@ declare const mutation$I: {
16055
16144
  meta: boolean;
16056
16145
  }];
16057
16146
  };
16058
- interface IInput$V {
16147
+ interface IInput$W {
16059
16148
  /**
16060
16149
  * @private
16061
16150
  */
@@ -16063,13 +16152,13 @@ interface IInput$V {
16063
16152
  data: ModelTypes['AssetContributionActGenerateDocumentInput'];
16064
16153
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16065
16154
  }
16066
- type IOutput$V = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
16155
+ type IOutput$W = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
16067
16156
 
16068
16157
  declare namespace generateAssetContributionAct {
16069
- export { type IInput$V as IInput, type IOutput$V as IOutput, mutation$I as mutation, name$U as name };
16158
+ export { type IInput$W as IInput, type IOutput$W as IOutput, mutation$I as mutation, name$V as name };
16070
16159
  }
16071
16160
 
16072
- declare const name$T = "generateAssetContributionDecision";
16161
+ declare const name$U = "generateAssetContributionDecision";
16073
16162
  declare const mutation$H: {
16074
16163
  generateAssetContributionDecision: [{
16075
16164
  data: Variable<"AssetContributionDecisionGenerateDocumentInput!", "data">;
@@ -16082,7 +16171,7 @@ declare const mutation$H: {
16082
16171
  meta: boolean;
16083
16172
  }];
16084
16173
  };
16085
- interface IInput$U {
16174
+ interface IInput$V {
16086
16175
  /**
16087
16176
  * @private
16088
16177
  */
@@ -16090,13 +16179,13 @@ interface IInput$U {
16090
16179
  data: ModelTypes['AssetContributionDecisionGenerateDocumentInput'];
16091
16180
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16092
16181
  }
16093
- type IOutput$U = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
16182
+ type IOutput$V = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
16094
16183
 
16095
16184
  declare namespace generateAssetContributionDecision {
16096
- export { type IInput$U as IInput, type IOutput$U as IOutput, mutation$H as mutation, name$T as name };
16185
+ export { type IInput$V as IInput, type IOutput$V as IOutput, mutation$H as mutation, name$U as name };
16097
16186
  }
16098
16187
 
16099
- declare const name$S = "generateAssetContributionStatement";
16188
+ declare const name$T = "generateAssetContributionStatement";
16100
16189
  declare const mutation$G: {
16101
16190
  generateAssetContributionStatement: [{
16102
16191
  data: Variable<"AssetContributionStatementGenerateDocumentInput!", "data">;
@@ -16109,7 +16198,7 @@ declare const mutation$G: {
16109
16198
  meta: boolean;
16110
16199
  }];
16111
16200
  };
16112
- interface IInput$T {
16201
+ interface IInput$U {
16113
16202
  /**
16114
16203
  * @private
16115
16204
  */
@@ -16117,13 +16206,13 @@ interface IInput$T {
16117
16206
  data: ModelTypes['AssetContributionStatementGenerateDocumentInput'];
16118
16207
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16119
16208
  }
16120
- type IOutput$T = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
16209
+ type IOutput$U = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
16121
16210
 
16122
16211
  declare namespace generateAssetContributionStatement {
16123
- export { type IInput$T as IInput, type IOutput$T as IOutput, mutation$G as mutation, name$S as name };
16212
+ export { type IInput$U as IInput, type IOutput$U as IOutput, mutation$G as mutation, name$T as name };
16124
16213
  }
16125
16214
 
16126
- declare const name$R = "generateReturnByAssetAct";
16215
+ declare const name$S = "generateReturnByAssetAct";
16127
16216
  declare const mutation$F: {
16128
16217
  generateReturnByAssetAct: [{
16129
16218
  data: Variable<"ReturnByAssetActGenerateDocumentInput!", "data">;
@@ -16136,7 +16225,7 @@ declare const mutation$F: {
16136
16225
  meta: boolean;
16137
16226
  }];
16138
16227
  };
16139
- interface IInput$S {
16228
+ interface IInput$T {
16140
16229
  /**
16141
16230
  * @private
16142
16231
  */
@@ -16144,13 +16233,13 @@ interface IInput$S {
16144
16233
  data: ModelTypes['ReturnByAssetActGenerateDocumentInput'];
16145
16234
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16146
16235
  }
16147
- type IOutput$S = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
16236
+ type IOutput$T = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
16148
16237
 
16149
16238
  declare namespace generateReturnByAssetAct {
16150
- export { type IInput$S as IInput, type IOutput$S as IOutput, mutation$F as mutation, name$R as name };
16239
+ export { type IInput$T as IInput, type IOutput$T as IOutput, mutation$F as mutation, name$S as name };
16151
16240
  }
16152
16241
 
16153
- declare const name$Q = "generateReturnByAssetDecision";
16242
+ declare const name$R = "generateReturnByAssetDecision";
16154
16243
  declare const mutation$E: {
16155
16244
  generateReturnByAssetDecision: [{
16156
16245
  data: Variable<"ReturnByAssetDecisionGenerateDocumentInput!", "data">;
@@ -16163,7 +16252,7 @@ declare const mutation$E: {
16163
16252
  meta: boolean;
16164
16253
  }];
16165
16254
  };
16166
- interface IInput$R {
16255
+ interface IInput$S {
16167
16256
  /**
16168
16257
  * @private
16169
16258
  */
@@ -16171,13 +16260,13 @@ interface IInput$R {
16171
16260
  data: ModelTypes['ReturnByAssetDecisionGenerateDocumentInput'];
16172
16261
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16173
16262
  }
16174
- type IOutput$R = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
16263
+ type IOutput$S = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
16175
16264
 
16176
16265
  declare namespace generateReturnByAssetDecision {
16177
- export { type IInput$R as IInput, type IOutput$R as IOutput, mutation$E as mutation, name$Q as name };
16266
+ export { type IInput$S as IInput, type IOutput$S as IOutput, mutation$E as mutation, name$R as name };
16178
16267
  }
16179
16268
 
16180
- declare const name$P = "generateReturnByAssetStatement";
16269
+ declare const name$Q = "generateReturnByAssetStatement";
16181
16270
  declare const mutation$D: {
16182
16271
  generateReturnByAssetStatement: [{
16183
16272
  data: Variable<"ReturnByAssetStatementGenerateDocumentInput!", "data">;
@@ -16190,7 +16279,7 @@ declare const mutation$D: {
16190
16279
  meta: boolean;
16191
16280
  }];
16192
16281
  };
16193
- interface IInput$Q {
16282
+ interface IInput$R {
16194
16283
  /**
16195
16284
  * @private
16196
16285
  */
@@ -16198,13 +16287,13 @@ interface IInput$Q {
16198
16287
  data: ModelTypes['ReturnByAssetStatementGenerateDocumentInput'];
16199
16288
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16200
16289
  }
16201
- type IOutput$Q = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
16290
+ type IOutput$R = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
16202
16291
 
16203
16292
  declare namespace generateReturnByAssetStatement {
16204
- export { type IInput$Q as IInput, type IOutput$Q as IOutput, mutation$D as mutation, name$P as name };
16293
+ export { type IInput$R as IInput, type IOutput$R as IOutput, mutation$D as mutation, name$Q as name };
16205
16294
  }
16206
16295
 
16207
- declare const name$O = "moderateRequest";
16296
+ declare const name$P = "moderateRequest";
16208
16297
  declare const mutation$C: {
16209
16298
  moderateRequest: [{
16210
16299
  data: Variable<"ModerateRequestInput!", "data">;
@@ -16220,20 +16309,20 @@ declare const mutation$C: {
16220
16309
  transaction: boolean;
16221
16310
  }];
16222
16311
  };
16223
- interface IInput$P {
16312
+ interface IInput$Q {
16224
16313
  /**
16225
16314
  * @private
16226
16315
  */
16227
16316
  [key: string]: unknown;
16228
16317
  data: ModelTypes['ModerateRequestInput'];
16229
16318
  }
16230
- type IOutput$P = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
16319
+ type IOutput$Q = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
16231
16320
 
16232
16321
  declare namespace moderateRequest {
16233
- export { type IInput$P as IInput, type IOutput$P as IOutput, mutation$C as mutation, name$O as name };
16322
+ export { type IInput$Q as IInput, type IOutput$Q as IOutput, mutation$C as mutation, name$P as name };
16234
16323
  }
16235
16324
 
16236
- declare const name$N = "prohibitRequest";
16325
+ declare const name$O = "prohibitRequest";
16237
16326
  declare const mutation$B: {
16238
16327
  prohibitRequest: [{
16239
16328
  data: Variable<"ProhibitRequestInput!", "data">;
@@ -16249,20 +16338,20 @@ declare const mutation$B: {
16249
16338
  transaction: boolean;
16250
16339
  }];
16251
16340
  };
16252
- interface IInput$O {
16341
+ interface IInput$P {
16253
16342
  /**
16254
16343
  * @private
16255
16344
  */
16256
16345
  [key: string]: unknown;
16257
16346
  data: ModelTypes['ProhibitRequestInput'];
16258
16347
  }
16259
- type IOutput$O = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
16348
+ type IOutput$P = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
16260
16349
 
16261
16350
  declare namespace prohibitRequest {
16262
- export { type IInput$O as IInput, type IOutput$O as IOutput, mutation$B as mutation, name$N as name };
16351
+ export { type IInput$P as IInput, type IOutput$P as IOutput, mutation$B as mutation, name$O as name };
16263
16352
  }
16264
16353
 
16265
- declare const name$M = "publishRequest";
16354
+ declare const name$N = "publishRequest";
16266
16355
  declare const mutation$A: {
16267
16356
  publishRequest: [{
16268
16357
  data: Variable<"PublishRequestInput!", "data">;
@@ -16278,20 +16367,20 @@ declare const mutation$A: {
16278
16367
  transaction: boolean;
16279
16368
  }];
16280
16369
  };
16281
- interface IInput$N {
16370
+ interface IInput$O {
16282
16371
  /**
16283
16372
  * @private
16284
16373
  */
16285
16374
  [key: string]: unknown;
16286
16375
  data: ModelTypes['PublishRequestInput'];
16287
16376
  }
16288
- type IOutput$N = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
16377
+ type IOutput$O = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
16289
16378
 
16290
16379
  declare namespace publishRequest {
16291
- export { type IInput$N as IInput, type IOutput$N as IOutput, mutation$A as mutation, name$M as name };
16380
+ export { type IInput$O as IInput, type IOutput$O as IOutput, mutation$A as mutation, name$N as name };
16292
16381
  }
16293
16382
 
16294
- declare const name$L = "receiveOnRequest";
16383
+ declare const name$M = "receiveOnRequest";
16295
16384
  declare const mutation$z: {
16296
16385
  receiveOnRequest: [{
16297
16386
  data: Variable<"ReceiveOnRequestInput!", "data">;
@@ -16307,20 +16396,20 @@ declare const mutation$z: {
16307
16396
  transaction: boolean;
16308
16397
  }];
16309
16398
  };
16310
- interface IInput$M {
16399
+ interface IInput$N {
16311
16400
  /**
16312
16401
  * @private
16313
16402
  */
16314
16403
  [key: string]: unknown;
16315
16404
  data: ModelTypes['ReceiveOnRequestInput'];
16316
16405
  }
16317
- type IOutput$M = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
16406
+ type IOutput$N = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
16318
16407
 
16319
16408
  declare namespace receiveOnRequest {
16320
- export { type IInput$M as IInput, type IOutput$M as IOutput, mutation$z as mutation, name$L as name };
16409
+ export { type IInput$N as IInput, type IOutput$N as IOutput, mutation$z as mutation, name$M as name };
16321
16410
  }
16322
16411
 
16323
- declare const name$K = "supplyOnRequest";
16412
+ declare const name$L = "supplyOnRequest";
16324
16413
  declare const mutation$y: {
16325
16414
  supplyOnRequest: [{
16326
16415
  data: Variable<"SupplyOnRequestInput!", "data">;
@@ -16336,20 +16425,20 @@ declare const mutation$y: {
16336
16425
  transaction: boolean;
16337
16426
  }];
16338
16427
  };
16339
- interface IInput$L {
16428
+ interface IInput$M {
16340
16429
  /**
16341
16430
  * @private
16342
16431
  */
16343
16432
  [key: string]: unknown;
16344
16433
  data: ModelTypes['SupplyOnRequestInput'];
16345
16434
  }
16346
- type IOutput$L = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
16435
+ type IOutput$M = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
16347
16436
 
16348
16437
  declare namespace supplyOnRequest {
16349
- export { type IInput$L as IInput, type IOutput$L as IOutput, mutation$y as mutation, name$K as name };
16438
+ export { type IInput$M as IInput, type IOutput$M as IOutput, mutation$y as mutation, name$L as name };
16350
16439
  }
16351
16440
 
16352
- declare const name$J = "unpublishRequest";
16441
+ declare const name$K = "unpublishRequest";
16353
16442
  declare const mutation$x: {
16354
16443
  unpublishRequest: [{
16355
16444
  data: Variable<"UnpublishRequestInput!", "data">;
@@ -16365,20 +16454,20 @@ declare const mutation$x: {
16365
16454
  transaction: boolean;
16366
16455
  }];
16367
16456
  };
16368
- interface IInput$K {
16457
+ interface IInput$L {
16369
16458
  /**
16370
16459
  * @private
16371
16460
  */
16372
16461
  [key: string]: unknown;
16373
16462
  data: ModelTypes['UnpublishRequestInput'];
16374
16463
  }
16375
- type IOutput$K = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
16464
+ type IOutput$L = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
16376
16465
 
16377
16466
  declare namespace unpublishRequest {
16378
- export { type IInput$K as IInput, type IOutput$K as IOutput, mutation$x as mutation, name$J as name };
16467
+ export { type IInput$L as IInput, type IOutput$L as IOutput, mutation$x as mutation, name$K as name };
16379
16468
  }
16380
16469
 
16381
- declare const name$I = "updateRequest";
16470
+ declare const name$J = "updateRequest";
16382
16471
  declare const mutation$w: {
16383
16472
  updateRequest: [{
16384
16473
  data: Variable<"UpdateRequestInput!", "data">;
@@ -16394,17 +16483,17 @@ declare const mutation$w: {
16394
16483
  transaction: boolean;
16395
16484
  }];
16396
16485
  };
16397
- interface IInput$J {
16486
+ interface IInput$K {
16398
16487
  /**
16399
16488
  * @private
16400
16489
  */
16401
16490
  [key: string]: unknown;
16402
16491
  data: ModelTypes['UpdateRequestInput'];
16403
16492
  }
16404
- type IOutput$J = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
16493
+ type IOutput$K = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
16405
16494
 
16406
16495
  declare namespace updateRequest {
16407
- export { type IInput$J as IInput, type IOutput$J as IOutput, mutation$w as mutation, name$I as name };
16496
+ export { type IInput$K as IInput, type IOutput$K as IOutput, mutation$w as mutation, name$J as name };
16408
16497
  }
16409
16498
 
16410
16499
  /** Подтвердить поставку имущества на заявку */
@@ -16413,7 +16502,7 @@ declare namespace index$l {
16413
16502
  export { acceptChildOrder as AcceptChildOrder, cancelRequest as CancelRequest, completeReceiveOnRequest as CompleteReceiveOnRequest, completeRequest as CompleteRequest, confirmSupplyOnRequest as ConfirmSupplyOnRequest, createChildOrder as CreateChildOrder, createParentOffer as CreateParentOffer, declineRequest as DeclineRequest, deliverOnRequest as DeliverOnRequest, disputeOnRequest as DisputeOnRequest, generateAssetContributionAct as GenerateAssetContributionAct, generateAssetContributionDecision as GenerateAssetContributionDecision, generateAssetContributionStatement as GenerateAssetContributionStatement, generateReturnByAssetAct as GenerateReturnByAssetAct, generateReturnByAssetDecision as GenerateReturnByAssetDecision, generateReturnByAssetStatement as GenerateReturnByAssetStatement, moderateRequest as ModerateRequest, prohibitRequest as ProhibitRequest, publishRequest as PublishRequest, receiveOnRequest as ReceiveOnRequest, supplyOnRequest as SupplyOnRequest, unpublishRequest as UnpublishRequest, updateRequest as UpdateRequest };
16414
16503
  }
16415
16504
 
16416
- declare const name$H = "installExtension";
16505
+ declare const name$I = "installExtension";
16417
16506
  declare const mutation$v: {
16418
16507
  installExtension: [{
16419
16508
  data: Variable<"ExtensionInput!", "data">;
@@ -16438,39 +16527,39 @@ declare const mutation$v: {
16438
16527
  instructions: boolean;
16439
16528
  }];
16440
16529
  };
16441
- interface IInput$I {
16530
+ interface IInput$J {
16442
16531
  /**
16443
16532
  * @private
16444
16533
  */
16445
16534
  [key: string]: unknown;
16446
16535
  data: ModelTypes['ExtensionInput'];
16447
16536
  }
16448
- type IOutput$I = InputType<GraphQLTypes['Mutation'], typeof mutation$v>;
16537
+ type IOutput$J = InputType<GraphQLTypes['Mutation'], typeof mutation$v>;
16449
16538
 
16450
16539
  declare namespace installExtension {
16451
- export { type IInput$I as IInput, type IOutput$I as IOutput, mutation$v as mutation, name$H as name };
16540
+ export { type IInput$J as IInput, type IOutput$J as IOutput, mutation$v as mutation, name$I as name };
16452
16541
  }
16453
16542
 
16454
- declare const name$G = "uninstallExtension";
16543
+ declare const name$H = "uninstallExtension";
16455
16544
  declare const mutation$u: {
16456
16545
  uninstallExtension: [{
16457
16546
  data: Variable<"UninstallExtensionInput!", "data">;
16458
16547
  }, true];
16459
16548
  };
16460
- interface IInput$H {
16549
+ interface IInput$I {
16461
16550
  /**
16462
16551
  * @private
16463
16552
  */
16464
16553
  [key: string]: unknown;
16465
16554
  data: ModelTypes['UninstallExtensionInput'];
16466
16555
  }
16467
- type IOutput$H = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
16556
+ type IOutput$I = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
16468
16557
 
16469
16558
  declare namespace uninstallExtension {
16470
- export { type IInput$H as IInput, type IOutput$H as IOutput, mutation$u as mutation, name$G as name };
16559
+ export { type IInput$I as IInput, type IOutput$I as IOutput, mutation$u as mutation, name$H as name };
16471
16560
  }
16472
16561
 
16473
- declare const name$F = "updateExtension";
16562
+ declare const name$G = "updateExtension";
16474
16563
  declare const mutation$t: {
16475
16564
  updateExtension: [{
16476
16565
  data: Variable<"ExtensionInput!", "data">;
@@ -16495,17 +16584,17 @@ declare const mutation$t: {
16495
16584
  instructions: boolean;
16496
16585
  }];
16497
16586
  };
16498
- interface IInput$G {
16587
+ interface IInput$H {
16499
16588
  /**
16500
16589
  * @private
16501
16590
  */
16502
16591
  [key: string]: unknown;
16503
16592
  data: ModelTypes['ExtensionInput'];
16504
16593
  }
16505
- type IOutput$G = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
16594
+ type IOutput$H = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
16506
16595
 
16507
16596
  declare namespace updateExtension {
16508
- export { type IInput$G as IInput, type IOutput$G as IOutput, mutation$t as mutation, name$F as name };
16597
+ export { type IInput$H as IInput, type IOutput$H as IOutput, mutation$t as mutation, name$G as name };
16509
16598
  }
16510
16599
 
16511
16600
  /** Установить расширение */
@@ -16514,7 +16603,7 @@ declare namespace index$k {
16514
16603
  export { installExtension as InstallExtension, uninstallExtension as UninstallExtension, updateExtension as UpdateExtension };
16515
16604
  }
16516
16605
 
16517
- declare const name$E = "generateProjectOfFreeDecision";
16606
+ declare const name$F = "generateProjectOfFreeDecision";
16518
16607
  declare const mutation$s: {
16519
16608
  generateProjectOfFreeDecision: [{
16520
16609
  data: Variable<"ProjectFreeDecisionGenerateDocumentInput!", "data">;
@@ -16527,7 +16616,7 @@ declare const mutation$s: {
16527
16616
  meta: boolean;
16528
16617
  }];
16529
16618
  };
16530
- interface IInput$F {
16619
+ interface IInput$G {
16531
16620
  /**
16532
16621
  * @private
16533
16622
  */
@@ -16535,13 +16624,13 @@ interface IInput$F {
16535
16624
  data: ModelTypes['ProjectFreeDecisionGenerateDocumentInput'];
16536
16625
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16537
16626
  }
16538
- type IOutput$F = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
16627
+ type IOutput$G = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
16539
16628
 
16540
16629
  declare namespace generateProjectOfFreeDecisionDocument {
16541
- export { type IInput$F as IInput, type IOutput$F as IOutput, mutation$s as mutation, name$E as name };
16630
+ export { type IInput$G as IInput, type IOutput$G as IOutput, mutation$s as mutation, name$F as name };
16542
16631
  }
16543
16632
 
16544
- declare const name$D = "generateFreeDecision";
16633
+ declare const name$E = "generateFreeDecision";
16545
16634
  declare const mutation$r: {
16546
16635
  generateFreeDecision: [{
16547
16636
  data: Variable<"FreeDecisionGenerateDocumentInput!", "data">;
@@ -16554,7 +16643,7 @@ declare const mutation$r: {
16554
16643
  meta: boolean;
16555
16644
  }];
16556
16645
  };
16557
- interface IInput$E {
16646
+ interface IInput$F {
16558
16647
  /**
16559
16648
  * @private
16560
16649
  */
@@ -16562,32 +16651,32 @@ interface IInput$E {
16562
16651
  data: ModelTypes['FreeDecisionGenerateDocumentInput'];
16563
16652
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16564
16653
  }
16565
- type IOutput$E = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
16654
+ type IOutput$F = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
16566
16655
 
16567
16656
  declare namespace generateFreeDecision {
16568
- export { type IInput$E as IInput, type IOutput$E as IOutput, mutation$r as mutation, name$D as name };
16657
+ export { type IInput$F as IInput, type IOutput$F as IOutput, mutation$r as mutation, name$E as name };
16569
16658
  }
16570
16659
 
16571
- declare const name$C = "publishProjectOfFreeDecision";
16660
+ declare const name$D = "publishProjectOfFreeDecision";
16572
16661
  declare const mutation$q: {
16573
16662
  publishProjectOfFreeDecision: [{
16574
16663
  data: Variable<"PublishProjectFreeDecisionInput!", "data">;
16575
16664
  }, true];
16576
16665
  };
16577
- interface IInput$D {
16666
+ interface IInput$E {
16578
16667
  /**
16579
16668
  * @private
16580
16669
  */
16581
16670
  [key: string]: unknown;
16582
16671
  data: ModelTypes['PublishProjectFreeDecisionInput'];
16583
16672
  }
16584
- type IOutput$D = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
16673
+ type IOutput$E = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
16585
16674
 
16586
16675
  declare namespace publishProjectOfFreeDecision {
16587
- export { type IInput$D as IInput, type IOutput$D as IOutput, mutation$q as mutation, name$C as name };
16676
+ export { type IInput$E as IInput, type IOutput$E as IOutput, mutation$q as mutation, name$D as name };
16588
16677
  }
16589
16678
 
16590
- declare const name$B = "createProjectOfFreeDecision";
16679
+ declare const name$C = "createProjectOfFreeDecision";
16591
16680
  declare const mutation$p: {
16592
16681
  createProjectOfFreeDecision: [{
16593
16682
  data: Variable<"CreateProjectFreeDecisionInput!", "data">;
@@ -16597,17 +16686,17 @@ declare const mutation$p: {
16597
16686
  question: boolean;
16598
16687
  }];
16599
16688
  };
16600
- interface IInput$C {
16689
+ interface IInput$D {
16601
16690
  /**
16602
16691
  * @private
16603
16692
  */
16604
16693
  [key: string]: unknown;
16605
16694
  data: ModelTypes['CreateProjectFreeDecisionInput'];
16606
16695
  }
16607
- type IOutput$C = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
16696
+ type IOutput$D = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
16608
16697
 
16609
16698
  declare namespace createProjectOfFreeDecision {
16610
- export { type IInput$C as IInput, type IOutput$C as IOutput, mutation$p as mutation, name$B as name };
16699
+ export { type IInput$D as IInput, type IOutput$D as IOutput, mutation$p as mutation, name$C as name };
16611
16700
  }
16612
16701
 
16613
16702
  /** Сгенерировать документ проекта свободного решения */
@@ -16616,7 +16705,7 @@ declare namespace index$j {
16616
16705
  export { createProjectOfFreeDecision as CreateProjectOfFreeDecision, generateFreeDecision as GenerateFreeDecision, generateProjectOfFreeDecisionDocument as GenerateProjectOfFreeDecision, publishProjectOfFreeDecision as PublishProjectOfFreeDecision };
16617
16706
  }
16618
16707
 
16619
- declare const name$A = "createAnnualGeneralMeet";
16708
+ declare const name$B = "createAnnualGeneralMeet";
16620
16709
  /**
16621
16710
  * Сгенерировать документ предложения повестки очередного общего собрания пайщиков
16622
16711
  */
@@ -17330,20 +17419,20 @@ declare const mutation$o: {
17330
17419
  };
17331
17420
  }];
17332
17421
  };
17333
- interface IInput$B {
17422
+ interface IInput$C {
17334
17423
  /**
17335
17424
  * @private
17336
17425
  */
17337
17426
  [key: string]: unknown;
17338
17427
  data: ModelTypes['CreateAnnualGeneralMeetInput'];
17339
17428
  }
17340
- type IOutput$B = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
17429
+ type IOutput$C = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
17341
17430
 
17342
17431
  declare namespace createAnnualGeneralMeet {
17343
- export { type IInput$B as IInput, type IOutput$B as IOutput, mutation$o as mutation, name$A as name };
17432
+ export { type IInput$C as IInput, type IOutput$C as IOutput, mutation$o as mutation, name$B as name };
17344
17433
  }
17345
17434
 
17346
- declare const name$z = "generateAnnualGeneralMeetAgendaDocument";
17435
+ declare const name$A = "generateAnnualGeneralMeetAgendaDocument";
17347
17436
  /**
17348
17437
  * Генерация документа повестки годового общего собрания пайщиков
17349
17438
  */
@@ -17359,7 +17448,7 @@ declare const mutation$n: {
17359
17448
  meta: boolean;
17360
17449
  }];
17361
17450
  };
17362
- interface IInput$A {
17451
+ interface IInput$B {
17363
17452
  /**
17364
17453
  * @private
17365
17454
  */
@@ -17367,13 +17456,13 @@ interface IInput$A {
17367
17456
  data: ModelTypes['AnnualGeneralMeetingAgendaGenerateDocumentInput'];
17368
17457
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17369
17458
  }
17370
- type IOutput$A = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
17459
+ type IOutput$B = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
17371
17460
 
17372
17461
  declare namespace generateAnnualGeneralMeetAgendaDocument {
17373
- export { type IInput$A as IInput, type IOutput$A as IOutput, mutation$n as mutation, name$z as name };
17462
+ export { type IInput$B as IInput, type IOutput$B as IOutput, mutation$n as mutation, name$A as name };
17374
17463
  }
17375
17464
 
17376
- declare const name$y = "generateAnnualGeneralMeetDecisionDocument";
17465
+ declare const name$z = "generateAnnualGeneralMeetDecisionDocument";
17377
17466
  /**
17378
17467
  * Генерация документа решения годового общего собрания пайщиков
17379
17468
  */
@@ -17389,7 +17478,7 @@ declare const mutation$m: {
17389
17478
  meta: boolean;
17390
17479
  }];
17391
17480
  };
17392
- interface IInput$z {
17481
+ interface IInput$A {
17393
17482
  /**
17394
17483
  * @private
17395
17484
  */
@@ -17397,13 +17486,13 @@ interface IInput$z {
17397
17486
  data: ModelTypes['AnnualGeneralMeetingDecisionGenerateDocumentInput'];
17398
17487
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17399
17488
  }
17400
- type IOutput$z = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
17489
+ type IOutput$A = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
17401
17490
 
17402
17491
  declare namespace generateAnnualGeneralMeetDecisionDocument {
17403
- export { type IInput$z as IInput, type IOutput$z as IOutput, mutation$m as mutation, name$y as name };
17492
+ export { type IInput$A as IInput, type IOutput$A as IOutput, mutation$m as mutation, name$z as name };
17404
17493
  }
17405
17494
 
17406
- declare const name$x = "generateAnnualGeneralMeetNotificationDocument";
17495
+ declare const name$y = "generateAnnualGeneralMeetNotificationDocument";
17407
17496
  /**
17408
17497
  * Генерация документа уведомления о проведении годового общего собрания пайщиков
17409
17498
  */
@@ -17419,7 +17508,7 @@ declare const mutation$l: {
17419
17508
  meta: boolean;
17420
17509
  }];
17421
17510
  };
17422
- interface IInput$y {
17511
+ interface IInput$z {
17423
17512
  /**
17424
17513
  * @private
17425
17514
  */
@@ -17427,13 +17516,13 @@ interface IInput$y {
17427
17516
  data: ModelTypes['AnnualGeneralMeetingNotificationGenerateDocumentInput'];
17428
17517
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17429
17518
  }
17430
- type IOutput$y = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
17519
+ type IOutput$z = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
17431
17520
 
17432
17521
  declare namespace generateAnnualGeneralMeetNotificationDocument {
17433
- export { type IInput$y as IInput, type IOutput$y as IOutput, mutation$l as mutation, name$x as name };
17522
+ export { type IInput$z as IInput, type IOutput$z as IOutput, mutation$l as mutation, name$y as name };
17434
17523
  }
17435
17524
 
17436
- declare const name$w = "generateBallotForAnnualGeneralMeetDocument";
17525
+ declare const name$x = "generateBallotForAnnualGeneralMeetDocument";
17437
17526
  /**
17438
17527
  * Генерация бюллетеня для голосования на общем собрании пайщиков
17439
17528
  */
@@ -17449,7 +17538,7 @@ declare const mutation$k: {
17449
17538
  meta: boolean;
17450
17539
  }];
17451
17540
  };
17452
- interface IInput$x {
17541
+ interface IInput$y {
17453
17542
  /**
17454
17543
  * @private
17455
17544
  */
@@ -17457,13 +17546,13 @@ interface IInput$x {
17457
17546
  data: ModelTypes['AnnualGeneralMeetingVotingBallotGenerateDocumentInput'];
17458
17547
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17459
17548
  }
17460
- type IOutput$x = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
17549
+ type IOutput$y = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
17461
17550
 
17462
17551
  declare namespace generateBallotForAnnualGeneralMeetDocument {
17463
- export { type IInput$x as IInput, type IOutput$x as IOutput, mutation$k as mutation, name$w as name };
17552
+ export { type IInput$y as IInput, type IOutput$y as IOutput, mutation$k as mutation, name$x as name };
17464
17553
  }
17465
17554
 
17466
- declare const name$v = "generateSovietDecisionOnAnnualMeetDocument";
17555
+ declare const name$w = "generateSovietDecisionOnAnnualMeetDocument";
17467
17556
  /**
17468
17557
  * Генерация документа решения совета о проведении годового общего собрания пайщиков
17469
17558
  */
@@ -17479,7 +17568,7 @@ declare const mutation$j: {
17479
17568
  meta: boolean;
17480
17569
  }];
17481
17570
  };
17482
- interface IInput$w {
17571
+ interface IInput$x {
17483
17572
  /**
17484
17573
  * @private
17485
17574
  */
@@ -17487,13 +17576,13 @@ interface IInput$w {
17487
17576
  data: ModelTypes['AnnualGeneralMeetingSovietDecisionGenerateDocumentInput'];
17488
17577
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17489
17578
  }
17490
- type IOutput$w = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
17579
+ type IOutput$x = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
17491
17580
 
17492
17581
  declare namespace generateSovietDecisionOnAnnualMeetDocument {
17493
- export { type IInput$w as IInput, type IOutput$w as IOutput, mutation$j as mutation, name$v as name };
17582
+ export { type IInput$x as IInput, type IOutput$x as IOutput, mutation$j as mutation, name$w as name };
17494
17583
  }
17495
17584
 
17496
- declare const name$u = "notifyOnAnnualGeneralMeet";
17585
+ declare const name$v = "notifyOnAnnualGeneralMeet";
17497
17586
  /**
17498
17587
  * Уведомление о проведении общего собрания пайщиков
17499
17588
  */
@@ -18207,20 +18296,20 @@ declare const mutation$i: {
18207
18296
  };
18208
18297
  }];
18209
18298
  };
18210
- interface IInput$v {
18299
+ interface IInput$w {
18211
18300
  /**
18212
18301
  * @private
18213
18302
  */
18214
18303
  [key: string]: unknown;
18215
18304
  data: ModelTypes['NotifyOnAnnualGeneralMeetInput'];
18216
18305
  }
18217
- type IOutput$v = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
18306
+ type IOutput$w = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
18218
18307
 
18219
18308
  declare namespace notifyOnAnnualGeneralMeet {
18220
- export { type IInput$v as IInput, type IOutput$v as IOutput, mutation$i as mutation, name$u as name };
18309
+ export { type IInput$w as IInput, type IOutput$w as IOutput, mutation$i as mutation, name$v as name };
18221
18310
  }
18222
18311
 
18223
- declare const name$t = "restartAnnualGeneralMeet";
18312
+ declare const name$u = "restartAnnualGeneralMeet";
18224
18313
  /**
18225
18314
  * Перезапуск годового общего собрания пайщиков
18226
18315
  */
@@ -18934,20 +19023,20 @@ declare const mutation$h: {
18934
19023
  };
18935
19024
  }];
18936
19025
  };
18937
- interface IInput$u {
19026
+ interface IInput$v {
18938
19027
  /**
18939
19028
  * @private
18940
19029
  */
18941
19030
  [key: string]: unknown;
18942
19031
  data: ModelTypes['RestartAnnualGeneralMeetInput'];
18943
19032
  }
18944
- type IOutput$u = InputType<GraphQLTypes['Mutation'], typeof mutation$h>;
19033
+ type IOutput$v = InputType<GraphQLTypes['Mutation'], typeof mutation$h>;
18945
19034
 
18946
19035
  declare namespace restartAnnualGeneralMeet {
18947
- export { type IInput$u as IInput, type IOutput$u as IOutput, mutation$h as mutation, name$t as name };
19036
+ export { type IInput$v as IInput, type IOutput$v as IOutput, mutation$h as mutation, name$u as name };
18948
19037
  }
18949
19038
 
18950
- declare const name$s = "signByPresiderOnAnnualGeneralMeet";
19039
+ declare const name$t = "signByPresiderOnAnnualGeneralMeet";
18951
19040
  /**
18952
19041
  * Подписание решения председателем на годовом общем собрании пайщиков
18953
19042
  */
@@ -19661,20 +19750,20 @@ declare const mutation$g: {
19661
19750
  };
19662
19751
  }];
19663
19752
  };
19664
- interface IInput$t {
19753
+ interface IInput$u {
19665
19754
  /**
19666
19755
  * @private
19667
19756
  */
19668
19757
  [key: string]: unknown;
19669
19758
  data: ModelTypes['SignByPresiderOnAnnualGeneralMeetInput'];
19670
19759
  }
19671
- type IOutput$t = InputType<GraphQLTypes['Mutation'], typeof mutation$g>;
19760
+ type IOutput$u = InputType<GraphQLTypes['Mutation'], typeof mutation$g>;
19672
19761
 
19673
19762
  declare namespace signByPresiderOnAnnualGeneralMeet {
19674
- export { type IInput$t as IInput, type IOutput$t as IOutput, mutation$g as mutation, name$s as name };
19763
+ export { type IInput$u as IInput, type IOutput$u as IOutput, mutation$g as mutation, name$t as name };
19675
19764
  }
19676
19765
 
19677
- declare const name$r = "signBySecretaryOnAnnualGeneralMeet";
19766
+ declare const name$s = "signBySecretaryOnAnnualGeneralMeet";
19678
19767
  /**
19679
19768
  * Подписание решения секретарём на годовом общем собрании пайщиков
19680
19769
  */
@@ -20388,20 +20477,20 @@ declare const mutation$f: {
20388
20477
  };
20389
20478
  }];
20390
20479
  };
20391
- interface IInput$s {
20480
+ interface IInput$t {
20392
20481
  /**
20393
20482
  * @private
20394
20483
  */
20395
20484
  [key: string]: unknown;
20396
20485
  data: ModelTypes['SignBySecretaryOnAnnualGeneralMeetInput'];
20397
20486
  }
20398
- type IOutput$s = InputType<GraphQLTypes['Mutation'], typeof mutation$f>;
20487
+ type IOutput$t = InputType<GraphQLTypes['Mutation'], typeof mutation$f>;
20399
20488
 
20400
20489
  declare namespace signBySecretaryOnAnnualGeneralMeet {
20401
- export { type IInput$s as IInput, type IOutput$s as IOutput, mutation$f as mutation, name$r as name };
20490
+ export { type IInput$t as IInput, type IOutput$t as IOutput, mutation$f as mutation, name$s as name };
20402
20491
  }
20403
20492
 
20404
- declare const name$q = "voteOnAnnualGeneralMeet";
20493
+ declare const name$r = "voteOnAnnualGeneralMeet";
20405
20494
  /**
20406
20495
  * Голосование на общем собрании пайщиков
20407
20496
  */
@@ -21115,17 +21204,17 @@ declare const mutation$e: {
21115
21204
  };
21116
21205
  }];
21117
21206
  };
21118
- interface IInput$r {
21207
+ interface IInput$s {
21119
21208
  /**
21120
21209
  * @private
21121
21210
  */
21122
21211
  [key: string]: unknown;
21123
21212
  data: ModelTypes['VoteOnAnnualGeneralMeetInput'];
21124
21213
  }
21125
- type IOutput$r = InputType<GraphQLTypes['Mutation'], typeof mutation$e>;
21214
+ type IOutput$s = InputType<GraphQLTypes['Mutation'], typeof mutation$e>;
21126
21215
 
21127
21216
  declare namespace voteOnAnnualGeneralMeet {
21128
- export { type IInput$r as IInput, type IOutput$r as IOutput, mutation$e as mutation, name$q as name };
21217
+ export { type IInput$s as IInput, type IOutput$s as IOutput, mutation$e as mutation, name$r as name };
21129
21218
  }
21130
21219
 
21131
21220
  /** Сгенерировать документ предложения повестки очередного общего собрания пайщиков */
@@ -21134,7 +21223,7 @@ declare namespace index$i {
21134
21223
  export { createAnnualGeneralMeet as CreateAnnualGeneralMeet, generateAnnualGeneralMeetAgendaDocument as GenerateAnnualGeneralMeetAgendaDocument, generateAnnualGeneralMeetDecisionDocument as GenerateAnnualGeneralMeetDecisionDocument, generateAnnualGeneralMeetNotificationDocument as GenerateAnnualGeneralMeetNotificationDocument, generateBallotForAnnualGeneralMeetDocument as GenerateBallotForAnnualGeneralMeetDocument, generateSovietDecisionOnAnnualMeetDocument as GenerateSovietDecisionOnAnnualMeetDocument, notifyOnAnnualGeneralMeet as NotifyOnAnnualGeneralMeet, restartAnnualGeneralMeet as RestartAnnualGeneralMeet, signByPresiderOnAnnualGeneralMeet as SignByPresiderOnAnnualGeneralMeet, signBySecretaryOnAnnualGeneralMeet as SignBySecretaryOnAnnualGeneralMeet, voteOnAnnualGeneralMeet as VoteOnAnnualGeneralMeet };
21135
21224
  }
21136
21225
 
21137
- declare const name$p = "addParticipant";
21226
+ declare const name$q = "addParticipant";
21138
21227
  declare const mutation$d: {
21139
21228
  addParticipant: [{
21140
21229
  data: Variable<"AddParticipantInput!", "data">;
@@ -21317,20 +21406,20 @@ declare const mutation$d: {
21317
21406
  };
21318
21407
  }];
21319
21408
  };
21320
- interface IInput$q {
21409
+ interface IInput$r {
21321
21410
  /**
21322
21411
  * @private
21323
21412
  */
21324
21413
  [key: string]: unknown;
21325
21414
  data: ModelTypes['AddParticipantInput'];
21326
21415
  }
21327
- type IOutput$q = InputType<GraphQLTypes['Mutation'], typeof mutation$d>;
21416
+ type IOutput$r = InputType<GraphQLTypes['Mutation'], typeof mutation$d>;
21328
21417
 
21329
21418
  declare namespace addParticipant {
21330
- export { type IInput$q as IInput, type IOutput$q as IOutput, mutation$d as mutation, name$p as name };
21419
+ export { type IInput$r as IInput, type IOutput$r as IOutput, mutation$d as mutation, name$q as name };
21331
21420
  }
21332
21421
 
21333
- declare const name$o = "generateParticipantApplication";
21422
+ declare const name$p = "generateParticipantApplication";
21334
21423
  declare const mutation$c: {
21335
21424
  generateParticipantApplication: [{
21336
21425
  data: Variable<"ParticipantApplicationGenerateDocumentInput!", "data">;
@@ -21343,7 +21432,7 @@ declare const mutation$c: {
21343
21432
  meta: boolean;
21344
21433
  }];
21345
21434
  };
21346
- interface IInput$p {
21435
+ interface IInput$q {
21347
21436
  /**
21348
21437
  * @private
21349
21438
  */
@@ -21351,13 +21440,13 @@ interface IInput$p {
21351
21440
  data: ModelTypes['ParticipantApplicationGenerateDocumentInput'];
21352
21441
  options?: ModelTypes['GenerateDocumentOptionsInput'];
21353
21442
  }
21354
- type IOutput$p = InputType<GraphQLTypes['Mutation'], typeof mutation$c>;
21443
+ type IOutput$q = InputType<GraphQLTypes['Mutation'], typeof mutation$c>;
21355
21444
 
21356
21445
  declare namespace generateParticipantApplication {
21357
- export { type IInput$p as IInput, type IOutput$p as IOutput, mutation$c as mutation, name$o as name };
21446
+ export { type IInput$q as IInput, type IOutput$q as IOutput, mutation$c as mutation, name$p as name };
21358
21447
  }
21359
21448
 
21360
- declare const name$n = "generateParticipantApplicationDecision";
21449
+ declare const name$o = "generateParticipantApplicationDecision";
21361
21450
  declare const mutation$b: {
21362
21451
  generateParticipantApplicationDecision: [{
21363
21452
  data: Variable<"ParticipantApplicationDecisionGenerateDocumentInput!", "data">;
@@ -21370,7 +21459,7 @@ declare const mutation$b: {
21370
21459
  meta: boolean;
21371
21460
  }];
21372
21461
  };
21373
- interface IInput$o {
21462
+ interface IInput$p {
21374
21463
  /**
21375
21464
  * @private
21376
21465
  */
@@ -21378,13 +21467,13 @@ interface IInput$o {
21378
21467
  data: ModelTypes['ParticipantApplicationDecisionGenerateDocumentInput'];
21379
21468
  options?: ModelTypes['GenerateDocumentOptionsInput'];
21380
21469
  }
21381
- type IOutput$o = InputType<GraphQLTypes['Mutation'], typeof mutation$b>;
21470
+ type IOutput$p = InputType<GraphQLTypes['Mutation'], typeof mutation$b>;
21382
21471
 
21383
21472
  declare namespace generateParticipantApplicationDecision {
21384
- export { type IInput$o as IInput, type IOutput$o as IOutput, mutation$b as mutation, name$n as name };
21473
+ export { type IInput$p as IInput, type IOutput$p as IOutput, mutation$b as mutation, name$o as name };
21385
21474
  }
21386
21475
 
21387
- declare const name$m = "registerParticipant";
21476
+ declare const name$n = "registerParticipant";
21388
21477
  declare const mutation$a: {
21389
21478
  registerParticipant: [{
21390
21479
  data: Variable<"RegisterParticipantInput!", "data">;
@@ -21567,17 +21656,17 @@ declare const mutation$a: {
21567
21656
  };
21568
21657
  }];
21569
21658
  };
21570
- interface IInput$n {
21659
+ interface IInput$o {
21571
21660
  /**
21572
21661
  * @private
21573
21662
  */
21574
21663
  [key: string]: unknown;
21575
21664
  data: ModelTypes['RegisterParticipantInput'];
21576
21665
  }
21577
- type IOutput$n = InputType<GraphQLTypes['Mutation'], typeof mutation$a>;
21666
+ type IOutput$o = InputType<GraphQLTypes['Mutation'], typeof mutation$a>;
21578
21667
 
21579
21668
  declare namespace registerParticipant {
21580
- export { type IInput$n as IInput, type IOutput$n as IOutput, mutation$a as mutation, name$m as name };
21669
+ export { type IInput$o as IInput, type IOutput$o as IOutput, mutation$a as mutation, name$n as name };
21581
21670
  }
21582
21671
 
21583
21672
  /**
@@ -21619,7 +21708,7 @@ declare namespace index$h {
21619
21708
  export { addParticipant as AddParticipant, generateParticipantApplication as GenerateParticipantApplication, generateParticipantApplicationDecision as GenerateParticipantApplicationDecision, registerParticipant as RegisterParticipant };
21620
21709
  }
21621
21710
 
21622
- declare const name$l = "createBankAccount";
21711
+ declare const name$m = "createBankAccount";
21623
21712
  declare const mutation$9: {
21624
21713
  createBankAccount: [{
21625
21714
  data: Variable<"CreateBankAccountInput!", "data">;
@@ -21649,39 +21738,39 @@ declare const mutation$9: {
21649
21738
  username: boolean;
21650
21739
  }];
21651
21740
  };
21652
- interface IInput$m {
21741
+ interface IInput$n {
21653
21742
  /**
21654
21743
  * @private
21655
21744
  */
21656
21745
  [key: string]: unknown;
21657
21746
  data: ModelTypes['CreateBankAccountInput'];
21658
21747
  }
21659
- type IOutput$m = InputType<GraphQLTypes['Mutation'], typeof mutation$9>;
21748
+ type IOutput$n = InputType<GraphQLTypes['Mutation'], typeof mutation$9>;
21660
21749
 
21661
21750
  declare namespace createBankAccount {
21662
- export { type IInput$m as IInput, type IOutput$m as IOutput, mutation$9 as mutation, name$l as name };
21751
+ export { type IInput$n as IInput, type IOutput$n as IOutput, mutation$9 as mutation, name$m as name };
21663
21752
  }
21664
21753
 
21665
- declare const name$k = "deletePaymentMethod";
21754
+ declare const name$l = "deletePaymentMethod";
21666
21755
  declare const mutation$8: {
21667
21756
  deletePaymentMethod: [{
21668
21757
  data: Variable<"DeletePaymentMethodInput!", "data">;
21669
21758
  }, true];
21670
21759
  };
21671
- interface IInput$l {
21760
+ interface IInput$m {
21672
21761
  /**
21673
21762
  * @private
21674
21763
  */
21675
21764
  [key: string]: unknown;
21676
21765
  data: ModelTypes['DeletePaymentMethodInput'];
21677
21766
  }
21678
- type IOutput$l = InputType<GraphQLTypes['Mutation'], typeof mutation$8>;
21767
+ type IOutput$m = InputType<GraphQLTypes['Mutation'], typeof mutation$8>;
21679
21768
 
21680
21769
  declare namespace deletePaymentMethod {
21681
- export { type IInput$l as IInput, type IOutput$l as IOutput, mutation$8 as mutation, name$k as name };
21770
+ export { type IInput$m as IInput, type IOutput$m as IOutput, mutation$8 as mutation, name$l as name };
21682
21771
  }
21683
21772
 
21684
- declare const name$j = "updateBankAccount";
21773
+ declare const name$k = "updateBankAccount";
21685
21774
  declare const mutation$7: {
21686
21775
  updateBankAccount: [{
21687
21776
  data: Variable<"UpdateBankAccountInput!", "data">;
@@ -21711,17 +21800,17 @@ declare const mutation$7: {
21711
21800
  username: boolean;
21712
21801
  }];
21713
21802
  };
21714
- interface IInput$k {
21803
+ interface IInput$l {
21715
21804
  /**
21716
21805
  * @private
21717
21806
  */
21718
21807
  [key: string]: unknown;
21719
21808
  data: ModelTypes['UpdateBankAccountInput'];
21720
21809
  }
21721
- type IOutput$k = InputType<GraphQLTypes['Mutation'], typeof mutation$7>;
21810
+ type IOutput$l = InputType<GraphQLTypes['Mutation'], typeof mutation$7>;
21722
21811
 
21723
21812
  declare namespace updateBankAccount {
21724
- export { type IInput$k as IInput, type IOutput$k as IOutput, mutation$7 as mutation, name$j as name };
21813
+ export { type IInput$l as IInput, type IOutput$l as IOutput, mutation$7 as mutation, name$k as name };
21725
21814
  }
21726
21815
 
21727
21816
  /** Добавить метод оплаты */
@@ -21730,7 +21819,7 @@ declare namespace index$g {
21730
21819
  export { createBankAccount as CreateBankAccount, deletePaymentMethod as DeletePaymentMethod, updateBankAccount as UpdateBankAccount };
21731
21820
  }
21732
21821
 
21733
- declare const name$i = "createInitialPayment";
21822
+ declare const name$j = "createInitialPayment";
21734
21823
  declare const mutation$6: {
21735
21824
  createInitialPayment: [{
21736
21825
  data: Variable<"CreateInitialPaymentInput!", "data">;
@@ -21936,20 +22025,20 @@ declare const mutation$6: {
21936
22025
  username: boolean;
21937
22026
  }];
21938
22027
  };
21939
- interface IInput$j {
22028
+ interface IInput$k {
21940
22029
  /**
21941
22030
  * @private
21942
22031
  */
21943
22032
  [key: string]: unknown;
21944
22033
  data: ModelTypes['CreateInitialPaymentInput'];
21945
22034
  }
21946
- type IOutput$j = InputType<GraphQLTypes['Mutation'], typeof mutation$6>;
22035
+ type IOutput$k = InputType<GraphQLTypes['Mutation'], typeof mutation$6>;
21947
22036
 
21948
22037
  declare namespace createInitial {
21949
- export { type IInput$j as IInput, type IOutput$j as IOutput, mutation$6 as mutation, name$i as name };
22038
+ export { type IInput$k as IInput, type IOutput$k as IOutput, mutation$6 as mutation, name$j as name };
21950
22039
  }
21951
22040
 
21952
- declare const name$h = "createDepositPayment";
22041
+ declare const name$i = "createDepositPayment";
21953
22042
  declare const mutation$5: {
21954
22043
  createDepositPayment: [{
21955
22044
  data: Variable<"CreateDepositPaymentInput!", "data">;
@@ -22155,20 +22244,20 @@ declare const mutation$5: {
22155
22244
  username: boolean;
22156
22245
  }];
22157
22246
  };
22158
- interface IInput$i {
22247
+ interface IInput$j {
22159
22248
  /**
22160
22249
  * @private
22161
22250
  */
22162
22251
  [key: string]: unknown;
22163
22252
  data: ModelTypes['CreateDepositPaymentInput'];
22164
22253
  }
22165
- type IOutput$i = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
22254
+ type IOutput$j = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
22166
22255
 
22167
22256
  declare namespace createDeposit {
22168
- export { type IInput$i as IInput, type IOutput$i as IOutput, mutation$5 as mutation, name$h as name };
22257
+ export { type IInput$j as IInput, type IOutput$j as IOutput, mutation$5 as mutation, name$i as name };
22169
22258
  }
22170
22259
 
22171
- declare const name$g = "setPaymentStatus";
22260
+ declare const name$h = "setPaymentStatus";
22172
22261
  declare const mutation$4: {
22173
22262
  setPaymentStatus: [{
22174
22263
  data: Variable<"SetPaymentStatusInput!", "data">;
@@ -22374,17 +22463,17 @@ declare const mutation$4: {
22374
22463
  username: boolean;
22375
22464
  }];
22376
22465
  };
22377
- interface IInput$h {
22466
+ interface IInput$i {
22378
22467
  /**
22379
22468
  * @private
22380
22469
  */
22381
22470
  [key: string]: unknown;
22382
22471
  data: ModelTypes['SetPaymentStatusInput'];
22383
22472
  }
22384
- type IOutput$h = InputType<GraphQLTypes['Mutation'], typeof mutation$4>;
22473
+ type IOutput$i = InputType<GraphQLTypes['Mutation'], typeof mutation$4>;
22385
22474
 
22386
22475
  declare namespace setPaymentStatus {
22387
- export { type IInput$h as IInput, type IOutput$h as IOutput, mutation$4 as mutation, name$g as name };
22476
+ export { type IInput$i as IInput, type IOutput$i as IOutput, mutation$4 as mutation, name$h as name };
22388
22477
  }
22389
22478
 
22390
22479
  /** Создание объекта регистрационного платежа производится мутацией CreateInitial. Выполнение мутации возвращает идентификатор платежа и данные для его совершения в зависимости от выбранного платежного провайдера. */
@@ -22393,7 +22482,7 @@ declare namespace index$f {
22393
22482
  export { createDeposit as CreateDepositPayment, createInitial as CreateInitialPayment, setPaymentStatus as SetPaymentStatus };
22394
22483
  }
22395
22484
 
22396
- declare const name$f = "initSystem";
22485
+ declare const name$g = "initSystem";
22397
22486
  declare const mutation$3: {
22398
22487
  initSystem: [{
22399
22488
  data: Variable<"Init!", "data">;
@@ -22622,20 +22711,20 @@ declare const mutation$3: {
22622
22711
  };
22623
22712
  }];
22624
22713
  };
22625
- interface IInput$g {
22714
+ interface IInput$h {
22626
22715
  /**
22627
22716
  * @private
22628
22717
  */
22629
22718
  [key: string]: unknown;
22630
22719
  data: ModelTypes['Init'];
22631
22720
  }
22632
- type IOutput$g = InputType<GraphQLTypes['Mutation'], typeof mutation$3>;
22721
+ type IOutput$h = InputType<GraphQLTypes['Mutation'], typeof mutation$3>;
22633
22722
 
22634
22723
  declare namespace initSystem {
22635
- export { type IInput$g as IInput, type IOutput$g as IOutput, mutation$3 as mutation, name$f as name };
22724
+ export { type IInput$h as IInput, type IOutput$h as IOutput, mutation$3 as mutation, name$g as name };
22636
22725
  }
22637
22726
 
22638
- declare const name$e = "installSystem";
22727
+ declare const name$f = "installSystem";
22639
22728
  declare const mutation$2: {
22640
22729
  installSystem: [{
22641
22730
  data: Variable<"Install!", "data">;
@@ -22864,39 +22953,39 @@ declare const mutation$2: {
22864
22953
  };
22865
22954
  }];
22866
22955
  };
22867
- interface IInput$f {
22956
+ interface IInput$g {
22868
22957
  /**
22869
22958
  * @private
22870
22959
  */
22871
22960
  [key: string]: unknown;
22872
22961
  data: ModelTypes['Install'];
22873
22962
  }
22874
- type IOutput$f = InputType<GraphQLTypes['Mutation'], typeof mutation$2>;
22963
+ type IOutput$g = InputType<GraphQLTypes['Mutation'], typeof mutation$2>;
22875
22964
 
22876
22965
  declare namespace installSystem {
22877
- export { type IInput$f as IInput, type IOutput$f as IOutput, mutation$2 as mutation, name$e as name };
22966
+ export { type IInput$g as IInput, type IOutput$g as IOutput, mutation$2 as mutation, name$f as name };
22878
22967
  }
22879
22968
 
22880
- declare const name$d = "setWif";
22969
+ declare const name$e = "setWif";
22881
22970
  declare const mutation$1: {
22882
22971
  setWif: [{
22883
22972
  data: Variable<"Update!", "data">;
22884
22973
  }, true];
22885
22974
  };
22886
- interface IInput$e {
22975
+ interface IInput$f {
22887
22976
  /**
22888
22977
  * @private
22889
22978
  */
22890
22979
  [key: string]: unknown;
22891
22980
  data: ModelTypes['SetWifInput'];
22892
22981
  }
22893
- type IOutput$e = InputType<GraphQLTypes['Mutation'], typeof mutation$1>;
22982
+ type IOutput$f = InputType<GraphQLTypes['Mutation'], typeof mutation$1>;
22894
22983
 
22895
22984
  declare namespace setWif {
22896
- export { type IInput$e as IInput, type IOutput$e as IOutput, mutation$1 as mutation, name$d as name };
22985
+ export { type IInput$f as IInput, type IOutput$f as IOutput, mutation$1 as mutation, name$e as name };
22897
22986
  }
22898
22987
 
22899
- declare const name$c = "updateSystem";
22988
+ declare const name$d = "updateSystem";
22900
22989
  declare const mutation: {
22901
22990
  updateSystem: [{
22902
22991
  data: Variable<"Update!", "data">;
@@ -23125,18 +23214,18 @@ declare const mutation: {
23125
23214
  };
23126
23215
  }];
23127
23216
  };
23128
- interface IInput$d {
23217
+ interface IInput$e {
23129
23218
  /**
23130
23219
  * @private
23131
23220
  */
23132
23221
  [key: string]: unknown;
23133
23222
  data: ModelTypes['Update'];
23134
23223
  }
23135
- type IOutput$d = InputType<GraphQLTypes['Mutation'], typeof mutation>;
23224
+ type IOutput$e = InputType<GraphQLTypes['Mutation'], typeof mutation>;
23136
23225
 
23137
23226
  declare const updateSystem_mutation: typeof mutation;
23138
23227
  declare namespace updateSystem {
23139
- export { type IInput$d as IInput, type IOutput$d as IOutput, updateSystem_mutation as mutation, name$c as name };
23228
+ export { type IInput$e as IInput, type IOutput$e as IOutput, updateSystem_mutation as mutation, name$d as name };
23140
23229
  }
23141
23230
 
23142
23231
  /** Произвести инициализацию программного обеспечения перед установкой совета методом install */
@@ -23149,11 +23238,11 @@ declare namespace Mutations {
23149
23238
  export { index$p as Accounts, index$o as Agreements, index$n as Auth, index$m as Branches, index$l as Cooplace, index$k as Extensions, index$j as FreeDecisions, index$i as Meet, index$h as Participants, index$g as PaymentMethods, index$f as Payments, index$e as System };
23150
23239
  }
23151
23240
 
23152
- declare const name$b = "getAccount";
23241
+ declare const name$c = "getAccount";
23153
23242
  /**
23154
23243
  * Извлекает комплексную информацию о аккаунте
23155
23244
  */
23156
- declare const query$c: {
23245
+ declare const query$d: {
23157
23246
  getAccount: [{
23158
23247
  data: Variable<"GetAccountInput!", "data">;
23159
23248
  }, {
@@ -23335,24 +23424,24 @@ declare const query$c: {
23335
23424
  };
23336
23425
  }];
23337
23426
  };
23338
- interface IInput$c {
23427
+ interface IInput$d {
23339
23428
  /**
23340
23429
  * @private
23341
23430
  */
23342
23431
  [key: string]: unknown;
23343
23432
  data: ModelTypes['GetAccountInput'];
23344
23433
  }
23345
- type IOutput$c = InputType<GraphQLTypes['Query'], typeof query$c>;
23434
+ type IOutput$d = InputType<GraphQLTypes['Query'], typeof query$d>;
23346
23435
 
23347
23436
  declare namespace getAccount {
23348
- export { type IInput$c as IInput, type IOutput$c as IOutput, name$b as name, query$c as query };
23437
+ export { type IInput$d as IInput, type IOutput$d as IOutput, name$c as name, query$d as query };
23349
23438
  }
23350
23439
 
23351
- declare const name$a = "getAccounts";
23440
+ declare const name$b = "getAccounts";
23352
23441
  /**
23353
23442
  * Извлекает комплексную информацию о аккаунтах с постраничным отображением
23354
23443
  */
23355
- declare const query$b: {
23444
+ declare const query$c: {
23356
23445
  getAccounts: [{
23357
23446
  data: Variable<"GetAccountsInput", "data">;
23358
23447
  options: Variable<"PaginationInput", "options">;
@@ -23540,7 +23629,7 @@ declare const query$b: {
23540
23629
  currentPage: boolean;
23541
23630
  }];
23542
23631
  };
23543
- interface IInput$b {
23632
+ interface IInput$c {
23544
23633
  /**
23545
23634
  * @private
23546
23635
  */
@@ -23548,9 +23637,94 @@ interface IInput$b {
23548
23637
  data?: ModelTypes['GetAccountsInput'];
23549
23638
  options?: ModelTypes['PaginationInput'];
23550
23639
  }
23551
- type IOutput$b = InputType<GraphQLTypes['Query'], typeof query$b>;
23640
+ type IOutput$c = InputType<GraphQLTypes['Query'], typeof query$c>;
23552
23641
 
23553
23642
  declare namespace getAccounts {
23643
+ export { type IInput$c as IInput, type IOutput$c as IOutput, name$b as name, query$c as query };
23644
+ }
23645
+
23646
+ declare const name$a = "searchPrivateAccounts";
23647
+ /**
23648
+ * Поиск приватных данных аккаунтов по запросу
23649
+ */
23650
+ declare const query$b: {
23651
+ searchPrivateAccounts: [{
23652
+ data: Variable<"SearchPrivateAccountsInput!", "data">;
23653
+ }, {
23654
+ type: boolean;
23655
+ score: boolean;
23656
+ highlightedFields: boolean;
23657
+ data: {
23658
+ '...on Individual': {
23659
+ email: boolean;
23660
+ full_address: boolean;
23661
+ phone: boolean;
23662
+ first_name: boolean;
23663
+ last_name: boolean;
23664
+ middle_name: boolean;
23665
+ birthdate: boolean;
23666
+ passport: {
23667
+ number: boolean;
23668
+ code: boolean;
23669
+ issued_at: boolean;
23670
+ issued_by: boolean;
23671
+ series: boolean;
23672
+ };
23673
+ username: boolean;
23674
+ };
23675
+ '...on Entrepreneur': {
23676
+ birthdate: boolean;
23677
+ city: boolean;
23678
+ country: boolean;
23679
+ details: {
23680
+ inn: boolean;
23681
+ ogrn: boolean;
23682
+ };
23683
+ email: boolean;
23684
+ first_name: boolean;
23685
+ full_address: boolean;
23686
+ last_name: boolean;
23687
+ middle_name: boolean;
23688
+ phone: boolean;
23689
+ username: boolean;
23690
+ };
23691
+ '...on Organization': {
23692
+ city: boolean;
23693
+ country: boolean;
23694
+ details: {
23695
+ inn: boolean;
23696
+ kpp: boolean;
23697
+ ogrn: boolean;
23698
+ };
23699
+ email: boolean;
23700
+ fact_address: boolean;
23701
+ full_address: boolean;
23702
+ full_name: boolean;
23703
+ phone: boolean;
23704
+ represented_by: {
23705
+ based_on: boolean;
23706
+ first_name: boolean;
23707
+ last_name: boolean;
23708
+ middle_name: boolean;
23709
+ position: boolean;
23710
+ };
23711
+ short_name: boolean;
23712
+ type: boolean;
23713
+ username: boolean;
23714
+ };
23715
+ };
23716
+ }];
23717
+ };
23718
+ interface IInput$b {
23719
+ /**
23720
+ * @private
23721
+ */
23722
+ [key: string]: unknown;
23723
+ data: ModelTypes['SearchPrivateAccountsInput'];
23724
+ }
23725
+ type IOutput$b = InputType<GraphQLTypes['Query'], typeof query$b>;
23726
+
23727
+ declare namespace searchPrivateAccounts {
23554
23728
  export { type IInput$b as IInput, type IOutput$b as IOutput, name$a as name, query$b as query };
23555
23729
  }
23556
23730
 
@@ -23559,7 +23733,7 @@ declare namespace getAccounts {
23559
23733
  /** Получить сводную информацию о аккаунте */
23560
23734
 
23561
23735
  declare namespace index$d {
23562
- export { getAccount as GetAccount, getAccounts as GetAccounts };
23736
+ export { getAccount as GetAccount, getAccounts as GetAccounts, searchPrivateAccounts as SearchPrivateAccounts };
23563
23737
  }
23564
23738
 
23565
23739
  declare const name$9 = "getAgenda";
@@ -27466,7 +27640,7 @@ declare class Client {
27466
27640
  * @param wif Приватный ключ в формате WIF.
27467
27641
  * @returns Результат логина.
27468
27642
  */
27469
- login(email: string, wif: string): Promise<IOutput$1b['login']>;
27643
+ login(email: string, wif: string): Promise<IOutput$1c['login']>;
27470
27644
  /**
27471
27645
  * Установка токена авторизации.
27472
27646
  * @param token Токен для заголовков Authorization.
@@ -27533,8 +27707,11 @@ declare class Client {
27533
27707
  options?: ValueTypes["PaginationInput"] | undefined | null | Variable<any, string>;
27534
27708
  }, ValueTypes["PaymentPaginationResult"]];
27535
27709
  getSystemInfo?: ValueTypes["SystemInfo"];
27710
+ searchPrivateAccounts?: [{
27711
+ data: ValueTypes["SearchPrivateAccountsInput"] | Variable<any, string>;
27712
+ }, ValueTypes["PrivateAccountSearchResult"]];
27536
27713
  __typename?: boolean | `@${string}`;
27537
- }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" ? Z[P] : never; }, ops?: OperationOptions & {
27714
+ }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" | "searchPrivateAccounts" ? Z[P] : never; }, ops?: OperationOptions & {
27538
27715
  variables?: Record<string, unknown>;
27539
27716
  }) => Promise<InputType<{
27540
27717
  __typename: "Query";
@@ -27550,6 +27727,7 @@ declare class Client {
27550
27727
  getPaymentMethods: GraphQLTypes["PaymentMethodPaginationResult"];
27551
27728
  getPayments: GraphQLTypes["PaymentPaginationResult"];
27552
27729
  getSystemInfo: GraphQLTypes["SystemInfo"];
27730
+ searchPrivateAccounts: Array<GraphQLTypes["PrivateAccountSearchResult"]>;
27553
27731
  }, Z, Omit<ScalarDefinition, string> & ScalarDefinition>>;
27554
27732
  /**
27555
27733
  * Доступ к GraphQL-мутациям.