@coopenomics/sdk 2025.7.23 → 2025.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1140,6 +1140,21 @@ type ValueTypes = {
1140
1140
  /** Имя аккаунта пользователя */
1141
1141
  username: string | Variable<any, string>;
1142
1142
  };
1143
+ ["ChartOfAccountsItem"]: AliasType<{
1144
+ /** Доступные средства */
1145
+ available?: boolean | `@${string}`;
1146
+ /** Заблокированные средства */
1147
+ blocked?: boolean | `@${string}`;
1148
+ /** Идентификатор счета для отображения (может быть дробным, например "86.6") */
1149
+ displayId?: boolean | `@${string}`;
1150
+ /** Идентификатор счета */
1151
+ id?: boolean | `@${string}`;
1152
+ /** Название счета */
1153
+ name?: boolean | `@${string}`;
1154
+ /** Списанные средства */
1155
+ writeoff?: boolean | `@${string}`;
1156
+ __typename?: boolean | `@${string}`;
1157
+ }>;
1143
1158
  ["CommonRequestInput"]: {
1144
1159
  currency: string | Variable<any, string>;
1145
1160
  hash: string | Variable<any, string>;
@@ -1879,6 +1894,24 @@ type ValueTypes = {
1879
1894
  /** Фильтр по имени */
1880
1895
  name?: string | undefined | null | Variable<any, string>;
1881
1896
  };
1897
+ ["GetLedgerHistoryInput"]: {
1898
+ /** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
1899
+ account_id?: number | undefined | null | Variable<any, string>;
1900
+ /** Имя кооператива */
1901
+ coopname: string | Variable<any, string>;
1902
+ /** Количество записей на странице (по умолчанию 10, максимум 100) */
1903
+ limit?: number | undefined | null | Variable<any, string>;
1904
+ /** Номер страницы (по умолчанию 1) */
1905
+ page?: number | undefined | null | Variable<any, string>;
1906
+ /** Поле для сортировки (created_at, global_sequence) */
1907
+ sortBy?: string | undefined | null | Variable<any, string>;
1908
+ /** Направление сортировки (ASC или DESC) */
1909
+ sortOrder?: string | undefined | null | Variable<any, string>;
1910
+ };
1911
+ ["GetLedgerInput"]: {
1912
+ /** Имя кооператива для получения состояния ledger */
1913
+ coopname: string | Variable<any, string>;
1914
+ };
1882
1915
  ["GetMeetInput"]: {
1883
1916
  /** Имя аккаунта кооператива */
1884
1917
  coopname: string | Variable<any, string>;
@@ -1960,6 +1993,41 @@ type ValueTypes = {
1960
1993
  weight?: boolean | `@${string}`;
1961
1994
  __typename?: boolean | `@${string}`;
1962
1995
  }>;
1996
+ ["LedgerHistoryResponse"]: AliasType<{
1997
+ /** Текущая страница */
1998
+ currentPage?: boolean | `@${string}`;
1999
+ /** Список операций */
2000
+ items?: ValueTypes["LedgerOperation"];
2001
+ /** Общее количество операций */
2002
+ totalCount?: boolean | `@${string}`;
2003
+ /** Общее количество страниц */
2004
+ totalPages?: boolean | `@${string}`;
2005
+ __typename?: boolean | `@${string}`;
2006
+ }>;
2007
+ ["LedgerOperation"]: AliasType<{
2008
+ /** ID счета */
2009
+ account_id?: boolean | `@${string}`;
2010
+ /** Тип операции */
2011
+ action?: boolean | `@${string}`;
2012
+ /** Комментарий к операции */
2013
+ comment?: boolean | `@${string}`;
2014
+ /** Имя кооператива */
2015
+ coopname?: boolean | `@${string}`;
2016
+ /** Дата и время создания операции */
2017
+ created_at?: boolean | `@${string}`;
2018
+ /** Номер глобальной последовательности блокчейна */
2019
+ global_sequence?: boolean | `@${string}`;
2020
+ /** Сумма операции */
2021
+ quantity?: boolean | `@${string}`;
2022
+ __typename?: boolean | `@${string}`;
2023
+ }>;
2024
+ ["LedgerState"]: AliasType<{
2025
+ /** План счетов с актуальными данными */
2026
+ chartOfAccounts?: ValueTypes["ChartOfAccountsItem"];
2027
+ /** Имя кооператива */
2028
+ coopname?: boolean | `@${string}`;
2029
+ __typename?: boolean | `@${string}`;
2030
+ }>;
1963
2031
  ["LoginInput"]: {
1964
2032
  /** Электронная почта */
1965
2033
  email: string | Variable<any, string>;
@@ -2922,6 +2990,12 @@ type ValueTypes = {
2922
2990
  getExtensions?: [{
2923
2991
  data?: ValueTypes["GetExtensionsInput"] | undefined | null | Variable<any, string>;
2924
2992
  }, ValueTypes["Extension"]];
2993
+ getLedger?: [{
2994
+ data: ValueTypes["GetLedgerInput"] | Variable<any, string>;
2995
+ }, ValueTypes["LedgerState"]];
2996
+ getLedgerHistory?: [{
2997
+ data: ValueTypes["GetLedgerHistoryInput"] | Variable<any, string>;
2998
+ }, ValueTypes["LedgerHistoryResponse"]];
2925
2999
  getMeet?: [{
2926
3000
  data: ValueTypes["GetMeetInput"] | Variable<any, string>;
2927
3001
  }, ValueTypes["MeetAggregate"]];
@@ -4823,6 +4897,21 @@ type ResolverInputTypes = {
4823
4897
  /** Имя аккаунта пользователя */
4824
4898
  username: string;
4825
4899
  };
4900
+ ["ChartOfAccountsItem"]: AliasType<{
4901
+ /** Доступные средства */
4902
+ available?: boolean | `@${string}`;
4903
+ /** Заблокированные средства */
4904
+ blocked?: boolean | `@${string}`;
4905
+ /** Идентификатор счета для отображения (может быть дробным, например "86.6") */
4906
+ displayId?: boolean | `@${string}`;
4907
+ /** Идентификатор счета */
4908
+ id?: boolean | `@${string}`;
4909
+ /** Название счета */
4910
+ name?: boolean | `@${string}`;
4911
+ /** Списанные средства */
4912
+ writeoff?: boolean | `@${string}`;
4913
+ __typename?: boolean | `@${string}`;
4914
+ }>;
4826
4915
  ["CommonRequestInput"]: {
4827
4916
  currency: string;
4828
4917
  hash: string;
@@ -5562,6 +5651,24 @@ type ResolverInputTypes = {
5562
5651
  /** Фильтр по имени */
5563
5652
  name?: string | undefined | null;
5564
5653
  };
5654
+ ["GetLedgerHistoryInput"]: {
5655
+ /** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
5656
+ account_id?: number | undefined | null;
5657
+ /** Имя кооператива */
5658
+ coopname: string;
5659
+ /** Количество записей на странице (по умолчанию 10, максимум 100) */
5660
+ limit?: number | undefined | null;
5661
+ /** Номер страницы (по умолчанию 1) */
5662
+ page?: number | undefined | null;
5663
+ /** Поле для сортировки (created_at, global_sequence) */
5664
+ sortBy?: string | undefined | null;
5665
+ /** Направление сортировки (ASC или DESC) */
5666
+ sortOrder?: string | undefined | null;
5667
+ };
5668
+ ["GetLedgerInput"]: {
5669
+ /** Имя кооператива для получения состояния ledger */
5670
+ coopname: string;
5671
+ };
5565
5672
  ["GetMeetInput"]: {
5566
5673
  /** Имя аккаунта кооператива */
5567
5674
  coopname: string;
@@ -5643,6 +5750,41 @@ type ResolverInputTypes = {
5643
5750
  weight?: boolean | `@${string}`;
5644
5751
  __typename?: boolean | `@${string}`;
5645
5752
  }>;
5753
+ ["LedgerHistoryResponse"]: AliasType<{
5754
+ /** Текущая страница */
5755
+ currentPage?: boolean | `@${string}`;
5756
+ /** Список операций */
5757
+ items?: ResolverInputTypes["LedgerOperation"];
5758
+ /** Общее количество операций */
5759
+ totalCount?: boolean | `@${string}`;
5760
+ /** Общее количество страниц */
5761
+ totalPages?: boolean | `@${string}`;
5762
+ __typename?: boolean | `@${string}`;
5763
+ }>;
5764
+ ["LedgerOperation"]: AliasType<{
5765
+ /** ID счета */
5766
+ account_id?: boolean | `@${string}`;
5767
+ /** Тип операции */
5768
+ action?: boolean | `@${string}`;
5769
+ /** Комментарий к операции */
5770
+ comment?: boolean | `@${string}`;
5771
+ /** Имя кооператива */
5772
+ coopname?: boolean | `@${string}`;
5773
+ /** Дата и время создания операции */
5774
+ created_at?: boolean | `@${string}`;
5775
+ /** Номер глобальной последовательности блокчейна */
5776
+ global_sequence?: boolean | `@${string}`;
5777
+ /** Сумма операции */
5778
+ quantity?: boolean | `@${string}`;
5779
+ __typename?: boolean | `@${string}`;
5780
+ }>;
5781
+ ["LedgerState"]: AliasType<{
5782
+ /** План счетов с актуальными данными */
5783
+ chartOfAccounts?: ResolverInputTypes["ChartOfAccountsItem"];
5784
+ /** Имя кооператива */
5785
+ coopname?: boolean | `@${string}`;
5786
+ __typename?: boolean | `@${string}`;
5787
+ }>;
5646
5788
  ["LoginInput"]: {
5647
5789
  /** Электронная почта */
5648
5790
  email: string;
@@ -6605,6 +6747,12 @@ type ResolverInputTypes = {
6605
6747
  getExtensions?: [{
6606
6748
  data?: ResolverInputTypes["GetExtensionsInput"] | undefined | null;
6607
6749
  }, ResolverInputTypes["Extension"]];
6750
+ getLedger?: [{
6751
+ data: ResolverInputTypes["GetLedgerInput"];
6752
+ }, ResolverInputTypes["LedgerState"]];
6753
+ getLedgerHistory?: [{
6754
+ data: ResolverInputTypes["GetLedgerHistoryInput"];
6755
+ }, ResolverInputTypes["LedgerHistoryResponse"]];
6608
6756
  getMeet?: [{
6609
6757
  data: ResolverInputTypes["GetMeetInput"];
6610
6758
  }, ResolverInputTypes["MeetAggregate"]];
@@ -8490,6 +8638,20 @@ type ModelTypes = {
8490
8638
  /** Имя аккаунта пользователя */
8491
8639
  username: string;
8492
8640
  };
8641
+ ["ChartOfAccountsItem"]: {
8642
+ /** Доступные средства */
8643
+ available: string;
8644
+ /** Заблокированные средства */
8645
+ blocked: string;
8646
+ /** Идентификатор счета для отображения (может быть дробным, например "86.6") */
8647
+ displayId: string;
8648
+ /** Идентификатор счета */
8649
+ id: number;
8650
+ /** Название счета */
8651
+ name: string;
8652
+ /** Списанные средства */
8653
+ writeoff: string;
8654
+ };
8493
8655
  ["CommonRequestInput"]: {
8494
8656
  currency: string;
8495
8657
  hash: string;
@@ -9209,6 +9371,24 @@ type ModelTypes = {
9209
9371
  /** Фильтр по имени */
9210
9372
  name?: string | undefined | null;
9211
9373
  };
9374
+ ["GetLedgerHistoryInput"]: {
9375
+ /** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
9376
+ account_id?: number | undefined | null;
9377
+ /** Имя кооператива */
9378
+ coopname: string;
9379
+ /** Количество записей на странице (по умолчанию 10, максимум 100) */
9380
+ limit?: number | undefined | null;
9381
+ /** Номер страницы (по умолчанию 1) */
9382
+ page?: number | undefined | null;
9383
+ /** Поле для сортировки (created_at, global_sequence) */
9384
+ sortBy?: string | undefined | null;
9385
+ /** Направление сортировки (ASC или DESC) */
9386
+ sortOrder?: string | undefined | null;
9387
+ };
9388
+ ["GetLedgerInput"]: {
9389
+ /** Имя кооператива для получения состояния ledger */
9390
+ coopname: string;
9391
+ };
9212
9392
  ["GetMeetInput"]: {
9213
9393
  /** Имя аккаунта кооператива */
9214
9394
  coopname: string;
@@ -9287,6 +9467,38 @@ type ModelTypes = {
9287
9467
  /** Вес */
9288
9468
  weight: number;
9289
9469
  };
9470
+ ["LedgerHistoryResponse"]: {
9471
+ /** Текущая страница */
9472
+ currentPage: number;
9473
+ /** Список операций */
9474
+ items: Array<ModelTypes["LedgerOperation"]>;
9475
+ /** Общее количество операций */
9476
+ totalCount: number;
9477
+ /** Общее количество страниц */
9478
+ totalPages: number;
9479
+ };
9480
+ ["LedgerOperation"]: {
9481
+ /** ID счета */
9482
+ account_id: number;
9483
+ /** Тип операции */
9484
+ action: string;
9485
+ /** Комментарий к операции */
9486
+ comment?: string | undefined | null;
9487
+ /** Имя кооператива */
9488
+ coopname: string;
9489
+ /** Дата и время создания операции */
9490
+ created_at: ModelTypes["DateTime"];
9491
+ /** Номер глобальной последовательности блокчейна */
9492
+ global_sequence: number;
9493
+ /** Сумма операции */
9494
+ quantity: string;
9495
+ };
9496
+ ["LedgerState"]: {
9497
+ /** План счетов с актуальными данными */
9498
+ chartOfAccounts: Array<ModelTypes["ChartOfAccountsItem"]>;
9499
+ /** Имя кооператива */
9500
+ coopname: string;
9501
+ };
9290
9502
  ["LoginInput"]: {
9291
9503
  /** Электронная почта */
9292
9504
  email: string;
@@ -10106,6 +10318,10 @@ type ModelTypes = {
10106
10318
  getDocuments: ModelTypes["DocumentsAggregatePaginationResult"];
10107
10319
  /** Получить список расширений */
10108
10320
  getExtensions: Array<ModelTypes["Extension"]>;
10321
+ /** Получить полное состояние плана счетов кооператива. Возвращает все счета из стандартного плана счетов с актуальными данными из блокчейна. Если счет не активен в блокчейне, возвращает нулевые значения. */
10322
+ getLedger: ModelTypes["LedgerState"];
10323
+ /** Получить историю операций по счетам кооператива. Возвращает список операций с возможностью фильтрации по account_id и пагинацией. Операции сортируются по дате создания (новые первыми). */
10324
+ getLedgerHistory: ModelTypes["LedgerHistoryResponse"];
10109
10325
  /** Получить данные собрания по хешу */
10110
10326
  getMeet: ModelTypes["MeetAggregate"];
10111
10327
  /** Получить список всех собраний кооператива */
@@ -11974,6 +12190,21 @@ type GraphQLTypes = {
11974
12190
  /** Имя аккаунта пользователя */
11975
12191
  username: string;
11976
12192
  };
12193
+ ["ChartOfAccountsItem"]: {
12194
+ __typename: "ChartOfAccountsItem";
12195
+ /** Доступные средства */
12196
+ available: string;
12197
+ /** Заблокированные средства */
12198
+ blocked: string;
12199
+ /** Идентификатор счета для отображения (может быть дробным, например "86.6") */
12200
+ displayId: string;
12201
+ /** Идентификатор счета */
12202
+ id: number;
12203
+ /** Название счета */
12204
+ name: string;
12205
+ /** Списанные средства */
12206
+ writeoff: string;
12207
+ };
11977
12208
  ["CommonRequestInput"]: {
11978
12209
  currency: string;
11979
12210
  hash: string;
@@ -12715,6 +12946,24 @@ type GraphQLTypes = {
12715
12946
  /** Фильтр по имени */
12716
12947
  name?: string | undefined | null;
12717
12948
  };
12949
+ ["GetLedgerHistoryInput"]: {
12950
+ /** ID счета для фильтрации. Если не указан, возвращаются операции по всем счетам */
12951
+ account_id?: number | undefined | null;
12952
+ /** Имя кооператива */
12953
+ coopname: string;
12954
+ /** Количество записей на странице (по умолчанию 10, максимум 100) */
12955
+ limit?: number | undefined | null;
12956
+ /** Номер страницы (по умолчанию 1) */
12957
+ page?: number | undefined | null;
12958
+ /** Поле для сортировки (created_at, global_sequence) */
12959
+ sortBy?: string | undefined | null;
12960
+ /** Направление сортировки (ASC или DESC) */
12961
+ sortOrder?: string | undefined | null;
12962
+ };
12963
+ ["GetLedgerInput"]: {
12964
+ /** Имя кооператива для получения состояния ledger */
12965
+ coopname: string;
12966
+ };
12718
12967
  ["GetMeetInput"]: {
12719
12968
  /** Имя аккаунта кооператива */
12720
12969
  coopname: string;
@@ -12800,6 +13049,41 @@ type GraphQLTypes = {
12800
13049
  /** Вес */
12801
13050
  weight: number;
12802
13051
  };
13052
+ ["LedgerHistoryResponse"]: {
13053
+ __typename: "LedgerHistoryResponse";
13054
+ /** Текущая страница */
13055
+ currentPage: number;
13056
+ /** Список операций */
13057
+ items: Array<GraphQLTypes["LedgerOperation"]>;
13058
+ /** Общее количество операций */
13059
+ totalCount: number;
13060
+ /** Общее количество страниц */
13061
+ totalPages: number;
13062
+ };
13063
+ ["LedgerOperation"]: {
13064
+ __typename: "LedgerOperation";
13065
+ /** ID счета */
13066
+ account_id: number;
13067
+ /** Тип операции */
13068
+ action: string;
13069
+ /** Комментарий к операции */
13070
+ comment?: string | undefined | null;
13071
+ /** Имя кооператива */
13072
+ coopname: string;
13073
+ /** Дата и время создания операции */
13074
+ created_at: GraphQLTypes["DateTime"];
13075
+ /** Номер глобальной последовательности блокчейна */
13076
+ global_sequence: number;
13077
+ /** Сумма операции */
13078
+ quantity: string;
13079
+ };
13080
+ ["LedgerState"]: {
13081
+ __typename: "LedgerState";
13082
+ /** План счетов с актуальными данными */
13083
+ chartOfAccounts: Array<GraphQLTypes["ChartOfAccountsItem"]>;
13084
+ /** Имя кооператива */
13085
+ coopname: string;
13086
+ };
12803
13087
  ["LoginInput"]: {
12804
13088
  /** Электронная почта */
12805
13089
  email: string;
@@ -13656,6 +13940,10 @@ type GraphQLTypes = {
13656
13940
  getDocuments: GraphQLTypes["DocumentsAggregatePaginationResult"];
13657
13941
  /** Получить список расширений */
13658
13942
  getExtensions: Array<GraphQLTypes["Extension"]>;
13943
+ /** Получить полное состояние плана счетов кооператива. Возвращает все счета из стандартного плана счетов с актуальными данными из блокчейна. Если счет не активен в блокчейне, возвращает нулевые значения. */
13944
+ getLedger: GraphQLTypes["LedgerState"];
13945
+ /** Получить историю операций по счетам кооператива. Возвращает список операций с возможностью фильтрации по account_id и пагинацией. Операции сортируются по дате создания (новые первыми). */
13946
+ getLedgerHistory: GraphQLTypes["LedgerHistoryResponse"];
13659
13947
  /** Получить данные собрания по хешу */
13660
13948
  getMeet: GraphQLTypes["MeetAggregate"];
13661
13949
  /** Получить список всех собраний кооператива */
@@ -14810,6 +15098,8 @@ type ZEUS_VARIABLES = {
14810
15098
  ["GetBranchesInput"]: ValueTypes["GetBranchesInput"];
14811
15099
  ["GetDocumentsInput"]: ValueTypes["GetDocumentsInput"];
14812
15100
  ["GetExtensionsInput"]: ValueTypes["GetExtensionsInput"];
15101
+ ["GetLedgerHistoryInput"]: ValueTypes["GetLedgerHistoryInput"];
15102
+ ["GetLedgerInput"]: ValueTypes["GetLedgerInput"];
14813
15103
  ["GetMeetInput"]: ValueTypes["GetMeetInput"];
14814
15104
  ["GetMeetsInput"]: ValueTypes["GetMeetsInput"];
14815
15105
  ["GetPaymentMethodsInput"]: ValueTypes["GetPaymentMethodsInput"];
@@ -14891,96 +15181,96 @@ type ZEUS_VARIABLES = {
14891
15181
  ["WebPushSubscriptionKeysInput"]: ValueTypes["WebPushSubscriptionKeysInput"];
14892
15182
  };
14893
15183
 
14894
- declare const index$v_$: typeof $;
14895
- type index$v_AccountType = AccountType;
14896
- declare const index$v_AccountType: typeof AccountType;
14897
- type index$v_AliasType<T> = AliasType<T>;
14898
- type index$v_AllTypesPropsType = AllTypesPropsType;
14899
- declare const index$v_Chain: typeof Chain;
14900
- type index$v_Country = Country;
14901
- declare const index$v_Country: typeof Country;
14902
- type index$v_ExtendedMeetStatus = ExtendedMeetStatus;
14903
- declare const index$v_ExtendedMeetStatus: typeof ExtendedMeetStatus;
14904
- type index$v_ExtractVariables<Query> = ExtractVariables<Query>;
14905
- type index$v_ExtractVariablesDeep<Query> = ExtractVariablesDeep<Query>;
14906
- type index$v_FetchFunction = FetchFunction;
14907
- type index$v_FromSelector<SELECTOR, NAME extends keyof GraphQLTypes, SCLR extends ScalarDefinition = {}> = FromSelector<SELECTOR, NAME, SCLR>;
14908
- declare const index$v_GRAPHQL_TYPE_SEPARATOR: typeof GRAPHQL_TYPE_SEPARATOR;
14909
- type index$v_GenericOperation<O> = GenericOperation<O>;
14910
- type index$v_GetVariableType<T extends string> = GetVariableType<T>;
14911
- declare const index$v_Gql: typeof Gql;
14912
- type index$v_GraphQLError = GraphQLError;
14913
- declare const index$v_GraphQLError: typeof GraphQLError;
14914
- type index$v_GraphQLResponse = GraphQLResponse;
14915
- type index$v_GraphQLTypes = GraphQLTypes;
14916
- type index$v_GraphQLVariableType = GraphQLVariableType;
14917
- declare const index$v_HEADERS: typeof HEADERS;
14918
- declare const index$v_HOST: typeof HOST;
14919
- type index$v_InputType<SRC, DST, SCLR extends ScalarDefinition = {}> = InputType<SRC, DST, SCLR>;
14920
- type index$v_InputValueType = InputValueType;
14921
- declare const index$v_InternalArgsBuilt: typeof InternalArgsBuilt;
14922
- declare const index$v_InternalsBuildQuery: typeof InternalsBuildQuery;
14923
- type index$v_MapType<SRC, DST, SCLR extends ScalarDefinition> = MapType<SRC, DST, SCLR>;
14924
- type index$v_ModelTypes = ModelTypes;
14925
- type index$v_OperationOptions = OperationOptions;
14926
- type index$v_Operations = Operations;
14927
- type index$v_OrganizationType = OrganizationType;
14928
- declare const index$v_OrganizationType: typeof OrganizationType;
14929
- type index$v_PaymentDirection = PaymentDirection;
14930
- declare const index$v_PaymentDirection: typeof PaymentDirection;
14931
- type index$v_PaymentStatus = PaymentStatus;
14932
- declare const index$v_PaymentStatus: typeof PaymentStatus;
14933
- type index$v_PaymentType = PaymentType;
14934
- declare const index$v_PaymentType: typeof PaymentType;
14935
- type index$v_PlainType = PlainType;
14936
- declare const index$v_PrepareScalarPaths: typeof PrepareScalarPaths;
14937
- declare const index$v_ResolveFromPath: typeof ResolveFromPath;
14938
- type index$v_ResolverInputTypes = ResolverInputTypes;
14939
- type index$v_ResolverType<F> = ResolverType<F>;
14940
- type index$v_ReturnTypesType = ReturnTypesType;
14941
- declare const index$v_SEPARATOR: typeof SEPARATOR;
14942
- declare const index$v_START_VAR_NAME: typeof START_VAR_NAME;
14943
- type index$v_ScalarCoder = ScalarCoder;
14944
- type index$v_ScalarCoders = ScalarCoders;
14945
- type index$v_ScalarDefinition = ScalarDefinition;
14946
- type index$v_ScalarResolver = ScalarResolver;
14947
- type index$v_SelectionFunction<V> = SelectionFunction<V>;
14948
- declare const index$v_Selector: typeof Selector;
14949
- declare const index$v_Subscription: typeof Subscription;
14950
- type index$v_SubscriptionFunction = SubscriptionFunction;
14951
- declare const index$v_SubscriptionThunder: typeof SubscriptionThunder;
14952
- type index$v_SubscriptionToGraphQL<Z, T, SCLR extends ScalarDefinition> = SubscriptionToGraphQL<Z, T, SCLR>;
14953
- type index$v_SystemStatus = SystemStatus;
14954
- declare const index$v_SystemStatus: typeof SystemStatus;
14955
- declare const index$v_Thunder: typeof Thunder;
14956
- type index$v_ThunderGraphQLOptions<SCLR extends ScalarDefinition> = ThunderGraphQLOptions<SCLR>;
14957
- declare const index$v_TypeFromSelector: typeof TypeFromSelector;
14958
- type index$v_UnwrapPromise<T> = UnwrapPromise<T>;
14959
- type index$v_UserStatus = UserStatus;
14960
- declare const index$v_UserStatus: typeof UserStatus;
14961
- type index$v_VType = VType;
14962
- type index$v_ValueTypes = ValueTypes;
14963
- type index$v_Variable<T extends GraphQLVariableType, Name extends string> = Variable<T, Name>;
14964
- type index$v_VariableDefinition = VariableDefinition;
14965
- type index$v_WithOptionalNullables<T> = WithOptionalNullables<T>;
14966
- type index$v_WithTypeNameValue<T> = WithTypeNameValue<T>;
14967
- declare const index$v_Zeus: typeof Zeus;
14968
- type index$v_ZeusArgsType = ZeusArgsType;
14969
- type index$v_ZeusHook<T extends (...args: any[]) => Record<string, (...args: any[]) => Promise<any>>, N extends keyof ReturnType<T>> = ZeusHook<T, N>;
14970
- declare const index$v_ZeusScalars: typeof ZeusScalars;
14971
- declare const index$v_ZeusSelect: typeof ZeusSelect;
14972
- type index$v_ZeusState<T extends (...args: any[]) => Promise<any>> = ZeusState<T>;
14973
- declare const index$v_apiFetch: typeof apiFetch;
14974
- declare const index$v_apiSubscription: typeof apiSubscription;
14975
- type index$v_chainOptions = chainOptions;
14976
- declare const index$v_decodeScalarsInResponse: typeof decodeScalarsInResponse;
14977
- type index$v_fetchOptions = fetchOptions;
14978
- declare const index$v_fields: typeof fields;
14979
- declare const index$v_purifyGraphQLKey: typeof purifyGraphQLKey;
14980
- declare const index$v_resolverFor: typeof resolverFor;
14981
- declare const index$v_traverseResponse: typeof traverseResponse;
14982
- declare namespace index$v {
14983
- export { index$v_$ as $, index$v_AccountType as AccountType, type index$v_AliasType as AliasType, type index$v_AllTypesPropsType as AllTypesPropsType, index$v_Chain as Chain, index$v_Country as Country, index$v_ExtendedMeetStatus as ExtendedMeetStatus, type index$v_ExtractVariables as ExtractVariables, type index$v_ExtractVariablesDeep as ExtractVariablesDeep, type index$v_FetchFunction as FetchFunction, type index$v_FromSelector as FromSelector, index$v_GRAPHQL_TYPE_SEPARATOR as GRAPHQL_TYPE_SEPARATOR, type index$v_GenericOperation as GenericOperation, type index$v_GetVariableType as GetVariableType, index$v_Gql as Gql, index$v_GraphQLError as GraphQLError, type index$v_GraphQLResponse as GraphQLResponse, type index$v_GraphQLTypes as GraphQLTypes, type index$v_GraphQLVariableType as GraphQLVariableType, index$v_HEADERS as HEADERS, index$v_HOST as HOST, type index$v_InputType as InputType, type index$v_InputValueType as InputValueType, index$v_InternalArgsBuilt as InternalArgsBuilt, index$v_InternalsBuildQuery as InternalsBuildQuery, type index$v_MapType as MapType, type index$v_ModelTypes as ModelTypes, type index$v_OperationOptions as OperationOptions, type index$v_Operations as Operations, index$v_OrganizationType as OrganizationType, index$v_PaymentDirection as PaymentDirection, index$v_PaymentStatus as PaymentStatus, index$v_PaymentType as PaymentType, type index$v_PlainType as PlainType, index$v_PrepareScalarPaths as PrepareScalarPaths, index$v_ResolveFromPath as ResolveFromPath, type index$v_ResolverInputTypes as ResolverInputTypes, type index$v_ResolverType as ResolverType, type index$v_ReturnTypesType as ReturnTypesType, index$v_SEPARATOR as SEPARATOR, index$v_START_VAR_NAME as START_VAR_NAME, type index$v_ScalarCoder as ScalarCoder, type index$v_ScalarCoders as ScalarCoders, type index$v_ScalarDefinition as ScalarDefinition, type index$v_ScalarResolver as ScalarResolver, type index$v_SelectionFunction as SelectionFunction, index$v_Selector as Selector, index$v_Subscription as Subscription, type index$v_SubscriptionFunction as SubscriptionFunction, index$v_SubscriptionThunder as SubscriptionThunder, type index$v_SubscriptionToGraphQL as SubscriptionToGraphQL, index$v_SystemStatus as SystemStatus, index$v_Thunder as Thunder, type index$v_ThunderGraphQLOptions as ThunderGraphQLOptions, index$v_TypeFromSelector as TypeFromSelector, type index$v_UnwrapPromise as UnwrapPromise, index$v_UserStatus as UserStatus, type index$v_VType as VType, type index$v_ValueTypes as ValueTypes, type index$v_Variable as Variable, type index$v_VariableDefinition as VariableDefinition, type index$v_WithOptionalNullables as WithOptionalNullables, type index$v_WithTypeNameValue as WithTypeNameValue, index$v_Zeus as Zeus, type index$v_ZeusArgsType as ZeusArgsType, type index$v_ZeusHook as ZeusHook, index$v_ZeusScalars as ZeusScalars, index$v_ZeusSelect as ZeusSelect, type index$v_ZeusState as ZeusState, index$v_apiFetch as apiFetch, index$v_apiSubscription as apiSubscription, type index$v_chainOptions as chainOptions, index$v_decodeScalarsInResponse as decodeScalarsInResponse, type index$v_fetchOptions as fetchOptions, index$v_fields as fields, index$v_purifyGraphQLKey as purifyGraphQLKey, index$v_resolverFor as resolverFor, index$v_traverseResponse as traverseResponse };
15184
+ declare const index$w_$: typeof $;
15185
+ type index$w_AccountType = AccountType;
15186
+ declare const index$w_AccountType: typeof AccountType;
15187
+ type index$w_AliasType<T> = AliasType<T>;
15188
+ type index$w_AllTypesPropsType = AllTypesPropsType;
15189
+ declare const index$w_Chain: typeof Chain;
15190
+ type index$w_Country = Country;
15191
+ declare const index$w_Country: typeof Country;
15192
+ type index$w_ExtendedMeetStatus = ExtendedMeetStatus;
15193
+ declare const index$w_ExtendedMeetStatus: typeof ExtendedMeetStatus;
15194
+ type index$w_ExtractVariables<Query> = ExtractVariables<Query>;
15195
+ type index$w_ExtractVariablesDeep<Query> = ExtractVariablesDeep<Query>;
15196
+ type index$w_FetchFunction = FetchFunction;
15197
+ type index$w_FromSelector<SELECTOR, NAME extends keyof GraphQLTypes, SCLR extends ScalarDefinition = {}> = FromSelector<SELECTOR, NAME, SCLR>;
15198
+ declare const index$w_GRAPHQL_TYPE_SEPARATOR: typeof GRAPHQL_TYPE_SEPARATOR;
15199
+ type index$w_GenericOperation<O> = GenericOperation<O>;
15200
+ type index$w_GetVariableType<T extends string> = GetVariableType<T>;
15201
+ declare const index$w_Gql: typeof Gql;
15202
+ type index$w_GraphQLError = GraphQLError;
15203
+ declare const index$w_GraphQLError: typeof GraphQLError;
15204
+ type index$w_GraphQLResponse = GraphQLResponse;
15205
+ type index$w_GraphQLTypes = GraphQLTypes;
15206
+ type index$w_GraphQLVariableType = GraphQLVariableType;
15207
+ declare const index$w_HEADERS: typeof HEADERS;
15208
+ declare const index$w_HOST: typeof HOST;
15209
+ type index$w_InputType<SRC, DST, SCLR extends ScalarDefinition = {}> = InputType<SRC, DST, SCLR>;
15210
+ type index$w_InputValueType = InputValueType;
15211
+ declare const index$w_InternalArgsBuilt: typeof InternalArgsBuilt;
15212
+ declare const index$w_InternalsBuildQuery: typeof InternalsBuildQuery;
15213
+ type index$w_MapType<SRC, DST, SCLR extends ScalarDefinition> = MapType<SRC, DST, SCLR>;
15214
+ type index$w_ModelTypes = ModelTypes;
15215
+ type index$w_OperationOptions = OperationOptions;
15216
+ type index$w_Operations = Operations;
15217
+ type index$w_OrganizationType = OrganizationType;
15218
+ declare const index$w_OrganizationType: typeof OrganizationType;
15219
+ type index$w_PaymentDirection = PaymentDirection;
15220
+ declare const index$w_PaymentDirection: typeof PaymentDirection;
15221
+ type index$w_PaymentStatus = PaymentStatus;
15222
+ declare const index$w_PaymentStatus: typeof PaymentStatus;
15223
+ type index$w_PaymentType = PaymentType;
15224
+ declare const index$w_PaymentType: typeof PaymentType;
15225
+ type index$w_PlainType = PlainType;
15226
+ declare const index$w_PrepareScalarPaths: typeof PrepareScalarPaths;
15227
+ declare const index$w_ResolveFromPath: typeof ResolveFromPath;
15228
+ type index$w_ResolverInputTypes = ResolverInputTypes;
15229
+ type index$w_ResolverType<F> = ResolverType<F>;
15230
+ type index$w_ReturnTypesType = ReturnTypesType;
15231
+ declare const index$w_SEPARATOR: typeof SEPARATOR;
15232
+ declare const index$w_START_VAR_NAME: typeof START_VAR_NAME;
15233
+ type index$w_ScalarCoder = ScalarCoder;
15234
+ type index$w_ScalarCoders = ScalarCoders;
15235
+ type index$w_ScalarDefinition = ScalarDefinition;
15236
+ type index$w_ScalarResolver = ScalarResolver;
15237
+ type index$w_SelectionFunction<V> = SelectionFunction<V>;
15238
+ declare const index$w_Selector: typeof Selector;
15239
+ declare const index$w_Subscription: typeof Subscription;
15240
+ type index$w_SubscriptionFunction = SubscriptionFunction;
15241
+ declare const index$w_SubscriptionThunder: typeof SubscriptionThunder;
15242
+ type index$w_SubscriptionToGraphQL<Z, T, SCLR extends ScalarDefinition> = SubscriptionToGraphQL<Z, T, SCLR>;
15243
+ type index$w_SystemStatus = SystemStatus;
15244
+ declare const index$w_SystemStatus: typeof SystemStatus;
15245
+ declare const index$w_Thunder: typeof Thunder;
15246
+ type index$w_ThunderGraphQLOptions<SCLR extends ScalarDefinition> = ThunderGraphQLOptions<SCLR>;
15247
+ declare const index$w_TypeFromSelector: typeof TypeFromSelector;
15248
+ type index$w_UnwrapPromise<T> = UnwrapPromise<T>;
15249
+ type index$w_UserStatus = UserStatus;
15250
+ declare const index$w_UserStatus: typeof UserStatus;
15251
+ type index$w_VType = VType;
15252
+ type index$w_ValueTypes = ValueTypes;
15253
+ type index$w_Variable<T extends GraphQLVariableType, Name extends string> = Variable<T, Name>;
15254
+ type index$w_VariableDefinition = VariableDefinition;
15255
+ type index$w_WithOptionalNullables<T> = WithOptionalNullables<T>;
15256
+ type index$w_WithTypeNameValue<T> = WithTypeNameValue<T>;
15257
+ declare const index$w_Zeus: typeof Zeus;
15258
+ type index$w_ZeusArgsType = ZeusArgsType;
15259
+ type index$w_ZeusHook<T extends (...args: any[]) => Record<string, (...args: any[]) => Promise<any>>, N extends keyof ReturnType<T>> = ZeusHook<T, N>;
15260
+ declare const index$w_ZeusScalars: typeof ZeusScalars;
15261
+ declare const index$w_ZeusSelect: typeof ZeusSelect;
15262
+ type index$w_ZeusState<T extends (...args: any[]) => Promise<any>> = ZeusState<T>;
15263
+ declare const index$w_apiFetch: typeof apiFetch;
15264
+ declare const index$w_apiSubscription: typeof apiSubscription;
15265
+ type index$w_chainOptions = chainOptions;
15266
+ declare const index$w_decodeScalarsInResponse: typeof decodeScalarsInResponse;
15267
+ type index$w_fetchOptions = fetchOptions;
15268
+ declare const index$w_fields: typeof fields;
15269
+ declare const index$w_purifyGraphQLKey: typeof purifyGraphQLKey;
15270
+ declare const index$w_resolverFor: typeof resolverFor;
15271
+ declare const index$w_traverseResponse: typeof traverseResponse;
15272
+ declare namespace index$w {
15273
+ export { index$w_$ as $, index$w_AccountType as AccountType, type index$w_AliasType as AliasType, type index$w_AllTypesPropsType as AllTypesPropsType, index$w_Chain as Chain, index$w_Country as Country, index$w_ExtendedMeetStatus as ExtendedMeetStatus, type index$w_ExtractVariables as ExtractVariables, type index$w_ExtractVariablesDeep as ExtractVariablesDeep, type index$w_FetchFunction as FetchFunction, type index$w_FromSelector as FromSelector, index$w_GRAPHQL_TYPE_SEPARATOR as GRAPHQL_TYPE_SEPARATOR, type index$w_GenericOperation as GenericOperation, type index$w_GetVariableType as GetVariableType, index$w_Gql as Gql, index$w_GraphQLError as GraphQLError, type index$w_GraphQLResponse as GraphQLResponse, type index$w_GraphQLTypes as GraphQLTypes, type index$w_GraphQLVariableType as GraphQLVariableType, index$w_HEADERS as HEADERS, index$w_HOST as HOST, type index$w_InputType as InputType, type index$w_InputValueType as InputValueType, index$w_InternalArgsBuilt as InternalArgsBuilt, index$w_InternalsBuildQuery as InternalsBuildQuery, type index$w_MapType as MapType, type index$w_ModelTypes as ModelTypes, type index$w_OperationOptions as OperationOptions, type index$w_Operations as Operations, index$w_OrganizationType as OrganizationType, index$w_PaymentDirection as PaymentDirection, index$w_PaymentStatus as PaymentStatus, index$w_PaymentType as PaymentType, type index$w_PlainType as PlainType, index$w_PrepareScalarPaths as PrepareScalarPaths, index$w_ResolveFromPath as ResolveFromPath, type index$w_ResolverInputTypes as ResolverInputTypes, type index$w_ResolverType as ResolverType, type index$w_ReturnTypesType as ReturnTypesType, index$w_SEPARATOR as SEPARATOR, index$w_START_VAR_NAME as START_VAR_NAME, type index$w_ScalarCoder as ScalarCoder, type index$w_ScalarCoders as ScalarCoders, type index$w_ScalarDefinition as ScalarDefinition, type index$w_ScalarResolver as ScalarResolver, type index$w_SelectionFunction as SelectionFunction, index$w_Selector as Selector, index$w_Subscription as Subscription, type index$w_SubscriptionFunction as SubscriptionFunction, index$w_SubscriptionThunder as SubscriptionThunder, type index$w_SubscriptionToGraphQL as SubscriptionToGraphQL, index$w_SystemStatus as SystemStatus, index$w_Thunder as Thunder, type index$w_ThunderGraphQLOptions as ThunderGraphQLOptions, index$w_TypeFromSelector as TypeFromSelector, type index$w_UnwrapPromise as UnwrapPromise, index$w_UserStatus as UserStatus, type index$w_VType as VType, type index$w_ValueTypes as ValueTypes, type index$w_Variable as Variable, type index$w_VariableDefinition as VariableDefinition, type index$w_WithOptionalNullables as WithOptionalNullables, type index$w_WithTypeNameValue as WithTypeNameValue, index$w_Zeus as Zeus, type index$w_ZeusArgsType as ZeusArgsType, type index$w_ZeusHook as ZeusHook, index$w_ZeusScalars as ZeusScalars, index$w_ZeusSelect as ZeusSelect, type index$w_ZeusState as ZeusState, index$w_apiFetch as apiFetch, index$w_apiSubscription as apiSubscription, type index$w_chainOptions as chainOptions, index$w_decodeScalarsInResponse as decodeScalarsInResponse, type index$w_fetchOptions as fetchOptions, index$w_fields as fields, index$w_purifyGraphQLKey as purifyGraphQLKey, index$w_resolverFor as resolverFor, index$w_traverseResponse as traverseResponse };
14984
15274
  }
14985
15275
 
14986
15276
  interface ClientConnectionOptions {
@@ -14992,9 +15282,9 @@ interface ClientConnectionOptions {
14992
15282
  username?: string;
14993
15283
  }
14994
15284
 
14995
- type index$u_ClientConnectionOptions = ClientConnectionOptions;
14996
- declare namespace index$u {
14997
- export type { index$u_ClientConnectionOptions as ClientConnectionOptions };
15285
+ type index$v_ClientConnectionOptions = ClientConnectionOptions;
15286
+ declare namespace index$v {
15287
+ export type { index$v_ClientConnectionOptions as ClientConnectionOptions };
14998
15288
  }
14999
15289
 
15000
15290
  /**
@@ -15248,15 +15538,15 @@ type ISignedDocumentInput = ModelTypes['SignedDigitalDocumentInput'];
15248
15538
  */
15249
15539
  type ISignedChainDocument = Cooperative.Document.IChainDocument2;
15250
15540
 
15251
- type index$t_IGeneratedDocument<T = any> = IGeneratedDocument<T>;
15252
- type index$t_IMetaDocument = IMetaDocument;
15253
- type index$t_ISignatureInfo = ISignatureInfo;
15254
- type index$t_ISignatureInfoInput = ISignatureInfoInput;
15255
- type index$t_ISignedChainDocument = ISignedChainDocument;
15256
- type index$t_ISignedDocument = ISignedDocument;
15257
- type index$t_ISignedDocumentInput = ISignedDocumentInput;
15258
- declare namespace index$t {
15259
- export type { index$t_IGeneratedDocument as IGeneratedDocument, index$t_IMetaDocument as IMetaDocument, index$t_ISignatureInfo as ISignatureInfo, index$t_ISignatureInfoInput as ISignatureInfoInput, index$t_ISignedChainDocument as ISignedChainDocument, index$t_ISignedDocument as ISignedDocument, index$t_ISignedDocumentInput as ISignedDocumentInput };
15541
+ type index$u_IGeneratedDocument<T = any> = IGeneratedDocument<T>;
15542
+ type index$u_IMetaDocument = IMetaDocument;
15543
+ type index$u_ISignatureInfo = ISignatureInfo;
15544
+ type index$u_ISignatureInfoInput = ISignatureInfoInput;
15545
+ type index$u_ISignedChainDocument = ISignedChainDocument;
15546
+ type index$u_ISignedDocument = ISignedDocument;
15547
+ type index$u_ISignedDocumentInput = ISignedDocumentInput;
15548
+ declare namespace index$u {
15549
+ export type { index$u_IGeneratedDocument as IGeneratedDocument, index$u_IMetaDocument as IMetaDocument, index$u_ISignatureInfo as ISignatureInfo, index$u_ISignatureInfoInput as ISignatureInfoInput, index$u_ISignedChainDocument as ISignedChainDocument, index$u_ISignedDocument as ISignedDocument, index$u_ISignedDocumentInput as ISignedDocumentInput };
15260
15550
  }
15261
15551
 
15262
15552
  /**
@@ -15438,7 +15728,7 @@ declare namespace Classes {
15438
15728
  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 };
15439
15729
  }
15440
15730
 
15441
- declare const name$1u = "registerAccount";
15731
+ declare const name$1w = "registerAccount";
15442
15732
  declare const mutation$1f: {
15443
15733
  registerAccount: [{
15444
15734
  data: Variable<"RegisterAccountInput!", "data">;
@@ -15635,58 +15925,58 @@ declare const mutation$1f: {
15635
15925
  };
15636
15926
  }];
15637
15927
  };
15638
- interface IInput$1v {
15928
+ interface IInput$1x {
15639
15929
  /**
15640
15930
  * @private
15641
15931
  */
15642
15932
  [key: string]: unknown;
15643
15933
  data: ModelTypes['RegisterAccountInput'];
15644
15934
  }
15645
- type IOutput$1v = InputType<GraphQLTypes['Mutation'], typeof mutation$1f>;
15935
+ type IOutput$1x = InputType<GraphQLTypes['Mutation'], typeof mutation$1f>;
15646
15936
 
15647
15937
  declare namespace registerAccount {
15648
- export { type IInput$1v as IInput, type IOutput$1v as IOutput, mutation$1f as mutation, name$1u as name };
15938
+ export { type IInput$1x as IInput, type IOutput$1x as IOutput, mutation$1f as mutation, name$1w as name };
15649
15939
  }
15650
15940
 
15651
- declare const name$1t = "resetKey";
15941
+ declare const name$1v = "resetKey";
15652
15942
  declare const mutation$1e: {
15653
15943
  resetKey: [{
15654
15944
  data: Variable<"ResetKeyInput!", "data">;
15655
15945
  }, true];
15656
15946
  };
15657
- interface IInput$1u {
15947
+ interface IInput$1w {
15658
15948
  /**
15659
15949
  * @private
15660
15950
  */
15661
15951
  [key: string]: unknown;
15662
15952
  data: ModelTypes['ResetKeyInput'];
15663
15953
  }
15664
- type IOutput$1u = InputType<GraphQLTypes['Mutation'], typeof mutation$1e>;
15954
+ type IOutput$1w = InputType<GraphQLTypes['Mutation'], typeof mutation$1e>;
15665
15955
 
15666
15956
  declare namespace resetKey {
15667
- export { type IInput$1u as IInput, type IOutput$1u as IOutput, mutation$1e as mutation, name$1t as name };
15957
+ export { type IInput$1w as IInput, type IOutput$1w as IOutput, mutation$1e as mutation, name$1v as name };
15668
15958
  }
15669
15959
 
15670
- declare const name$1s = "startResetKey";
15960
+ declare const name$1u = "startResetKey";
15671
15961
  declare const mutation$1d: {
15672
15962
  startResetKey: [{
15673
15963
  data: Variable<"StartResetKeyInput!", "data">;
15674
15964
  }, true];
15675
15965
  };
15676
- interface IInput$1t {
15966
+ interface IInput$1v {
15677
15967
  /**
15678
15968
  * @private
15679
15969
  */
15680
15970
  [key: string]: unknown;
15681
15971
  data: ModelTypes['StartResetKeyInput'];
15682
15972
  }
15683
- type IOutput$1t = InputType<GraphQLTypes['Mutation'], typeof mutation$1d>;
15973
+ type IOutput$1v = InputType<GraphQLTypes['Mutation'], typeof mutation$1d>;
15684
15974
 
15685
15975
  declare namespace startResetKey {
15686
- export { type IInput$1t as IInput, type IOutput$1t as IOutput, mutation$1d as mutation, name$1s as name };
15976
+ export { type IInput$1v as IInput, type IOutput$1v as IOutput, mutation$1d as mutation, name$1u as name };
15687
15977
  }
15688
15978
 
15689
- declare const name$1r = "updateAccount";
15979
+ declare const name$1t = "updateAccount";
15690
15980
  declare const mutation$1c: {
15691
15981
  updateAccount: [{
15692
15982
  data: Variable<"UpdateAccountInput!", "data">;
@@ -15871,26 +16161,26 @@ declare const mutation$1c: {
15871
16161
  };
15872
16162
  }];
15873
16163
  };
15874
- interface IInput$1s {
16164
+ interface IInput$1u {
15875
16165
  /**
15876
16166
  * @private
15877
16167
  */
15878
16168
  [key: string]: unknown;
15879
16169
  data: ModelTypes['UpdateAccountInput'];
15880
16170
  }
15881
- type IOutput$1s = InputType<GraphQLTypes['Mutation'], typeof mutation$1c>;
16171
+ type IOutput$1u = InputType<GraphQLTypes['Mutation'], typeof mutation$1c>;
15882
16172
 
15883
16173
  declare namespace updateAccount {
15884
- export { type IInput$1s as IInput, type IOutput$1s as IOutput, mutation$1c as mutation, name$1r as name };
16174
+ export { type IInput$1u as IInput, type IOutput$1u as IOutput, mutation$1c as mutation, name$1t as name };
15885
16175
  }
15886
16176
 
15887
16177
  /** Зарегистрировать аккаунт пользователя в системе */
15888
16178
 
15889
- declare namespace index$s {
16179
+ declare namespace index$t {
15890
16180
  export { registerAccount as RegisterAccount, resetKey as ResetKey, startResetKey as StartResetKey, updateAccount as UpdateAccount };
15891
16181
  }
15892
16182
 
15893
- declare const name$1q = "generatePrivacyAgreement";
16183
+ declare const name$1s = "generatePrivacyAgreement";
15894
16184
  declare const mutation$1b: {
15895
16185
  generatePrivacyAgreement: [{
15896
16186
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -15903,7 +16193,7 @@ declare const mutation$1b: {
15903
16193
  meta: boolean;
15904
16194
  }];
15905
16195
  };
15906
- interface IInput$1r {
16196
+ interface IInput$1t {
15907
16197
  /**
15908
16198
  * @private
15909
16199
  */
@@ -15911,13 +16201,13 @@ interface IInput$1r {
15911
16201
  data: ModelTypes['GenerateDocumentInput'];
15912
16202
  options?: ModelTypes['GenerateDocumentOptionsInput'];
15913
16203
  }
15914
- type IOutput$1r = InputType<GraphQLTypes['Mutation'], typeof mutation$1b>;
16204
+ type IOutput$1t = InputType<GraphQLTypes['Mutation'], typeof mutation$1b>;
15915
16205
 
15916
16206
  declare namespace generatePrivacyAgreement {
15917
- export { type IInput$1r as IInput, type IOutput$1r as IOutput, mutation$1b as mutation, name$1q as name };
16207
+ export { type IInput$1t as IInput, type IOutput$1t as IOutput, mutation$1b as mutation, name$1s as name };
15918
16208
  }
15919
16209
 
15920
- declare const name$1p = "generateSignatureAgreement";
16210
+ declare const name$1r = "generateSignatureAgreement";
15921
16211
  declare const mutation$1a: {
15922
16212
  generateSignatureAgreement: [{
15923
16213
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -15930,7 +16220,7 @@ declare const mutation$1a: {
15930
16220
  meta: boolean;
15931
16221
  }];
15932
16222
  };
15933
- interface IInput$1q {
16223
+ interface IInput$1s {
15934
16224
  /**
15935
16225
  * @private
15936
16226
  */
@@ -15938,13 +16228,13 @@ interface IInput$1q {
15938
16228
  data: ModelTypes['GenerateDocumentInput'];
15939
16229
  options?: ModelTypes['GenerateDocumentOptionsInput'];
15940
16230
  }
15941
- type IOutput$1q = InputType<GraphQLTypes['Mutation'], typeof mutation$1a>;
16231
+ type IOutput$1s = InputType<GraphQLTypes['Mutation'], typeof mutation$1a>;
15942
16232
 
15943
16233
  declare namespace generateSignatureAgreement {
15944
- export { type IInput$1q as IInput, type IOutput$1q as IOutput, mutation$1a as mutation, name$1p as name };
16234
+ export { type IInput$1s as IInput, type IOutput$1s as IOutput, mutation$1a as mutation, name$1r as name };
15945
16235
  }
15946
16236
 
15947
- declare const name$1o = "generateWalletAgreement";
16237
+ declare const name$1q = "generateWalletAgreement";
15948
16238
  declare const mutation$19: {
15949
16239
  generateWalletAgreement: [{
15950
16240
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -15957,7 +16247,7 @@ declare const mutation$19: {
15957
16247
  meta: boolean;
15958
16248
  }];
15959
16249
  };
15960
- interface IInput$1p {
16250
+ interface IInput$1r {
15961
16251
  /**
15962
16252
  * @private
15963
16253
  */
@@ -15965,13 +16255,13 @@ interface IInput$1p {
15965
16255
  data: ModelTypes['GenerateDocumentInput'];
15966
16256
  options?: ModelTypes['GenerateDocumentOptionsInput'];
15967
16257
  }
15968
- type IOutput$1p = InputType<GraphQLTypes['Mutation'], typeof mutation$19>;
16258
+ type IOutput$1r = InputType<GraphQLTypes['Mutation'], typeof mutation$19>;
15969
16259
 
15970
16260
  declare namespace generateWalletAgreement {
15971
- export { type IInput$1p as IInput, type IOutput$1p as IOutput, mutation$19 as mutation, name$1o as name };
16261
+ export { type IInput$1r as IInput, type IOutput$1r as IOutput, mutation$19 as mutation, name$1q as name };
15972
16262
  }
15973
16263
 
15974
- declare const name$1n = "generateUserAgreement";
16264
+ declare const name$1p = "generateUserAgreement";
15975
16265
  declare const mutation$18: {
15976
16266
  generateUserAgreement: [{
15977
16267
  data: Variable<"GenerateDocumentInput!", "data">;
@@ -15984,7 +16274,7 @@ declare const mutation$18: {
15984
16274
  meta: boolean;
15985
16275
  }];
15986
16276
  };
15987
- interface IInput$1o {
16277
+ interface IInput$1q {
15988
16278
  /**
15989
16279
  * @private
15990
16280
  */
@@ -15992,19 +16282,19 @@ interface IInput$1o {
15992
16282
  data: ModelTypes['GenerateDocumentInput'];
15993
16283
  options?: ModelTypes['GenerateDocumentOptionsInput'];
15994
16284
  }
15995
- type IOutput$1o = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
16285
+ type IOutput$1q = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
15996
16286
 
15997
16287
  declare namespace generateUserAgreement {
15998
- export { type IInput$1o as IInput, type IOutput$1o as IOutput, mutation$18 as mutation, name$1n as name };
16288
+ export { type IInput$1q as IInput, type IOutput$1q as IOutput, mutation$18 as mutation, name$1p as name };
15999
16289
  }
16000
16290
 
16001
16291
  /** Сгенерировать документ согласия с политикой конфиденциальности. */
16002
16292
 
16003
- declare namespace index$r {
16293
+ declare namespace index$s {
16004
16294
  export { generatePrivacyAgreement as GeneratePrivacyAgreement, generateSignatureAgreement as GenerateSignatureAgreement, generateUserAgreement as GenerateUserAgreement, generateWalletAgreement as GenerateWalletAgreement };
16005
16295
  }
16006
16296
 
16007
- declare const name$1m = "refresh";
16297
+ declare const name$1o = "refresh";
16008
16298
  declare const mutation$17: {
16009
16299
  refresh: [{
16010
16300
  data: Variable<"RefreshInput!", "data">;
@@ -16201,39 +16491,39 @@ declare const mutation$17: {
16201
16491
  };
16202
16492
  }];
16203
16493
  };
16204
- interface IInput$1n {
16494
+ interface IInput$1p {
16205
16495
  /**
16206
16496
  * @private
16207
16497
  */
16208
16498
  [key: string]: unknown;
16209
16499
  data: ModelTypes['RefreshInput'];
16210
16500
  }
16211
- type IOutput$1n = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
16501
+ type IOutput$1p = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
16212
16502
 
16213
16503
  declare namespace refresh {
16214
- export { type IInput$1n as IInput, type IOutput$1n as IOutput, mutation$17 as mutation, name$1m as name };
16504
+ export { type IInput$1p as IInput, type IOutput$1p as IOutput, mutation$17 as mutation, name$1o as name };
16215
16505
  }
16216
16506
 
16217
- declare const name$1l = "logout";
16507
+ declare const name$1n = "logout";
16218
16508
  declare const mutation$16: {
16219
16509
  logout: [{
16220
16510
  data: Variable<"LogoutInput!", "data">;
16221
16511
  }, true];
16222
16512
  };
16223
- interface IInput$1m {
16513
+ interface IInput$1o {
16224
16514
  /**
16225
16515
  * @private
16226
16516
  */
16227
16517
  [key: string]: unknown;
16228
16518
  data: ModelTypes['LogoutInput'];
16229
16519
  }
16230
- type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
16520
+ type IOutput$1o = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
16231
16521
 
16232
16522
  declare namespace logout {
16233
- export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$16 as mutation, name$1l as name };
16523
+ export { type IInput$1o as IInput, type IOutput$1o as IOutput, mutation$16 as mutation, name$1n as name };
16234
16524
  }
16235
16525
 
16236
- declare const name$1k = "login";
16526
+ declare const name$1m = "login";
16237
16527
  declare const mutation$15: {
16238
16528
  login: [{
16239
16529
  data: Variable<"LoginInput!", "data">;
@@ -16430,26 +16720,26 @@ declare const mutation$15: {
16430
16720
  };
16431
16721
  }];
16432
16722
  };
16433
- interface IInput$1l {
16723
+ interface IInput$1n {
16434
16724
  /**
16435
16725
  * @private
16436
16726
  */
16437
16727
  [key: string]: unknown;
16438
16728
  data: ModelTypes['LoginInput'];
16439
16729
  }
16440
- type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
16730
+ type IOutput$1n = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
16441
16731
 
16442
16732
  declare namespace login {
16443
- export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$15 as mutation, name$1k as name };
16733
+ export { type IInput$1n as IInput, type IOutput$1n as IOutput, mutation$15 as mutation, name$1m as name };
16444
16734
  }
16445
16735
 
16446
16736
  /** Обновить токен доступа аккаунта */
16447
16737
 
16448
- declare namespace index$q {
16738
+ declare namespace index$r {
16449
16739
  export { login as Login, logout as Logout, refresh as Refresh };
16450
16740
  }
16451
16741
 
16452
- declare const name$1j = "addTrustedAccount";
16742
+ declare const name$1l = "addTrustedAccount";
16453
16743
  declare const mutation$14: {
16454
16744
  addTrustedAccount: [{
16455
16745
  data: Variable<"AddTrustedAccountInput!", "data">;
@@ -16532,20 +16822,20 @@ declare const mutation$14: {
16532
16822
  type: boolean;
16533
16823
  }];
16534
16824
  };
16535
- interface IInput$1k {
16825
+ interface IInput$1m {
16536
16826
  /**
16537
16827
  * @private
16538
16828
  */
16539
16829
  [key: string]: unknown;
16540
16830
  data: ModelTypes['AddTrustedAccountInput'];
16541
16831
  }
16542
- type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
16832
+ type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
16543
16833
 
16544
16834
  declare namespace addTrustedAccount {
16545
- export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$14 as mutation, name$1j as name };
16835
+ export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$14 as mutation, name$1l as name };
16546
16836
  }
16547
16837
 
16548
- declare const name$1i = "createBranch";
16838
+ declare const name$1k = "createBranch";
16549
16839
  declare const mutation$13: {
16550
16840
  createBranch: [{
16551
16841
  data: Variable<"CreateBranchInput!", "data">;
@@ -16628,39 +16918,39 @@ declare const mutation$13: {
16628
16918
  type: boolean;
16629
16919
  }];
16630
16920
  };
16631
- interface IInput$1j {
16921
+ interface IInput$1l {
16632
16922
  /**
16633
16923
  * @private
16634
16924
  */
16635
16925
  [key: string]: unknown;
16636
16926
  data: ModelTypes['CreateBranchInput'];
16637
16927
  }
16638
- type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
16928
+ type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
16639
16929
 
16640
16930
  declare namespace createBranch {
16641
- export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$13 as mutation, name$1i as name };
16931
+ export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$13 as mutation, name$1k as name };
16642
16932
  }
16643
16933
 
16644
- declare const name$1h = "deleteBranch";
16934
+ declare const name$1j = "deleteBranch";
16645
16935
  declare const mutation$12: {
16646
16936
  deleteBranch: [{
16647
16937
  data: Variable<"DeleteBranchInput!", "data">;
16648
16938
  }, true];
16649
16939
  };
16650
- interface IInput$1i {
16940
+ interface IInput$1k {
16651
16941
  /**
16652
16942
  * @private
16653
16943
  */
16654
16944
  [key: string]: unknown;
16655
16945
  data: ModelTypes['DeleteBranchInput'];
16656
16946
  }
16657
- type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
16947
+ type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
16658
16948
 
16659
16949
  declare namespace deleteBranch {
16660
- export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$12 as mutation, name$1h as name };
16950
+ export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$12 as mutation, name$1j as name };
16661
16951
  }
16662
16952
 
16663
- declare const name$1g = "deleteTrustedAccount";
16953
+ declare const name$1i = "deleteTrustedAccount";
16664
16954
  declare const mutation$11: {
16665
16955
  deleteTrustedAccount: [{
16666
16956
  data: Variable<"DeleteTrustedAccountInput!", "data">;
@@ -16743,20 +17033,20 @@ declare const mutation$11: {
16743
17033
  type: boolean;
16744
17034
  }];
16745
17035
  };
16746
- interface IInput$1h {
17036
+ interface IInput$1j {
16747
17037
  /**
16748
17038
  * @private
16749
17039
  */
16750
17040
  [key: string]: unknown;
16751
17041
  data: ModelTypes['DeleteTrustedAccountInput'];
16752
17042
  }
16753
- type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
17043
+ type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
16754
17044
 
16755
17045
  declare namespace deleteTrustedAccount {
16756
- export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$11 as mutation, name$1g as name };
17046
+ export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$11 as mutation, name$1i as name };
16757
17047
  }
16758
17048
 
16759
- declare const name$1f = "editBranch";
17049
+ declare const name$1h = "editBranch";
16760
17050
  declare const mutation$10: {
16761
17051
  editBranch: [{
16762
17052
  data: Variable<"EditBranchInput!", "data">;
@@ -16839,20 +17129,20 @@ declare const mutation$10: {
16839
17129
  type: boolean;
16840
17130
  }];
16841
17131
  };
16842
- interface IInput$1g {
17132
+ interface IInput$1i {
16843
17133
  /**
16844
17134
  * @private
16845
17135
  */
16846
17136
  [key: string]: unknown;
16847
17137
  data: ModelTypes['EditBranchInput'];
16848
17138
  }
16849
- type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
17139
+ type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
16850
17140
 
16851
17141
  declare namespace editBranch {
16852
- export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$10 as mutation, name$1f as name };
17142
+ export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$10 as mutation, name$1h as name };
16853
17143
  }
16854
17144
 
16855
- declare const name$1e = "generateSelectBranchDocument";
17145
+ declare const name$1g = "generateSelectBranchDocument";
16856
17146
  declare const mutation$$: {
16857
17147
  generateSelectBranchDocument: [{
16858
17148
  data: Variable<"SelectBranchGenerateDocumentInput!", "data">;
@@ -16865,7 +17155,7 @@ declare const mutation$$: {
16865
17155
  meta: boolean;
16866
17156
  }];
16867
17157
  };
16868
- interface IInput$1f {
17158
+ interface IInput$1h {
16869
17159
  /**
16870
17160
  * @private
16871
17161
  */
@@ -16873,38 +17163,38 @@ interface IInput$1f {
16873
17163
  data: ModelTypes['SelectBranchGenerateDocumentInput'];
16874
17164
  options?: ModelTypes['GenerateDocumentOptionsInput'];
16875
17165
  }
16876
- type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
17166
+ type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
16877
17167
 
16878
17168
  declare namespace generateSelectBranchDocument {
16879
- export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$$ as mutation, name$1e as name };
17169
+ export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$$ as mutation, name$1g as name };
16880
17170
  }
16881
17171
 
16882
- declare const name$1d = "selectBranch";
17172
+ declare const name$1f = "selectBranch";
16883
17173
  declare const mutation$_: {
16884
17174
  selectBranch: [{
16885
17175
  data: Variable<"SelectBranchInput!", "data">;
16886
17176
  }, true];
16887
17177
  };
16888
- interface IInput$1e {
17178
+ interface IInput$1g {
16889
17179
  /**
16890
17180
  * @private
16891
17181
  */
16892
17182
  [key: string]: unknown;
16893
17183
  data: ModelTypes['SelectBranchInput'];
16894
17184
  }
16895
- type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
17185
+ type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
16896
17186
 
16897
17187
  declare namespace selectBranch {
16898
- export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$_ as mutation, name$1d as name };
17188
+ export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$_ as mutation, name$1f as name };
16899
17189
  }
16900
17190
 
16901
17191
  /** Добавить доверенное лицо кооперативного участка */
16902
17192
 
16903
- declare namespace index$p {
17193
+ declare namespace index$q {
16904
17194
  export { addTrustedAccount as AddTrustedAccount, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrustedAccount as DeleteTrustedAccount, editBranch as EditBranch, generateSelectBranchDocument as GenerateSelectBranchDocument, selectBranch as SelectBranch };
16905
17195
  }
16906
17196
 
16907
- declare const name$1c = "acceptChildOrder";
17197
+ declare const name$1e = "acceptChildOrder";
16908
17198
  declare const mutation$Z: {
16909
17199
  acceptChildOrder: [{
16910
17200
  data: Variable<"AcceptChildOrderInput!", "data">;
@@ -16920,20 +17210,20 @@ declare const mutation$Z: {
16920
17210
  transaction: boolean;
16921
17211
  }];
16922
17212
  };
16923
- interface IInput$1d {
17213
+ interface IInput$1f {
16924
17214
  /**
16925
17215
  * @private
16926
17216
  */
16927
17217
  [key: string]: unknown;
16928
17218
  data: ModelTypes['AcceptChildOrderInput'];
16929
17219
  }
16930
- type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
17220
+ type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
16931
17221
 
16932
17222
  declare namespace acceptChildOrder {
16933
- export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$Z as mutation, name$1c as name };
17223
+ export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$Z as mutation, name$1e as name };
16934
17224
  }
16935
17225
 
16936
- declare const name$1b = "cancelRequest";
17226
+ declare const name$1d = "cancelRequest";
16937
17227
  declare const mutation$Y: {
16938
17228
  cancelRequest: [{
16939
17229
  data: Variable<"CancelRequestInput!", "data">;
@@ -16949,20 +17239,20 @@ declare const mutation$Y: {
16949
17239
  transaction: boolean;
16950
17240
  }];
16951
17241
  };
16952
- interface IInput$1c {
17242
+ interface IInput$1e {
16953
17243
  /**
16954
17244
  * @private
16955
17245
  */
16956
17246
  [key: string]: unknown;
16957
17247
  data: ModelTypes['CancelRequestInput'];
16958
17248
  }
16959
- type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
17249
+ type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
16960
17250
 
16961
17251
  declare namespace cancelRequest {
16962
- export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$Y as mutation, name$1b as name };
17252
+ export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$Y as mutation, name$1d as name };
16963
17253
  }
16964
17254
 
16965
- declare const name$1a = "confirmReceiveOnRequest";
17255
+ declare const name$1c = "confirmReceiveOnRequest";
16966
17256
  declare const mutation$X: {
16967
17257
  confirmReceiveOnRequest: [{
16968
17258
  data: Variable<"ConfirmReceiveOnRequestInput!", "data">;
@@ -16978,20 +17268,20 @@ declare const mutation$X: {
16978
17268
  transaction: boolean;
16979
17269
  }];
16980
17270
  };
16981
- interface IInput$1b {
17271
+ interface IInput$1d {
16982
17272
  /**
16983
17273
  * @private
16984
17274
  */
16985
17275
  [key: string]: unknown;
16986
17276
  data: ModelTypes['ConfirmReceiveOnRequestInput'];
16987
17277
  }
16988
- type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
17278
+ type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
16989
17279
 
16990
17280
  declare namespace completeReceiveOnRequest {
16991
- export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$X as mutation, name$1a as name };
17281
+ export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$X as mutation, name$1c as name };
16992
17282
  }
16993
17283
 
16994
- declare const name$19 = "completeRequest";
17284
+ declare const name$1b = "completeRequest";
16995
17285
  declare const mutation$W: {
16996
17286
  completeRequest: [{
16997
17287
  data: Variable<"CompleteRequestInput!", "data">;
@@ -17007,20 +17297,20 @@ declare const mutation$W: {
17007
17297
  transaction: boolean;
17008
17298
  }];
17009
17299
  };
17010
- interface IInput$1a {
17300
+ interface IInput$1c {
17011
17301
  /**
17012
17302
  * @private
17013
17303
  */
17014
17304
  [key: string]: unknown;
17015
17305
  data: ModelTypes['CompleteRequestInput'];
17016
17306
  }
17017
- type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
17307
+ type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
17018
17308
 
17019
17309
  declare namespace completeRequest {
17020
- export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$W as mutation, name$19 as name };
17310
+ export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$W as mutation, name$1b as name };
17021
17311
  }
17022
17312
 
17023
- declare const name$18 = "confirmSupplyOnRequest";
17313
+ declare const name$1a = "confirmSupplyOnRequest";
17024
17314
  declare const mutation$V: {
17025
17315
  confirmSupplyOnRequest: [{
17026
17316
  data: Variable<"ConfirmSupplyOnRequestInput!", "data">;
@@ -17036,20 +17326,20 @@ declare const mutation$V: {
17036
17326
  transaction: boolean;
17037
17327
  }];
17038
17328
  };
17039
- interface IInput$19 {
17329
+ interface IInput$1b {
17040
17330
  /**
17041
17331
  * @private
17042
17332
  */
17043
17333
  [key: string]: unknown;
17044
17334
  data: ModelTypes['ConfirmSupplyOnRequestInput'];
17045
17335
  }
17046
- type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
17336
+ type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
17047
17337
 
17048
17338
  declare namespace confirmSupplyOnRequest {
17049
- export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$V as mutation, name$18 as name };
17339
+ export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$V as mutation, name$1a as name };
17050
17340
  }
17051
17341
 
17052
- declare const name$17 = "createChildOrder";
17342
+ declare const name$19 = "createChildOrder";
17053
17343
  declare const mutation$U: {
17054
17344
  createChildOrder: [{
17055
17345
  data: Variable<"CreateChildOrderInput!", "data">;
@@ -17065,20 +17355,20 @@ declare const mutation$U: {
17065
17355
  transaction: boolean;
17066
17356
  }];
17067
17357
  };
17068
- interface IInput$18 {
17358
+ interface IInput$1a {
17069
17359
  /**
17070
17360
  * @private
17071
17361
  */
17072
17362
  [key: string]: unknown;
17073
17363
  data: ModelTypes['CreateChildOrderInput'];
17074
17364
  }
17075
- type IOutput$18 = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
17365
+ type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
17076
17366
 
17077
17367
  declare namespace createChildOrder {
17078
- export { type IInput$18 as IInput, type IOutput$18 as IOutput, mutation$U as mutation, name$17 as name };
17368
+ export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$U as mutation, name$19 as name };
17079
17369
  }
17080
17370
 
17081
- declare const name$16 = "createParentOffer";
17371
+ declare const name$18 = "createParentOffer";
17082
17372
  declare const mutation$T: {
17083
17373
  createParentOffer: [{
17084
17374
  data: Variable<"CreateParentOfferInput!", "data">;
@@ -17094,20 +17384,20 @@ declare const mutation$T: {
17094
17384
  transaction: boolean;
17095
17385
  }];
17096
17386
  };
17097
- interface IInput$17 {
17387
+ interface IInput$19 {
17098
17388
  /**
17099
17389
  * @private
17100
17390
  */
17101
17391
  [key: string]: unknown;
17102
17392
  data: ModelTypes['CreateParentOfferInput'];
17103
17393
  }
17104
- type IOutput$17 = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
17394
+ type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
17105
17395
 
17106
17396
  declare namespace createParentOffer {
17107
- export { type IInput$17 as IInput, type IOutput$17 as IOutput, mutation$T as mutation, name$16 as name };
17397
+ export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$T as mutation, name$18 as name };
17108
17398
  }
17109
17399
 
17110
- declare const name$15 = "declineRequest";
17400
+ declare const name$17 = "declineRequest";
17111
17401
  declare const mutation$S: {
17112
17402
  declineRequest: [{
17113
17403
  data: Variable<"DeclineRequestInput!", "data">;
@@ -17123,20 +17413,20 @@ declare const mutation$S: {
17123
17413
  transaction: boolean;
17124
17414
  }];
17125
17415
  };
17126
- interface IInput$16 {
17416
+ interface IInput$18 {
17127
17417
  /**
17128
17418
  * @private
17129
17419
  */
17130
17420
  [key: string]: unknown;
17131
17421
  data: ModelTypes['DeclineRequestInput'];
17132
17422
  }
17133
- type IOutput$16 = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
17423
+ type IOutput$18 = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
17134
17424
 
17135
17425
  declare namespace declineRequest {
17136
- export { type IInput$16 as IInput, type IOutput$16 as IOutput, mutation$S as mutation, name$15 as name };
17426
+ export { type IInput$18 as IInput, type IOutput$18 as IOutput, mutation$S as mutation, name$17 as name };
17137
17427
  }
17138
17428
 
17139
- declare const name$14 = "deliverOnRequest";
17429
+ declare const name$16 = "deliverOnRequest";
17140
17430
  declare const mutation$R: {
17141
17431
  deliverOnRequest: [{
17142
17432
  data: Variable<"DeliverOnRequestInput!", "data">;
@@ -17152,20 +17442,20 @@ declare const mutation$R: {
17152
17442
  transaction: boolean;
17153
17443
  }];
17154
17444
  };
17155
- interface IInput$15 {
17445
+ interface IInput$17 {
17156
17446
  /**
17157
17447
  * @private
17158
17448
  */
17159
17449
  [key: string]: unknown;
17160
17450
  data: ModelTypes['DeliverOnRequestInput'];
17161
17451
  }
17162
- type IOutput$15 = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
17452
+ type IOutput$17 = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
17163
17453
 
17164
17454
  declare namespace deliverOnRequest {
17165
- export { type IInput$15 as IInput, type IOutput$15 as IOutput, mutation$R as mutation, name$14 as name };
17455
+ export { type IInput$17 as IInput, type IOutput$17 as IOutput, mutation$R as mutation, name$16 as name };
17166
17456
  }
17167
17457
 
17168
- declare const name$13 = "disputeOnRequest";
17458
+ declare const name$15 = "disputeOnRequest";
17169
17459
  declare const mutation$Q: {
17170
17460
  disputeOnRequest: [{
17171
17461
  data: Variable<"DisputeOnRequestInput!", "data">;
@@ -17181,20 +17471,20 @@ declare const mutation$Q: {
17181
17471
  transaction: boolean;
17182
17472
  }];
17183
17473
  };
17184
- interface IInput$14 {
17474
+ interface IInput$16 {
17185
17475
  /**
17186
17476
  * @private
17187
17477
  */
17188
17478
  [key: string]: unknown;
17189
17479
  data: ModelTypes['DisputeOnRequestInput'];
17190
17480
  }
17191
- type IOutput$14 = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
17481
+ type IOutput$16 = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
17192
17482
 
17193
17483
  declare namespace disputeOnRequest {
17194
- export { type IInput$14 as IInput, type IOutput$14 as IOutput, mutation$Q as mutation, name$13 as name };
17484
+ export { type IInput$16 as IInput, type IOutput$16 as IOutput, mutation$Q as mutation, name$15 as name };
17195
17485
  }
17196
17486
 
17197
- declare const name$12 = "generateAssetContributionAct";
17487
+ declare const name$14 = "generateAssetContributionAct";
17198
17488
  declare const mutation$P: {
17199
17489
  generateAssetContributionAct: [{
17200
17490
  data: Variable<"AssetContributionActGenerateDocumentInput!", "data">;
@@ -17207,7 +17497,7 @@ declare const mutation$P: {
17207
17497
  meta: boolean;
17208
17498
  }];
17209
17499
  };
17210
- interface IInput$13 {
17500
+ interface IInput$15 {
17211
17501
  /**
17212
17502
  * @private
17213
17503
  */
@@ -17215,13 +17505,13 @@ interface IInput$13 {
17215
17505
  data: ModelTypes['AssetContributionActGenerateDocumentInput'];
17216
17506
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17217
17507
  }
17218
- type IOutput$13 = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
17508
+ type IOutput$15 = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
17219
17509
 
17220
17510
  declare namespace generateAssetContributionAct {
17221
- export { type IInput$13 as IInput, type IOutput$13 as IOutput, mutation$P as mutation, name$12 as name };
17511
+ export { type IInput$15 as IInput, type IOutput$15 as IOutput, mutation$P as mutation, name$14 as name };
17222
17512
  }
17223
17513
 
17224
- declare const name$11 = "generateAssetContributionDecision";
17514
+ declare const name$13 = "generateAssetContributionDecision";
17225
17515
  declare const mutation$O: {
17226
17516
  generateAssetContributionDecision: [{
17227
17517
  data: Variable<"AssetContributionDecisionGenerateDocumentInput!", "data">;
@@ -17234,7 +17524,7 @@ declare const mutation$O: {
17234
17524
  meta: boolean;
17235
17525
  }];
17236
17526
  };
17237
- interface IInput$12 {
17527
+ interface IInput$14 {
17238
17528
  /**
17239
17529
  * @private
17240
17530
  */
@@ -17242,13 +17532,13 @@ interface IInput$12 {
17242
17532
  data: ModelTypes['AssetContributionDecisionGenerateDocumentInput'];
17243
17533
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17244
17534
  }
17245
- type IOutput$12 = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
17535
+ type IOutput$14 = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
17246
17536
 
17247
17537
  declare namespace generateAssetContributionDecision {
17248
- export { type IInput$12 as IInput, type IOutput$12 as IOutput, mutation$O as mutation, name$11 as name };
17538
+ export { type IInput$14 as IInput, type IOutput$14 as IOutput, mutation$O as mutation, name$13 as name };
17249
17539
  }
17250
17540
 
17251
- declare const name$10 = "generateAssetContributionStatement";
17541
+ declare const name$12 = "generateAssetContributionStatement";
17252
17542
  declare const mutation$N: {
17253
17543
  generateAssetContributionStatement: [{
17254
17544
  data: Variable<"AssetContributionStatementGenerateDocumentInput!", "data">;
@@ -17261,7 +17551,7 @@ declare const mutation$N: {
17261
17551
  meta: boolean;
17262
17552
  }];
17263
17553
  };
17264
- interface IInput$11 {
17554
+ interface IInput$13 {
17265
17555
  /**
17266
17556
  * @private
17267
17557
  */
@@ -17269,13 +17559,13 @@ interface IInput$11 {
17269
17559
  data: ModelTypes['AssetContributionStatementGenerateDocumentInput'];
17270
17560
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17271
17561
  }
17272
- type IOutput$11 = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
17562
+ type IOutput$13 = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
17273
17563
 
17274
17564
  declare namespace generateAssetContributionStatement {
17275
- export { type IInput$11 as IInput, type IOutput$11 as IOutput, mutation$N as mutation, name$10 as name };
17565
+ export { type IInput$13 as IInput, type IOutput$13 as IOutput, mutation$N as mutation, name$12 as name };
17276
17566
  }
17277
17567
 
17278
- declare const name$$ = "generateReturnByAssetAct";
17568
+ declare const name$11 = "generateReturnByAssetAct";
17279
17569
  declare const mutation$M: {
17280
17570
  generateReturnByAssetAct: [{
17281
17571
  data: Variable<"ReturnByAssetActGenerateDocumentInput!", "data">;
@@ -17288,7 +17578,7 @@ declare const mutation$M: {
17288
17578
  meta: boolean;
17289
17579
  }];
17290
17580
  };
17291
- interface IInput$10 {
17581
+ interface IInput$12 {
17292
17582
  /**
17293
17583
  * @private
17294
17584
  */
@@ -17296,13 +17586,13 @@ interface IInput$10 {
17296
17586
  data: ModelTypes['ReturnByAssetActGenerateDocumentInput'];
17297
17587
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17298
17588
  }
17299
- type IOutput$10 = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
17589
+ type IOutput$12 = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
17300
17590
 
17301
17591
  declare namespace generateReturnByAssetAct {
17302
- export { type IInput$10 as IInput, type IOutput$10 as IOutput, mutation$M as mutation, name$$ as name };
17592
+ export { type IInput$12 as IInput, type IOutput$12 as IOutput, mutation$M as mutation, name$11 as name };
17303
17593
  }
17304
17594
 
17305
- declare const name$_ = "generateReturnByAssetDecision";
17595
+ declare const name$10 = "generateReturnByAssetDecision";
17306
17596
  declare const mutation$L: {
17307
17597
  generateReturnByAssetDecision: [{
17308
17598
  data: Variable<"ReturnByAssetDecisionGenerateDocumentInput!", "data">;
@@ -17315,7 +17605,7 @@ declare const mutation$L: {
17315
17605
  meta: boolean;
17316
17606
  }];
17317
17607
  };
17318
- interface IInput$$ {
17608
+ interface IInput$11 {
17319
17609
  /**
17320
17610
  * @private
17321
17611
  */
@@ -17323,13 +17613,13 @@ interface IInput$$ {
17323
17613
  data: ModelTypes['ReturnByAssetDecisionGenerateDocumentInput'];
17324
17614
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17325
17615
  }
17326
- type IOutput$$ = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
17616
+ type IOutput$11 = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
17327
17617
 
17328
17618
  declare namespace generateReturnByAssetDecision {
17329
- export { type IInput$$ as IInput, type IOutput$$ as IOutput, mutation$L as mutation, name$_ as name };
17619
+ export { type IInput$11 as IInput, type IOutput$11 as IOutput, mutation$L as mutation, name$10 as name };
17330
17620
  }
17331
17621
 
17332
- declare const name$Z = "generateReturnByAssetStatement";
17622
+ declare const name$$ = "generateReturnByAssetStatement";
17333
17623
  declare const mutation$K: {
17334
17624
  generateReturnByAssetStatement: [{
17335
17625
  data: Variable<"ReturnByAssetStatementGenerateDocumentInput!", "data">;
@@ -17342,7 +17632,7 @@ declare const mutation$K: {
17342
17632
  meta: boolean;
17343
17633
  }];
17344
17634
  };
17345
- interface IInput$_ {
17635
+ interface IInput$10 {
17346
17636
  /**
17347
17637
  * @private
17348
17638
  */
@@ -17350,13 +17640,13 @@ interface IInput$_ {
17350
17640
  data: ModelTypes['ReturnByAssetStatementGenerateDocumentInput'];
17351
17641
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17352
17642
  }
17353
- type IOutput$_ = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
17643
+ type IOutput$10 = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
17354
17644
 
17355
17645
  declare namespace generateReturnByAssetStatement {
17356
- export { type IInput$_ as IInput, type IOutput$_ as IOutput, mutation$K as mutation, name$Z as name };
17646
+ export { type IInput$10 as IInput, type IOutput$10 as IOutput, mutation$K as mutation, name$$ as name };
17357
17647
  }
17358
17648
 
17359
- declare const name$Y = "moderateRequest";
17649
+ declare const name$_ = "moderateRequest";
17360
17650
  declare const mutation$J: {
17361
17651
  moderateRequest: [{
17362
17652
  data: Variable<"ModerateRequestInput!", "data">;
@@ -17372,20 +17662,20 @@ declare const mutation$J: {
17372
17662
  transaction: boolean;
17373
17663
  }];
17374
17664
  };
17375
- interface IInput$Z {
17665
+ interface IInput$$ {
17376
17666
  /**
17377
17667
  * @private
17378
17668
  */
17379
17669
  [key: string]: unknown;
17380
17670
  data: ModelTypes['ModerateRequestInput'];
17381
17671
  }
17382
- type IOutput$Z = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
17672
+ type IOutput$$ = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
17383
17673
 
17384
17674
  declare namespace moderateRequest {
17385
- export { type IInput$Z as IInput, type IOutput$Z as IOutput, mutation$J as mutation, name$Y as name };
17675
+ export { type IInput$$ as IInput, type IOutput$$ as IOutput, mutation$J as mutation, name$_ as name };
17386
17676
  }
17387
17677
 
17388
- declare const name$X = "prohibitRequest";
17678
+ declare const name$Z = "prohibitRequest";
17389
17679
  declare const mutation$I: {
17390
17680
  prohibitRequest: [{
17391
17681
  data: Variable<"ProhibitRequestInput!", "data">;
@@ -17401,20 +17691,20 @@ declare const mutation$I: {
17401
17691
  transaction: boolean;
17402
17692
  }];
17403
17693
  };
17404
- interface IInput$Y {
17694
+ interface IInput$_ {
17405
17695
  /**
17406
17696
  * @private
17407
17697
  */
17408
17698
  [key: string]: unknown;
17409
17699
  data: ModelTypes['ProhibitRequestInput'];
17410
17700
  }
17411
- type IOutput$Y = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
17701
+ type IOutput$_ = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
17412
17702
 
17413
17703
  declare namespace prohibitRequest {
17414
- export { type IInput$Y as IInput, type IOutput$Y as IOutput, mutation$I as mutation, name$X as name };
17704
+ export { type IInput$_ as IInput, type IOutput$_ as IOutput, mutation$I as mutation, name$Z as name };
17415
17705
  }
17416
17706
 
17417
- declare const name$W = "publishRequest";
17707
+ declare const name$Y = "publishRequest";
17418
17708
  declare const mutation$H: {
17419
17709
  publishRequest: [{
17420
17710
  data: Variable<"PublishRequestInput!", "data">;
@@ -17430,20 +17720,20 @@ declare const mutation$H: {
17430
17720
  transaction: boolean;
17431
17721
  }];
17432
17722
  };
17433
- interface IInput$X {
17723
+ interface IInput$Z {
17434
17724
  /**
17435
17725
  * @private
17436
17726
  */
17437
17727
  [key: string]: unknown;
17438
17728
  data: ModelTypes['PublishRequestInput'];
17439
17729
  }
17440
- type IOutput$X = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
17730
+ type IOutput$Z = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
17441
17731
 
17442
17732
  declare namespace publishRequest {
17443
- export { type IInput$X as IInput, type IOutput$X as IOutput, mutation$H as mutation, name$W as name };
17733
+ export { type IInput$Z as IInput, type IOutput$Z as IOutput, mutation$H as mutation, name$Y as name };
17444
17734
  }
17445
17735
 
17446
- declare const name$V = "receiveOnRequest";
17736
+ declare const name$X = "receiveOnRequest";
17447
17737
  declare const mutation$G: {
17448
17738
  receiveOnRequest: [{
17449
17739
  data: Variable<"ReceiveOnRequestInput!", "data">;
@@ -17459,20 +17749,20 @@ declare const mutation$G: {
17459
17749
  transaction: boolean;
17460
17750
  }];
17461
17751
  };
17462
- interface IInput$W {
17752
+ interface IInput$Y {
17463
17753
  /**
17464
17754
  * @private
17465
17755
  */
17466
17756
  [key: string]: unknown;
17467
17757
  data: ModelTypes['ReceiveOnRequestInput'];
17468
17758
  }
17469
- type IOutput$W = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
17759
+ type IOutput$Y = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
17470
17760
 
17471
17761
  declare namespace receiveOnRequest {
17472
- export { type IInput$W as IInput, type IOutput$W as IOutput, mutation$G as mutation, name$V as name };
17762
+ export { type IInput$Y as IInput, type IOutput$Y as IOutput, mutation$G as mutation, name$X as name };
17473
17763
  }
17474
17764
 
17475
- declare const name$U = "supplyOnRequest";
17765
+ declare const name$W = "supplyOnRequest";
17476
17766
  declare const mutation$F: {
17477
17767
  supplyOnRequest: [{
17478
17768
  data: Variable<"SupplyOnRequestInput!", "data">;
@@ -17488,20 +17778,20 @@ declare const mutation$F: {
17488
17778
  transaction: boolean;
17489
17779
  }];
17490
17780
  };
17491
- interface IInput$V {
17781
+ interface IInput$X {
17492
17782
  /**
17493
17783
  * @private
17494
17784
  */
17495
17785
  [key: string]: unknown;
17496
17786
  data: ModelTypes['SupplyOnRequestInput'];
17497
17787
  }
17498
- type IOutput$V = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
17788
+ type IOutput$X = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
17499
17789
 
17500
17790
  declare namespace supplyOnRequest {
17501
- export { type IInput$V as IInput, type IOutput$V as IOutput, mutation$F as mutation, name$U as name };
17791
+ export { type IInput$X as IInput, type IOutput$X as IOutput, mutation$F as mutation, name$W as name };
17502
17792
  }
17503
17793
 
17504
- declare const name$T = "unpublishRequest";
17794
+ declare const name$V = "unpublishRequest";
17505
17795
  declare const mutation$E: {
17506
17796
  unpublishRequest: [{
17507
17797
  data: Variable<"UnpublishRequestInput!", "data">;
@@ -17517,20 +17807,20 @@ declare const mutation$E: {
17517
17807
  transaction: boolean;
17518
17808
  }];
17519
17809
  };
17520
- interface IInput$U {
17810
+ interface IInput$W {
17521
17811
  /**
17522
17812
  * @private
17523
17813
  */
17524
17814
  [key: string]: unknown;
17525
17815
  data: ModelTypes['UnpublishRequestInput'];
17526
17816
  }
17527
- type IOutput$U = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
17817
+ type IOutput$W = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
17528
17818
 
17529
17819
  declare namespace unpublishRequest {
17530
- export { type IInput$U as IInput, type IOutput$U as IOutput, mutation$E as mutation, name$T as name };
17820
+ export { type IInput$W as IInput, type IOutput$W as IOutput, mutation$E as mutation, name$V as name };
17531
17821
  }
17532
17822
 
17533
- declare const name$S = "updateRequest";
17823
+ declare const name$U = "updateRequest";
17534
17824
  declare const mutation$D: {
17535
17825
  updateRequest: [{
17536
17826
  data: Variable<"UpdateRequestInput!", "data">;
@@ -17546,26 +17836,26 @@ declare const mutation$D: {
17546
17836
  transaction: boolean;
17547
17837
  }];
17548
17838
  };
17549
- interface IInput$T {
17839
+ interface IInput$V {
17550
17840
  /**
17551
17841
  * @private
17552
17842
  */
17553
17843
  [key: string]: unknown;
17554
17844
  data: ModelTypes['UpdateRequestInput'];
17555
17845
  }
17556
- type IOutput$T = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
17846
+ type IOutput$V = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
17557
17847
 
17558
17848
  declare namespace updateRequest {
17559
- export { type IInput$T as IInput, type IOutput$T as IOutput, mutation$D as mutation, name$S as name };
17849
+ export { type IInput$V as IInput, type IOutput$V as IOutput, mutation$D as mutation, name$U as name };
17560
17850
  }
17561
17851
 
17562
17852
  /** Подтвердить поставку имущества на заявку */
17563
17853
 
17564
- declare namespace index$o {
17854
+ declare namespace index$p {
17565
17855
  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 };
17566
17856
  }
17567
17857
 
17568
- declare const name$R = "installExtension";
17858
+ declare const name$T = "installExtension";
17569
17859
  declare const mutation$C: {
17570
17860
  installExtension: [{
17571
17861
  data: Variable<"ExtensionInput!", "data">;
@@ -17590,39 +17880,39 @@ declare const mutation$C: {
17590
17880
  instructions: boolean;
17591
17881
  }];
17592
17882
  };
17593
- interface IInput$S {
17883
+ interface IInput$U {
17594
17884
  /**
17595
17885
  * @private
17596
17886
  */
17597
17887
  [key: string]: unknown;
17598
17888
  data: ModelTypes['ExtensionInput'];
17599
17889
  }
17600
- type IOutput$S = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
17890
+ type IOutput$U = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
17601
17891
 
17602
17892
  declare namespace installExtension {
17603
- export { type IInput$S as IInput, type IOutput$S as IOutput, mutation$C as mutation, name$R as name };
17893
+ export { type IInput$U as IInput, type IOutput$U as IOutput, mutation$C as mutation, name$T as name };
17604
17894
  }
17605
17895
 
17606
- declare const name$Q = "uninstallExtension";
17896
+ declare const name$S = "uninstallExtension";
17607
17897
  declare const mutation$B: {
17608
17898
  uninstallExtension: [{
17609
17899
  data: Variable<"UninstallExtensionInput!", "data">;
17610
17900
  }, true];
17611
17901
  };
17612
- interface IInput$R {
17902
+ interface IInput$T {
17613
17903
  /**
17614
17904
  * @private
17615
17905
  */
17616
17906
  [key: string]: unknown;
17617
17907
  data: ModelTypes['UninstallExtensionInput'];
17618
17908
  }
17619
- type IOutput$R = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
17909
+ type IOutput$T = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
17620
17910
 
17621
17911
  declare namespace uninstallExtension {
17622
- export { type IInput$R as IInput, type IOutput$R as IOutput, mutation$B as mutation, name$Q as name };
17912
+ export { type IInput$T as IInput, type IOutput$T as IOutput, mutation$B as mutation, name$S as name };
17623
17913
  }
17624
17914
 
17625
- declare const name$P = "updateExtension";
17915
+ declare const name$R = "updateExtension";
17626
17916
  declare const mutation$A: {
17627
17917
  updateExtension: [{
17628
17918
  data: Variable<"ExtensionInput!", "data">;
@@ -17647,26 +17937,26 @@ declare const mutation$A: {
17647
17937
  instructions: boolean;
17648
17938
  }];
17649
17939
  };
17650
- interface IInput$Q {
17940
+ interface IInput$S {
17651
17941
  /**
17652
17942
  * @private
17653
17943
  */
17654
17944
  [key: string]: unknown;
17655
17945
  data: ModelTypes['ExtensionInput'];
17656
17946
  }
17657
- type IOutput$Q = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
17947
+ type IOutput$S = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
17658
17948
 
17659
17949
  declare namespace updateExtension {
17660
- export { type IInput$Q as IInput, type IOutput$Q as IOutput, mutation$A as mutation, name$P as name };
17950
+ export { type IInput$S as IInput, type IOutput$S as IOutput, mutation$A as mutation, name$R as name };
17661
17951
  }
17662
17952
 
17663
17953
  /** Установить расширение */
17664
17954
 
17665
- declare namespace index$n {
17955
+ declare namespace index$o {
17666
17956
  export { installExtension as InstallExtension, uninstallExtension as UninstallExtension, updateExtension as UpdateExtension };
17667
17957
  }
17668
17958
 
17669
- declare const name$O = "generateProjectOfFreeDecision";
17959
+ declare const name$Q = "generateProjectOfFreeDecision";
17670
17960
  declare const mutation$z: {
17671
17961
  generateProjectOfFreeDecision: [{
17672
17962
  data: Variable<"ProjectFreeDecisionGenerateDocumentInput!", "data">;
@@ -17679,7 +17969,7 @@ declare const mutation$z: {
17679
17969
  meta: boolean;
17680
17970
  }];
17681
17971
  };
17682
- interface IInput$P {
17972
+ interface IInput$R {
17683
17973
  /**
17684
17974
  * @private
17685
17975
  */
@@ -17687,13 +17977,13 @@ interface IInput$P {
17687
17977
  data: ModelTypes['ProjectFreeDecisionGenerateDocumentInput'];
17688
17978
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17689
17979
  }
17690
- type IOutput$P = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
17980
+ type IOutput$R = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
17691
17981
 
17692
17982
  declare namespace generateProjectOfFreeDecisionDocument {
17693
- export { type IInput$P as IInput, type IOutput$P as IOutput, mutation$z as mutation, name$O as name };
17983
+ export { type IInput$R as IInput, type IOutput$R as IOutput, mutation$z as mutation, name$Q as name };
17694
17984
  }
17695
17985
 
17696
- declare const name$N = "generateFreeDecision";
17986
+ declare const name$P = "generateFreeDecision";
17697
17987
  declare const mutation$y: {
17698
17988
  generateFreeDecision: [{
17699
17989
  data: Variable<"FreeDecisionGenerateDocumentInput!", "data">;
@@ -17706,7 +17996,7 @@ declare const mutation$y: {
17706
17996
  meta: boolean;
17707
17997
  }];
17708
17998
  };
17709
- interface IInput$O {
17999
+ interface IInput$Q {
17710
18000
  /**
17711
18001
  * @private
17712
18002
  */
@@ -17714,32 +18004,32 @@ interface IInput$O {
17714
18004
  data: ModelTypes['FreeDecisionGenerateDocumentInput'];
17715
18005
  options?: ModelTypes['GenerateDocumentOptionsInput'];
17716
18006
  }
17717
- type IOutput$O = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
18007
+ type IOutput$Q = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
17718
18008
 
17719
18009
  declare namespace generateFreeDecision {
17720
- export { type IInput$O as IInput, type IOutput$O as IOutput, mutation$y as mutation, name$N as name };
18010
+ export { type IInput$Q as IInput, type IOutput$Q as IOutput, mutation$y as mutation, name$P as name };
17721
18011
  }
17722
18012
 
17723
- declare const name$M = "publishProjectOfFreeDecision";
18013
+ declare const name$O = "publishProjectOfFreeDecision";
17724
18014
  declare const mutation$x: {
17725
18015
  publishProjectOfFreeDecision: [{
17726
18016
  data: Variable<"PublishProjectFreeDecisionInput!", "data">;
17727
18017
  }, true];
17728
18018
  };
17729
- interface IInput$N {
18019
+ interface IInput$P {
17730
18020
  /**
17731
18021
  * @private
17732
18022
  */
17733
18023
  [key: string]: unknown;
17734
18024
  data: ModelTypes['PublishProjectFreeDecisionInput'];
17735
18025
  }
17736
- type IOutput$N = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
18026
+ type IOutput$P = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
17737
18027
 
17738
18028
  declare namespace publishProjectOfFreeDecision {
17739
- export { type IInput$N as IInput, type IOutput$N as IOutput, mutation$x as mutation, name$M as name };
18029
+ export { type IInput$P as IInput, type IOutput$P as IOutput, mutation$x as mutation, name$O as name };
17740
18030
  }
17741
18031
 
17742
- declare const name$L = "createProjectOfFreeDecision";
18032
+ declare const name$N = "createProjectOfFreeDecision";
17743
18033
  declare const mutation$w: {
17744
18034
  createProjectOfFreeDecision: [{
17745
18035
  data: Variable<"CreateProjectFreeDecisionInput!", "data">;
@@ -17749,26 +18039,26 @@ declare const mutation$w: {
17749
18039
  question: boolean;
17750
18040
  }];
17751
18041
  };
17752
- interface IInput$M {
18042
+ interface IInput$O {
17753
18043
  /**
17754
18044
  * @private
17755
18045
  */
17756
18046
  [key: string]: unknown;
17757
18047
  data: ModelTypes['CreateProjectFreeDecisionInput'];
17758
18048
  }
17759
- type IOutput$M = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
18049
+ type IOutput$O = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
17760
18050
 
17761
18051
  declare namespace createProjectOfFreeDecision {
17762
- export { type IInput$M as IInput, type IOutput$M as IOutput, mutation$w as mutation, name$L as name };
18052
+ export { type IInput$O as IInput, type IOutput$O as IOutput, mutation$w as mutation, name$N as name };
17763
18053
  }
17764
18054
 
17765
18055
  /** Сгенерировать документ проекта свободного решения */
17766
18056
 
17767
- declare namespace index$m {
18057
+ declare namespace index$n {
17768
18058
  export { createProjectOfFreeDecision as CreateProjectOfFreeDecision, generateFreeDecision as GenerateFreeDecision, generateProjectOfFreeDecisionDocument as GenerateProjectOfFreeDecision, publishProjectOfFreeDecision as PublishProjectOfFreeDecision };
17769
18059
  }
17770
18060
 
17771
- declare const name$K = "setPaymentStatus";
18061
+ declare const name$M = "setPaymentStatus";
17772
18062
  declare const mutation$v: {
17773
18063
  setPaymentStatus: [{
17774
18064
  data: Variable<"SetPaymentStatusInput!", "data">;
@@ -17840,18 +18130,18 @@ declare const mutation$v: {
17840
18130
  is_final: boolean;
17841
18131
  }];
17842
18132
  };
17843
- interface IInput$L {
18133
+ interface IInput$N {
17844
18134
  data: ModelTypes['SetPaymentStatusInput'];
17845
18135
  }
17846
- type IOutput$L = {
17847
- [name$K]: ModelTypes['GatewayPayment'];
18136
+ type IOutput$N = {
18137
+ [name$M]: ModelTypes['GatewayPayment'];
17848
18138
  };
17849
18139
 
17850
18140
  declare namespace updatePaymentStatus {
17851
- export { type IInput$L as IInput, type IOutput$L as IOutput, mutation$v as mutation, name$K as name };
18141
+ export { type IInput$N as IInput, type IOutput$N as IOutput, mutation$v as mutation, name$M as name };
17852
18142
  }
17853
18143
 
17854
- declare const name$J = "createInitialPayment";
18144
+ declare const name$L = "createInitialPayment";
17855
18145
  declare const mutation$u: {
17856
18146
  createInitialPayment: [{
17857
18147
  data: Variable<"CreateInitialPaymentInput!", "data">;
@@ -17923,16 +18213,16 @@ declare const mutation$u: {
17923
18213
  is_final: boolean;
17924
18214
  }];
17925
18215
  };
17926
- interface IInput$K {
18216
+ interface IInput$M {
17927
18217
  data: ModelTypes['CreateInitialPaymentInput'];
17928
18218
  }
17929
- type IOutput$K = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
18219
+ type IOutput$M = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
17930
18220
 
17931
18221
  declare namespace createInitialPayment$1 {
17932
- export { type IInput$K as IInput, type IOutput$K as IOutput, mutation$u as mutation, name$J as name };
18222
+ export { type IInput$M as IInput, type IOutput$M as IOutput, mutation$u as mutation, name$L as name };
17933
18223
  }
17934
18224
 
17935
- declare const name$I = "createDepositPayment";
18225
+ declare const name$K = "createDepositPayment";
17936
18226
  declare const mutation$t: {
17937
18227
  createDepositPayment: [{
17938
18228
  data: Variable<"CreateDepositPaymentInput!", "data">;
@@ -18004,22 +18294,22 @@ declare const mutation$t: {
18004
18294
  is_final: boolean;
18005
18295
  }];
18006
18296
  };
18007
- interface IInput$J {
18297
+ interface IInput$L {
18008
18298
  data: ModelTypes['CreateDepositPaymentInput'];
18009
18299
  }
18010
- type IOutput$J = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
18300
+ type IOutput$L = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
18011
18301
 
18012
18302
  declare namespace createDepositPayment$1 {
18013
- export { type IInput$J as IInput, type IOutput$J as IOutput, mutation$t as mutation, name$I as name };
18303
+ export { type IInput$L as IInput, type IOutput$L as IOutput, mutation$t as mutation, name$K as name };
18014
18304
  }
18015
18305
 
18016
18306
  /** Управление статусом платежа осущствляется мутацией setPaymentStatus. При переходе платежа в статус PAID вызывается эффект в блокчейне, который завершает операцию автоматическим переводом платежа в статус COMPLETED. При установке статуса REFUNDED запускается процесс отмены платежа в блокчейне. Остальные статусы не приводят к эффектам в блокчейне. */
18017
18307
 
18018
- declare namespace index$l {
18308
+ declare namespace index$m {
18019
18309
  export { createDepositPayment$1 as CreateDepositPayment, createInitialPayment$1 as CreateInitialPayment, updatePaymentStatus as SetPaymentStatus };
18020
18310
  }
18021
18311
 
18022
- declare const name$H = "createAnnualGeneralMeet";
18312
+ declare const name$J = "createAnnualGeneralMeet";
18023
18313
  /**
18024
18314
  * Сгенерировать документ предложения повестки очередного общего собрания пайщиков
18025
18315
  */
@@ -18733,20 +19023,20 @@ declare const mutation$s: {
18733
19023
  };
18734
19024
  }];
18735
19025
  };
18736
- interface IInput$I {
19026
+ interface IInput$K {
18737
19027
  /**
18738
19028
  * @private
18739
19029
  */
18740
19030
  [key: string]: unknown;
18741
19031
  data: ModelTypes['CreateAnnualGeneralMeetInput'];
18742
19032
  }
18743
- type IOutput$I = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
19033
+ type IOutput$K = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
18744
19034
 
18745
19035
  declare namespace createAnnualGeneralMeet {
18746
- export { type IInput$I as IInput, type IOutput$I as IOutput, mutation$s as mutation, name$H as name };
19036
+ export { type IInput$K as IInput, type IOutput$K as IOutput, mutation$s as mutation, name$J as name };
18747
19037
  }
18748
19038
 
18749
- declare const name$G = "generateAnnualGeneralMeetAgendaDocument";
19039
+ declare const name$I = "generateAnnualGeneralMeetAgendaDocument";
18750
19040
  /**
18751
19041
  * Генерация документа повестки годового общего собрания пайщиков
18752
19042
  */
@@ -18762,7 +19052,7 @@ declare const mutation$r: {
18762
19052
  meta: boolean;
18763
19053
  }];
18764
19054
  };
18765
- interface IInput$H {
19055
+ interface IInput$J {
18766
19056
  /**
18767
19057
  * @private
18768
19058
  */
@@ -18770,13 +19060,13 @@ interface IInput$H {
18770
19060
  data: ModelTypes['AnnualGeneralMeetingAgendaGenerateDocumentInput'];
18771
19061
  options?: ModelTypes['GenerateDocumentOptionsInput'];
18772
19062
  }
18773
- type IOutput$H = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
19063
+ type IOutput$J = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
18774
19064
 
18775
19065
  declare namespace generateAnnualGeneralMeetAgendaDocument {
18776
- export { type IInput$H as IInput, type IOutput$H as IOutput, mutation$r as mutation, name$G as name };
19066
+ export { type IInput$J as IInput, type IOutput$J as IOutput, mutation$r as mutation, name$I as name };
18777
19067
  }
18778
19068
 
18779
- declare const name$F = "generateAnnualGeneralMeetDecisionDocument";
19069
+ declare const name$H = "generateAnnualGeneralMeetDecisionDocument";
18780
19070
  /**
18781
19071
  * Генерация документа решения годового общего собрания пайщиков
18782
19072
  */
@@ -18792,7 +19082,7 @@ declare const mutation$q: {
18792
19082
  meta: boolean;
18793
19083
  }];
18794
19084
  };
18795
- interface IInput$G {
19085
+ interface IInput$I {
18796
19086
  /**
18797
19087
  * @private
18798
19088
  */
@@ -18800,13 +19090,13 @@ interface IInput$G {
18800
19090
  data: ModelTypes['AnnualGeneralMeetingDecisionGenerateDocumentInput'];
18801
19091
  options?: ModelTypes['GenerateDocumentOptionsInput'];
18802
19092
  }
18803
- type IOutput$G = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
19093
+ type IOutput$I = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
18804
19094
 
18805
19095
  declare namespace generateAnnualGeneralMeetDecisionDocument {
18806
- export { type IInput$G as IInput, type IOutput$G as IOutput, mutation$q as mutation, name$F as name };
19096
+ export { type IInput$I as IInput, type IOutput$I as IOutput, mutation$q as mutation, name$H as name };
18807
19097
  }
18808
19098
 
18809
- declare const name$E = "generateAnnualGeneralMeetNotificationDocument";
19099
+ declare const name$G = "generateAnnualGeneralMeetNotificationDocument";
18810
19100
  /**
18811
19101
  * Генерация документа уведомления о проведении годового общего собрания пайщиков
18812
19102
  */
@@ -18822,7 +19112,7 @@ declare const mutation$p: {
18822
19112
  meta: boolean;
18823
19113
  }];
18824
19114
  };
18825
- interface IInput$F {
19115
+ interface IInput$H {
18826
19116
  /**
18827
19117
  * @private
18828
19118
  */
@@ -18830,13 +19120,13 @@ interface IInput$F {
18830
19120
  data: ModelTypes['AnnualGeneralMeetingNotificationGenerateDocumentInput'];
18831
19121
  options?: ModelTypes['GenerateDocumentOptionsInput'];
18832
19122
  }
18833
- type IOutput$F = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
19123
+ type IOutput$H = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
18834
19124
 
18835
19125
  declare namespace generateAnnualGeneralMeetNotificationDocument {
18836
- export { type IInput$F as IInput, type IOutput$F as IOutput, mutation$p as mutation, name$E as name };
19126
+ export { type IInput$H as IInput, type IOutput$H as IOutput, mutation$p as mutation, name$G as name };
18837
19127
  }
18838
19128
 
18839
- declare const name$D = "generateBallotForAnnualGeneralMeetDocument";
19129
+ declare const name$F = "generateBallotForAnnualGeneralMeetDocument";
18840
19130
  /**
18841
19131
  * Генерация бюллетеня для голосования на общем собрании пайщиков
18842
19132
  */
@@ -18852,7 +19142,7 @@ declare const mutation$o: {
18852
19142
  meta: boolean;
18853
19143
  }];
18854
19144
  };
18855
- interface IInput$E {
19145
+ interface IInput$G {
18856
19146
  /**
18857
19147
  * @private
18858
19148
  */
@@ -18860,13 +19150,13 @@ interface IInput$E {
18860
19150
  data: ModelTypes['AnnualGeneralMeetingVotingBallotGenerateDocumentInput'];
18861
19151
  options?: ModelTypes['GenerateDocumentOptionsInput'];
18862
19152
  }
18863
- type IOutput$E = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
19153
+ type IOutput$G = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
18864
19154
 
18865
19155
  declare namespace generateBallotForAnnualGeneralMeetDocument {
18866
- export { type IInput$E as IInput, type IOutput$E as IOutput, mutation$o as mutation, name$D as name };
19156
+ export { type IInput$G as IInput, type IOutput$G as IOutput, mutation$o as mutation, name$F as name };
18867
19157
  }
18868
19158
 
18869
- declare const name$C = "generateSovietDecisionOnAnnualMeetDocument";
19159
+ declare const name$E = "generateSovietDecisionOnAnnualMeetDocument";
18870
19160
  /**
18871
19161
  * Генерация документа решения совета о проведении годового общего собрания пайщиков
18872
19162
  */
@@ -18882,7 +19172,7 @@ declare const mutation$n: {
18882
19172
  meta: boolean;
18883
19173
  }];
18884
19174
  };
18885
- interface IInput$D {
19175
+ interface IInput$F {
18886
19176
  /**
18887
19177
  * @private
18888
19178
  */
@@ -18890,13 +19180,13 @@ interface IInput$D {
18890
19180
  data: ModelTypes['AnnualGeneralMeetingSovietDecisionGenerateDocumentInput'];
18891
19181
  options?: ModelTypes['GenerateDocumentOptionsInput'];
18892
19182
  }
18893
- type IOutput$D = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
19183
+ type IOutput$F = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
18894
19184
 
18895
19185
  declare namespace generateSovietDecisionOnAnnualMeetDocument {
18896
- export { type IInput$D as IInput, type IOutput$D as IOutput, mutation$n as mutation, name$C as name };
19186
+ export { type IInput$F as IInput, type IOutput$F as IOutput, mutation$n as mutation, name$E as name };
18897
19187
  }
18898
19188
 
18899
- declare const name$B = "notifyOnAnnualGeneralMeet";
19189
+ declare const name$D = "notifyOnAnnualGeneralMeet";
18900
19190
  /**
18901
19191
  * Уведомление о проведении общего собрания пайщиков
18902
19192
  */
@@ -19610,20 +19900,20 @@ declare const mutation$m: {
19610
19900
  };
19611
19901
  }];
19612
19902
  };
19613
- interface IInput$C {
19903
+ interface IInput$E {
19614
19904
  /**
19615
19905
  * @private
19616
19906
  */
19617
19907
  [key: string]: unknown;
19618
19908
  data: ModelTypes['NotifyOnAnnualGeneralMeetInput'];
19619
19909
  }
19620
- type IOutput$C = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
19910
+ type IOutput$E = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
19621
19911
 
19622
19912
  declare namespace notifyOnAnnualGeneralMeet {
19623
- export { type IInput$C as IInput, type IOutput$C as IOutput, mutation$m as mutation, name$B as name };
19913
+ export { type IInput$E as IInput, type IOutput$E as IOutput, mutation$m as mutation, name$D as name };
19624
19914
  }
19625
19915
 
19626
- declare const name$A = "restartAnnualGeneralMeet";
19916
+ declare const name$C = "restartAnnualGeneralMeet";
19627
19917
  /**
19628
19918
  * Перезапуск годового общего собрания пайщиков
19629
19919
  */
@@ -20337,20 +20627,20 @@ declare const mutation$l: {
20337
20627
  };
20338
20628
  }];
20339
20629
  };
20340
- interface IInput$B {
20630
+ interface IInput$D {
20341
20631
  /**
20342
20632
  * @private
20343
20633
  */
20344
20634
  [key: string]: unknown;
20345
20635
  data: ModelTypes['RestartAnnualGeneralMeetInput'];
20346
20636
  }
20347
- type IOutput$B = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
20637
+ type IOutput$D = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
20348
20638
 
20349
20639
  declare namespace restartAnnualGeneralMeet {
20350
- export { type IInput$B as IInput, type IOutput$B as IOutput, mutation$l as mutation, name$A as name };
20640
+ export { type IInput$D as IInput, type IOutput$D as IOutput, mutation$l as mutation, name$C as name };
20351
20641
  }
20352
20642
 
20353
- declare const name$z = "signByPresiderOnAnnualGeneralMeet";
20643
+ declare const name$B = "signByPresiderOnAnnualGeneralMeet";
20354
20644
  /**
20355
20645
  * Подписание решения председателем на годовом общем собрании пайщиков
20356
20646
  */
@@ -21064,20 +21354,20 @@ declare const mutation$k: {
21064
21354
  };
21065
21355
  }];
21066
21356
  };
21067
- interface IInput$A {
21357
+ interface IInput$C {
21068
21358
  /**
21069
21359
  * @private
21070
21360
  */
21071
21361
  [key: string]: unknown;
21072
21362
  data: ModelTypes['SignByPresiderOnAnnualGeneralMeetInput'];
21073
21363
  }
21074
- type IOutput$A = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
21364
+ type IOutput$C = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
21075
21365
 
21076
21366
  declare namespace signByPresiderOnAnnualGeneralMeet {
21077
- export { type IInput$A as IInput, type IOutput$A as IOutput, mutation$k as mutation, name$z as name };
21367
+ export { type IInput$C as IInput, type IOutput$C as IOutput, mutation$k as mutation, name$B as name };
21078
21368
  }
21079
21369
 
21080
- declare const name$y = "signBySecretaryOnAnnualGeneralMeet";
21370
+ declare const name$A = "signBySecretaryOnAnnualGeneralMeet";
21081
21371
  /**
21082
21372
  * Подписание решения секретарём на годовом общем собрании пайщиков
21083
21373
  */
@@ -21791,20 +22081,20 @@ declare const mutation$j: {
21791
22081
  };
21792
22082
  }];
21793
22083
  };
21794
- interface IInput$z {
22084
+ interface IInput$B {
21795
22085
  /**
21796
22086
  * @private
21797
22087
  */
21798
22088
  [key: string]: unknown;
21799
22089
  data: ModelTypes['SignBySecretaryOnAnnualGeneralMeetInput'];
21800
22090
  }
21801
- type IOutput$z = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
22091
+ type IOutput$B = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
21802
22092
 
21803
22093
  declare namespace signBySecretaryOnAnnualGeneralMeet {
21804
- export { type IInput$z as IInput, type IOutput$z as IOutput, mutation$j as mutation, name$y as name };
22094
+ export { type IInput$B as IInput, type IOutput$B as IOutput, mutation$j as mutation, name$A as name };
21805
22095
  }
21806
22096
 
21807
- declare const name$x = "voteOnAnnualGeneralMeet";
22097
+ declare const name$z = "voteOnAnnualGeneralMeet";
21808
22098
  /**
21809
22099
  * Голосование на общем собрании пайщиков
21810
22100
  */
@@ -22518,26 +22808,26 @@ declare const mutation$i: {
22518
22808
  };
22519
22809
  }];
22520
22810
  };
22521
- interface IInput$y {
22811
+ interface IInput$A {
22522
22812
  /**
22523
22813
  * @private
22524
22814
  */
22525
22815
  [key: string]: unknown;
22526
22816
  data: ModelTypes['VoteOnAnnualGeneralMeetInput'];
22527
22817
  }
22528
- type IOutput$y = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
22818
+ type IOutput$A = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
22529
22819
 
22530
22820
  declare namespace voteOnAnnualGeneralMeet {
22531
- export { type IInput$y as IInput, type IOutput$y as IOutput, mutation$i as mutation, name$x as name };
22821
+ export { type IInput$A as IInput, type IOutput$A as IOutput, mutation$i as mutation, name$z as name };
22532
22822
  }
22533
22823
 
22534
22824
  /** Сгенерировать документ предложения повестки очередного общего собрания пайщиков */
22535
22825
 
22536
- declare namespace index$k {
22826
+ declare namespace index$l {
22537
22827
  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 };
22538
22828
  }
22539
22829
 
22540
- declare const name$w = "createWebPushSubscription";
22830
+ declare const name$y = "createWebPushSubscription";
22541
22831
  /**
22542
22832
  * Создать веб-пуш подписку для пользователя
22543
22833
  */
@@ -22560,20 +22850,20 @@ declare const mutation$h: {
22560
22850
  };
22561
22851
  }];
22562
22852
  };
22563
- interface IInput$x {
22853
+ interface IInput$z {
22564
22854
  /**
22565
22855
  * @private
22566
22856
  */
22567
22857
  [key: string]: unknown;
22568
22858
  data: ModelTypes['CreateSubscriptionInput'];
22569
22859
  }
22570
- type IOutput$x = InputType<GraphQLTypes['Mutation'], typeof mutation$h>;
22860
+ type IOutput$z = InputType<GraphQLTypes['Mutation'], typeof mutation$h>;
22571
22861
 
22572
22862
  declare namespace createWebPushSubscription {
22573
- export { type IInput$x as IInput, type IOutput$x as IOutput, mutation$h as mutation, name$w as name };
22863
+ export { type IInput$z as IInput, type IOutput$z as IOutput, mutation$h as mutation, name$y as name };
22574
22864
  }
22575
22865
 
22576
- declare const name$v = "deactivateWebPushSubscriptionById";
22866
+ declare const name$x = "deactivateWebPushSubscriptionById";
22577
22867
  /**
22578
22868
  * Деактивировать веб-пуш подписку по ID
22579
22869
  */
@@ -22582,26 +22872,26 @@ declare const mutation$g: {
22582
22872
  data: Variable<"DeactivateSubscriptionInput!", "data">;
22583
22873
  }, true];
22584
22874
  };
22585
- interface IInput$w {
22875
+ interface IInput$y {
22586
22876
  /**
22587
22877
  * @private
22588
22878
  */
22589
22879
  [key: string]: unknown;
22590
22880
  data: ModelTypes['DeactivateSubscriptionInput'];
22591
22881
  }
22592
- type IOutput$w = InputType<GraphQLTypes['Mutation'], typeof mutation$g>;
22882
+ type IOutput$y = InputType<GraphQLTypes['Mutation'], typeof mutation$g>;
22593
22883
 
22594
22884
  declare namespace deactivateWebPushSubscriptionById {
22595
- export { type IInput$w as IInput, type IOutput$w as IOutput, mutation$g as mutation, name$v as name };
22885
+ export { type IInput$y as IInput, type IOutput$y as IOutput, mutation$g as mutation, name$x as name };
22596
22886
  }
22597
22887
 
22598
22888
  /** Создать веб-пуш подписку для пользователя */
22599
22889
 
22600
- declare namespace index$j {
22890
+ declare namespace index$k {
22601
22891
  export { createWebPushSubscription as CreateWebPushSubscription, deactivateWebPushSubscriptionById as DeactivateWebPushSubscriptionById };
22602
22892
  }
22603
22893
 
22604
- declare const name$u = "addParticipant";
22894
+ declare const name$w = "addParticipant";
22605
22895
  declare const mutation$f: {
22606
22896
  addParticipant: [{
22607
22897
  data: Variable<"AddParticipantInput!", "data">;
@@ -22786,20 +23076,20 @@ declare const mutation$f: {
22786
23076
  };
22787
23077
  }];
22788
23078
  };
22789
- interface IInput$v {
23079
+ interface IInput$x {
22790
23080
  /**
22791
23081
  * @private
22792
23082
  */
22793
23083
  [key: string]: unknown;
22794
23084
  data: ModelTypes['AddParticipantInput'];
22795
23085
  }
22796
- type IOutput$v = InputType<GraphQLTypes['Mutation'], typeof mutation$f>;
23086
+ type IOutput$x = InputType<GraphQLTypes['Mutation'], typeof mutation$f>;
22797
23087
 
22798
23088
  declare namespace addParticipant {
22799
- export { type IInput$v as IInput, type IOutput$v as IOutput, mutation$f as mutation, name$u as name };
23089
+ export { type IInput$x as IInput, type IOutput$x as IOutput, mutation$f as mutation, name$w as name };
22800
23090
  }
22801
23091
 
22802
- declare const name$t = "generateParticipantApplication";
23092
+ declare const name$v = "generateParticipantApplication";
22803
23093
  declare const mutation$e: {
22804
23094
  generateParticipantApplication: [{
22805
23095
  data: Variable<"ParticipantApplicationGenerateDocumentInput!", "data">;
@@ -22812,7 +23102,7 @@ declare const mutation$e: {
22812
23102
  meta: boolean;
22813
23103
  }];
22814
23104
  };
22815
- interface IInput$u {
23105
+ interface IInput$w {
22816
23106
  /**
22817
23107
  * @private
22818
23108
  */
@@ -22820,13 +23110,13 @@ interface IInput$u {
22820
23110
  data: ModelTypes['ParticipantApplicationGenerateDocumentInput'];
22821
23111
  options?: ModelTypes['GenerateDocumentOptionsInput'];
22822
23112
  }
22823
- type IOutput$u = InputType<GraphQLTypes['Mutation'], typeof mutation$e>;
23113
+ type IOutput$w = InputType<GraphQLTypes['Mutation'], typeof mutation$e>;
22824
23114
 
22825
23115
  declare namespace generateParticipantApplication {
22826
- export { type IInput$u as IInput, type IOutput$u as IOutput, mutation$e as mutation, name$t as name };
23116
+ export { type IInput$w as IInput, type IOutput$w as IOutput, mutation$e as mutation, name$v as name };
22827
23117
  }
22828
23118
 
22829
- declare const name$s = "generateParticipantApplicationDecision";
23119
+ declare const name$u = "generateParticipantApplicationDecision";
22830
23120
  declare const mutation$d: {
22831
23121
  generateParticipantApplicationDecision: [{
22832
23122
  data: Variable<"ParticipantApplicationDecisionGenerateDocumentInput!", "data">;
@@ -22839,7 +23129,7 @@ declare const mutation$d: {
22839
23129
  meta: boolean;
22840
23130
  }];
22841
23131
  };
22842
- interface IInput$t {
23132
+ interface IInput$v {
22843
23133
  /**
22844
23134
  * @private
22845
23135
  */
@@ -22847,13 +23137,13 @@ interface IInput$t {
22847
23137
  data: ModelTypes['ParticipantApplicationDecisionGenerateDocumentInput'];
22848
23138
  options?: ModelTypes['GenerateDocumentOptionsInput'];
22849
23139
  }
22850
- type IOutput$t = InputType<GraphQLTypes['Mutation'], typeof mutation$d>;
23140
+ type IOutput$v = InputType<GraphQLTypes['Mutation'], typeof mutation$d>;
22851
23141
 
22852
23142
  declare namespace generateParticipantApplicationDecision {
22853
- export { type IInput$t as IInput, type IOutput$t as IOutput, mutation$d as mutation, name$s as name };
23143
+ export { type IInput$v as IInput, type IOutput$v as IOutput, mutation$d as mutation, name$u as name };
22854
23144
  }
22855
23145
 
22856
- declare const name$r = "registerParticipant";
23146
+ declare const name$t = "registerParticipant";
22857
23147
  declare const mutation$c: {
22858
23148
  registerParticipant: [{
22859
23149
  data: Variable<"RegisterParticipantInput!", "data">;
@@ -23038,20 +23328,20 @@ declare const mutation$c: {
23038
23328
  };
23039
23329
  }];
23040
23330
  };
23041
- interface IInput$s {
23331
+ interface IInput$u {
23042
23332
  /**
23043
23333
  * @private
23044
23334
  */
23045
23335
  [key: string]: unknown;
23046
23336
  data: ModelTypes['RegisterParticipantInput'];
23047
23337
  }
23048
- type IOutput$s = InputType<GraphQLTypes['Mutation'], typeof mutation$c>;
23338
+ type IOutput$u = InputType<GraphQLTypes['Mutation'], typeof mutation$c>;
23049
23339
 
23050
23340
  declare namespace registerParticipant {
23051
- export { type IInput$s as IInput, type IOutput$s as IOutput, mutation$c as mutation, name$r as name };
23341
+ export { type IInput$u as IInput, type IOutput$u as IOutput, mutation$c as mutation, name$t as name };
23052
23342
  }
23053
23343
 
23054
- declare const name$q = "createInitialPayment";
23344
+ declare const name$s = "createInitialPayment";
23055
23345
  declare const mutation$b: {
23056
23346
  createInitialPayment: [{
23057
23347
  data: Variable<"CreateInitialPaymentInput!", "data">;
@@ -23123,13 +23413,13 @@ declare const mutation$b: {
23123
23413
  is_final: boolean;
23124
23414
  }];
23125
23415
  };
23126
- interface IInput$r {
23416
+ interface IInput$t {
23127
23417
  data: ModelTypes['CreateInitialPaymentInput'];
23128
23418
  }
23129
- type IOutput$r = InputType<GraphQLTypes['Mutation'], typeof mutation$b>;
23419
+ type IOutput$t = InputType<GraphQLTypes['Mutation'], typeof mutation$b>;
23130
23420
 
23131
23421
  declare namespace createInitialPayment {
23132
- export { type IInput$r as IInput, type IOutput$r as IOutput, mutation$b as mutation, name$q as name };
23422
+ export { type IInput$t as IInput, type IOutput$t as IOutput, mutation$b as mutation, name$s as name };
23133
23423
  }
23134
23424
 
23135
23425
  /**
@@ -23167,11 +23457,11 @@ declare namespace createInitialPayment {
23167
23457
  ```
23168
23458
  /** Добавить активного пайщика, который вступил в кооператив, не используя платформу (заполнив заявление собственноручно, оплатив вступительный и минимальный паевый взносы, и получив протокол решения совета) */
23169
23459
 
23170
- declare namespace index$i {
23460
+ declare namespace index$j {
23171
23461
  export { addParticipant as AddParticipant, createInitialPayment as CreateInitialPayment, generateParticipantApplication as GenerateParticipantApplication, generateParticipantApplicationDecision as GenerateParticipantApplicationDecision, registerParticipant as RegisterParticipant };
23172
23462
  }
23173
23463
 
23174
- declare const name$p = "createBankAccount";
23464
+ declare const name$r = "createBankAccount";
23175
23465
  declare const mutation$a: {
23176
23466
  createBankAccount: [{
23177
23467
  data: Variable<"CreateBankAccountInput!", "data">;
@@ -23201,39 +23491,39 @@ declare const mutation$a: {
23201
23491
  username: boolean;
23202
23492
  }];
23203
23493
  };
23204
- interface IInput$q {
23494
+ interface IInput$s {
23205
23495
  /**
23206
23496
  * @private
23207
23497
  */
23208
23498
  [key: string]: unknown;
23209
23499
  data: ModelTypes['CreateBankAccountInput'];
23210
23500
  }
23211
- type IOutput$q = InputType<GraphQLTypes['Mutation'], typeof mutation$a>;
23501
+ type IOutput$s = InputType<GraphQLTypes['Mutation'], typeof mutation$a>;
23212
23502
 
23213
23503
  declare namespace createBankAccount {
23214
- export { type IInput$q as IInput, type IOutput$q as IOutput, mutation$a as mutation, name$p as name };
23504
+ export { type IInput$s as IInput, type IOutput$s as IOutput, mutation$a as mutation, name$r as name };
23215
23505
  }
23216
23506
 
23217
- declare const name$o = "deletePaymentMethod";
23507
+ declare const name$q = "deletePaymentMethod";
23218
23508
  declare const mutation$9: {
23219
23509
  deletePaymentMethod: [{
23220
23510
  data: Variable<"DeletePaymentMethodInput!", "data">;
23221
23511
  }, true];
23222
23512
  };
23223
- interface IInput$p {
23513
+ interface IInput$r {
23224
23514
  /**
23225
23515
  * @private
23226
23516
  */
23227
23517
  [key: string]: unknown;
23228
23518
  data: ModelTypes['DeletePaymentMethodInput'];
23229
23519
  }
23230
- type IOutput$p = InputType<GraphQLTypes['Mutation'], typeof mutation$9>;
23520
+ type IOutput$r = InputType<GraphQLTypes['Mutation'], typeof mutation$9>;
23231
23521
 
23232
23522
  declare namespace deletePaymentMethod {
23233
- export { type IInput$p as IInput, type IOutput$p as IOutput, mutation$9 as mutation, name$o as name };
23523
+ export { type IInput$r as IInput, type IOutput$r as IOutput, mutation$9 as mutation, name$q as name };
23234
23524
  }
23235
23525
 
23236
- declare const name$n = "updateBankAccount";
23526
+ declare const name$p = "updateBankAccount";
23237
23527
  declare const mutation$8: {
23238
23528
  updateBankAccount: [{
23239
23529
  data: Variable<"UpdateBankAccountInput!", "data">;
@@ -23263,26 +23553,26 @@ declare const mutation$8: {
23263
23553
  username: boolean;
23264
23554
  }];
23265
23555
  };
23266
- interface IInput$o {
23556
+ interface IInput$q {
23267
23557
  /**
23268
23558
  * @private
23269
23559
  */
23270
23560
  [key: string]: unknown;
23271
23561
  data: ModelTypes['UpdateBankAccountInput'];
23272
23562
  }
23273
- type IOutput$o = InputType<GraphQLTypes['Mutation'], typeof mutation$8>;
23563
+ type IOutput$q = InputType<GraphQLTypes['Mutation'], typeof mutation$8>;
23274
23564
 
23275
23565
  declare namespace updateBankAccount {
23276
- export { type IInput$o as IInput, type IOutput$o as IOutput, mutation$8 as mutation, name$n as name };
23566
+ export { type IInput$q as IInput, type IOutput$q as IOutput, mutation$8 as mutation, name$p as name };
23277
23567
  }
23278
23568
 
23279
23569
  /** Добавить метод оплаты */
23280
23570
 
23281
- declare namespace index$h {
23571
+ declare namespace index$i {
23282
23572
  export { createBankAccount as CreateBankAccount, deletePaymentMethod as DeletePaymentMethod, updateBankAccount as UpdateBankAccount };
23283
23573
  }
23284
23574
 
23285
- declare const name$m = "initSystem";
23575
+ declare const name$o = "initSystem";
23286
23576
  declare const mutation$7: {
23287
23577
  initSystem: [{
23288
23578
  data: Variable<"Init!", "data">;
@@ -23511,20 +23801,20 @@ declare const mutation$7: {
23511
23801
  };
23512
23802
  }];
23513
23803
  };
23514
- interface IInput$n {
23804
+ interface IInput$p {
23515
23805
  /**
23516
23806
  * @private
23517
23807
  */
23518
23808
  [key: string]: unknown;
23519
23809
  data: ModelTypes['Init'];
23520
23810
  }
23521
- type IOutput$n = InputType<GraphQLTypes['Mutation'], typeof mutation$7>;
23811
+ type IOutput$p = InputType<GraphQLTypes['Mutation'], typeof mutation$7>;
23522
23812
 
23523
23813
  declare namespace initSystem {
23524
- export { type IInput$n as IInput, type IOutput$n as IOutput, mutation$7 as mutation, name$m as name };
23814
+ export { type IInput$p as IInput, type IOutput$p as IOutput, mutation$7 as mutation, name$o as name };
23525
23815
  }
23526
23816
 
23527
- declare const name$l = "installSystem";
23817
+ declare const name$n = "installSystem";
23528
23818
  declare const mutation$6: {
23529
23819
  installSystem: [{
23530
23820
  data: Variable<"Install!", "data">;
@@ -23753,39 +24043,39 @@ declare const mutation$6: {
23753
24043
  };
23754
24044
  }];
23755
24045
  };
23756
- interface IInput$m {
24046
+ interface IInput$o {
23757
24047
  /**
23758
24048
  * @private
23759
24049
  */
23760
24050
  [key: string]: unknown;
23761
24051
  data: ModelTypes['Install'];
23762
24052
  }
23763
- type IOutput$m = InputType<GraphQLTypes['Mutation'], typeof mutation$6>;
24053
+ type IOutput$o = InputType<GraphQLTypes['Mutation'], typeof mutation$6>;
23764
24054
 
23765
24055
  declare namespace installSystem {
23766
- export { type IInput$m as IInput, type IOutput$m as IOutput, mutation$6 as mutation, name$l as name };
24056
+ export { type IInput$o as IInput, type IOutput$o as IOutput, mutation$6 as mutation, name$n as name };
23767
24057
  }
23768
24058
 
23769
- declare const name$k = "setWif";
24059
+ declare const name$m = "setWif";
23770
24060
  declare const mutation$5: {
23771
24061
  setWif: [{
23772
24062
  data: Variable<"SetWifInput!", "data">;
23773
24063
  }, true];
23774
24064
  };
23775
- interface IInput$l {
24065
+ interface IInput$n {
23776
24066
  /**
23777
24067
  * @private
23778
24068
  */
23779
24069
  [key: string]: unknown;
23780
24070
  data: ModelTypes['SetWifInput'];
23781
24071
  }
23782
- type IOutput$l = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
24072
+ type IOutput$n = InputType<GraphQLTypes['Mutation'], typeof mutation$5>;
23783
24073
 
23784
24074
  declare namespace saveWif {
23785
- export { type IInput$l as IInput, type IOutput$l as IOutput, mutation$5 as mutation, name$k as name };
24075
+ export { type IInput$n as IInput, type IOutput$n as IOutput, mutation$5 as mutation, name$m as name };
23786
24076
  }
23787
24077
 
23788
- declare const name$j = "updateSystem";
24078
+ declare const name$l = "updateSystem";
23789
24079
  declare const mutation$4: {
23790
24080
  updateSystem: [{
23791
24081
  data: Variable<"Update!", "data">;
@@ -24014,26 +24304,26 @@ declare const mutation$4: {
24014
24304
  };
24015
24305
  }];
24016
24306
  };
24017
- interface IInput$k {
24307
+ interface IInput$m {
24018
24308
  /**
24019
24309
  * @private
24020
24310
  */
24021
24311
  [key: string]: unknown;
24022
24312
  data: ModelTypes['Update'];
24023
24313
  }
24024
- type IOutput$k = InputType<GraphQLTypes['Mutation'], typeof mutation$4>;
24314
+ type IOutput$m = InputType<GraphQLTypes['Mutation'], typeof mutation$4>;
24025
24315
 
24026
24316
  declare namespace updateSystem {
24027
- export { type IInput$k as IInput, type IOutput$k as IOutput, mutation$4 as mutation, name$j as name };
24317
+ export { type IInput$m as IInput, type IOutput$m as IOutput, mutation$4 as mutation, name$l as name };
24028
24318
  }
24029
24319
 
24030
24320
  /** Произвести инициализацию программного обеспечения перед установкой совета методом install */
24031
24321
 
24032
- declare namespace index$g {
24322
+ declare namespace index$h {
24033
24323
  export { initSystem as InitSystem, installSystem as InstallSystem, saveWif as SaveWif, updateSystem as UpdateSystem };
24034
24324
  }
24035
24325
 
24036
- declare const name$i = "createWithdraw";
24326
+ declare const name$k = "createWithdraw";
24037
24327
  declare const mutation$3: {
24038
24328
  createWithdraw: [{
24039
24329
  input: Variable<"CreateWithdrawInput!", "input">;
@@ -24041,18 +24331,18 @@ declare const mutation$3: {
24041
24331
  withdraw_hash: boolean;
24042
24332
  }];
24043
24333
  };
24044
- interface IInput$j {
24334
+ interface IInput$l {
24045
24335
  input: ModelTypes['CreateWithdrawInput'];
24046
24336
  }
24047
- type IOutput$j = {
24048
- [name$i]: ModelTypes['CreateWithdrawResponse'];
24337
+ type IOutput$l = {
24338
+ [name$k]: ModelTypes['CreateWithdrawResponse'];
24049
24339
  };
24050
24340
 
24051
24341
  declare namespace createWithdraw {
24052
- export { type IInput$j as IInput, type IOutput$j as IOutput, mutation$3 as mutation, name$i as name };
24342
+ export { type IInput$l as IInput, type IOutput$l as IOutput, mutation$3 as mutation, name$k as name };
24053
24343
  }
24054
24344
 
24055
- declare const name$h = "createDepositPayment";
24345
+ declare const name$j = "createDepositPayment";
24056
24346
  declare const mutation$2: {
24057
24347
  createDepositPayment: [{
24058
24348
  data: Variable<"CreateDepositPaymentInput!", "data">;
@@ -24124,16 +24414,16 @@ declare const mutation$2: {
24124
24414
  is_final: boolean;
24125
24415
  }];
24126
24416
  };
24127
- interface IInput$i {
24417
+ interface IInput$k {
24128
24418
  data: ModelTypes['CreateDepositPaymentInput'];
24129
24419
  }
24130
- type IOutput$i = InputType<GraphQLTypes['Mutation'], typeof mutation$2>;
24420
+ type IOutput$k = InputType<GraphQLTypes['Mutation'], typeof mutation$2>;
24131
24421
 
24132
24422
  declare namespace createDepositPayment {
24133
- export { type IInput$i as IInput, type IOutput$i as IOutput, mutation$2 as mutation, name$h as name };
24423
+ export { type IInput$k as IInput, type IOutput$k as IOutput, mutation$2 as mutation, name$j as name };
24134
24424
  }
24135
24425
 
24136
- declare const name$g = "generateReturnByMoneyStatementDocument";
24426
+ declare const name$i = "generateReturnByMoneyStatementDocument";
24137
24427
  declare const mutation$1: {
24138
24428
  generateReturnByMoneyStatementDocument: [{
24139
24429
  data: Variable<"ReturnByMoneyGenerateDocumentInput!", "data">;
@@ -24146,19 +24436,19 @@ declare const mutation$1: {
24146
24436
  meta: boolean;
24147
24437
  }];
24148
24438
  };
24149
- interface IInput$h {
24439
+ interface IInput$j {
24150
24440
  data: ModelTypes['ReturnByMoneyGenerateDocumentInput'];
24151
24441
  options?: ModelTypes['GenerateDocumentOptionsInput'];
24152
24442
  }
24153
- type IOutput$h = {
24154
- [name$g]: ModelTypes['GeneratedDocument'];
24443
+ type IOutput$j = {
24444
+ [name$i]: ModelTypes['GeneratedDocument'];
24155
24445
  };
24156
24446
 
24157
24447
  declare namespace generateReturnByMoneyStatementDocument {
24158
- export { type IInput$h as IInput, type IOutput$h as IOutput, mutation$1 as mutation, name$g as name };
24448
+ export { type IInput$j as IInput, type IOutput$j as IOutput, mutation$1 as mutation, name$i as name };
24159
24449
  }
24160
24450
 
24161
- declare const name$f = "generateReturnByMoneyDecisionDocument";
24451
+ declare const name$h = "generateReturnByMoneyDecisionDocument";
24162
24452
  declare const mutation: {
24163
24453
  generateReturnByMoneyDecisionDocument: [{
24164
24454
  data: Variable<"ReturnByMoneyDecisionGenerateDocumentInput!", "data">;
@@ -24171,34 +24461,34 @@ declare const mutation: {
24171
24461
  meta: boolean;
24172
24462
  }];
24173
24463
  };
24174
- interface IInput$g {
24464
+ interface IInput$i {
24175
24465
  data: ModelTypes['ReturnByMoneyDecisionGenerateDocumentInput'];
24176
24466
  options?: ModelTypes['GenerateDocumentOptionsInput'];
24177
24467
  }
24178
- type IOutput$g = {
24179
- [name$f]: ModelTypes['GeneratedDocument'];
24468
+ type IOutput$i = {
24469
+ [name$h]: ModelTypes['GeneratedDocument'];
24180
24470
  };
24181
24471
 
24182
24472
  declare const generateReturnByMoneyDecisionDocument_mutation: typeof mutation;
24183
24473
  declare namespace generateReturnByMoneyDecisionDocument {
24184
- export { type IInput$g as IInput, type IOutput$g as IOutput, generateReturnByMoneyDecisionDocument_mutation as mutation, name$f as name };
24474
+ export { type IInput$i as IInput, type IOutput$i as IOutput, generateReturnByMoneyDecisionDocument_mutation as mutation, name$h as name };
24185
24475
  }
24186
24476
 
24187
24477
  /** Создать заявку на вывод средств */
24188
24478
 
24189
- declare namespace index$f {
24479
+ declare namespace index$g {
24190
24480
  export { createDepositPayment as CreateDepositPayment, createWithdraw as CreateWithdraw, generateReturnByMoneyDecisionDocument as GenerateReturnByMoneyDecisionDocument, generateReturnByMoneyStatementDocument as GenerateReturnByMoneyStatementDocument };
24191
24481
  }
24192
24482
 
24193
24483
  declare namespace Mutations {
24194
- export { index$s as Accounts, index$r as Agreements, index$q as Auth, index$p as Branches, index$o as Cooplace, index$n as Extensions, index$m as FreeDecisions, index$l as Gateway, index$k as Meet, index$j as Notification, index$i as Participants, index$h as PaymentMethods, index$g as System, index$f as Wallet };
24484
+ export { index$t as Accounts, index$s as Agreements, index$r as Auth, index$q as Branches, index$p as Cooplace, index$o as Extensions, index$n as FreeDecisions, index$m as Gateway, index$l as Meet, index$k as Notification, index$j as Participants, index$i as PaymentMethods, index$h as System, index$g as Wallet };
24195
24485
  }
24196
24486
 
24197
- declare const name$e = "getAccount";
24487
+ declare const name$g = "getAccount";
24198
24488
  /**
24199
24489
  * Извлекает комплексную информацию о аккаунте
24200
24490
  */
24201
- declare const query$f: {
24491
+ declare const query$h: {
24202
24492
  getAccount: [{
24203
24493
  data: Variable<"GetAccountInput!", "data">;
24204
24494
  }, {
@@ -24382,24 +24672,24 @@ declare const query$f: {
24382
24672
  };
24383
24673
  }];
24384
24674
  };
24385
- interface IInput$f {
24675
+ interface IInput$h {
24386
24676
  /**
24387
24677
  * @private
24388
24678
  */
24389
24679
  [key: string]: unknown;
24390
24680
  data: ModelTypes['GetAccountInput'];
24391
24681
  }
24392
- type IOutput$f = InputType<GraphQLTypes['Query'], typeof query$f>;
24682
+ type IOutput$h = InputType<GraphQLTypes['Query'], typeof query$h>;
24393
24683
 
24394
24684
  declare namespace getAccount {
24395
- export { type IInput$f as IInput, type IOutput$f as IOutput, name$e as name, query$f as query };
24685
+ export { type IInput$h as IInput, type IOutput$h as IOutput, name$g as name, query$h as query };
24396
24686
  }
24397
24687
 
24398
- declare const name$d = "getAccounts";
24688
+ declare const name$f = "getAccounts";
24399
24689
  /**
24400
24690
  * Извлекает комплексную информацию о аккаунтах с постраничным отображением
24401
24691
  */
24402
- declare const query$e: {
24692
+ declare const query$g: {
24403
24693
  getAccounts: [{
24404
24694
  data: Variable<"GetAccountsInput", "data">;
24405
24695
  options: Variable<"PaginationInput", "options">;
@@ -24589,7 +24879,7 @@ declare const query$e: {
24589
24879
  currentPage: boolean;
24590
24880
  }];
24591
24881
  };
24592
- interface IInput$e {
24882
+ interface IInput$g {
24593
24883
  /**
24594
24884
  * @private
24595
24885
  */
@@ -24597,17 +24887,17 @@ interface IInput$e {
24597
24887
  data?: ModelTypes['GetAccountsInput'];
24598
24888
  options?: ModelTypes['PaginationInput'];
24599
24889
  }
24600
- type IOutput$e = InputType<GraphQLTypes['Query'], typeof query$e>;
24890
+ type IOutput$g = InputType<GraphQLTypes['Query'], typeof query$g>;
24601
24891
 
24602
24892
  declare namespace getAccounts {
24603
- export { type IInput$e as IInput, type IOutput$e as IOutput, name$d as name, query$e as query };
24893
+ export { type IInput$g as IInput, type IOutput$g as IOutput, name$f as name, query$g as query };
24604
24894
  }
24605
24895
 
24606
- declare const name$c = "searchPrivateAccounts";
24896
+ declare const name$e = "searchPrivateAccounts";
24607
24897
  /**
24608
24898
  * Поиск приватных данных аккаунтов по запросу
24609
24899
  */
24610
- declare const query$d: {
24900
+ declare const query$f: {
24611
24901
  searchPrivateAccounts: [{
24612
24902
  data: Variable<"SearchPrivateAccountsInput!", "data">;
24613
24903
  }, {
@@ -24675,32 +24965,32 @@ declare const query$d: {
24675
24965
  };
24676
24966
  }];
24677
24967
  };
24678
- interface IInput$d {
24968
+ interface IInput$f {
24679
24969
  /**
24680
24970
  * @private
24681
24971
  */
24682
24972
  [key: string]: unknown;
24683
24973
  data: ModelTypes['SearchPrivateAccountsInput'];
24684
24974
  }
24685
- type IOutput$d = InputType<GraphQLTypes['Query'], typeof query$d>;
24975
+ type IOutput$f = InputType<GraphQLTypes['Query'], typeof query$f>;
24686
24976
 
24687
24977
  declare namespace searchPrivateAccounts {
24688
- export { type IInput$d as IInput, type IOutput$d as IOutput, name$c as name, query$d as query };
24978
+ export { type IInput$f as IInput, type IOutput$f as IOutput, name$e as name, query$f as query };
24689
24979
  }
24690
24980
 
24691
24981
  /**
24692
24982
 
24693
24983
  /** Получить сводную информацию о аккаунте */
24694
24984
 
24695
- declare namespace index$e {
24985
+ declare namespace index$f {
24696
24986
  export { getAccount as GetAccount, getAccounts as GetAccounts, searchPrivateAccounts as SearchPrivateAccounts };
24697
24987
  }
24698
24988
 
24699
- declare const name$b = "getAgenda";
24989
+ declare const name$d = "getAgenda";
24700
24990
  /**
24701
24991
  * Извлекает информацию о состоянии системы
24702
24992
  */
24703
- declare const query$c: {
24993
+ declare const query$e: {
24704
24994
  getAgenda: {
24705
24995
  action: {
24706
24996
  account: boolean;
@@ -25510,29 +25800,29 @@ declare const query$c: {
25510
25800
  };
25511
25801
  };
25512
25802
  };
25513
- interface IInput$c {
25803
+ interface IInput$e {
25514
25804
  /**
25515
25805
  * @private
25516
25806
  */
25517
25807
  [key: string]: unknown;
25518
25808
  }
25519
- type IOutput$c = InputType<GraphQLTypes['Query'], typeof query$c>;
25809
+ type IOutput$e = InputType<GraphQLTypes['Query'], typeof query$e>;
25520
25810
 
25521
25811
  declare namespace getAgenda {
25522
- export { type IInput$c as IInput, type IOutput$c as IOutput, name$b as name, query$c as query };
25812
+ export { type IInput$e as IInput, type IOutput$e as IOutput, name$d as name, query$e as query };
25523
25813
  }
25524
25814
 
25525
25815
  /** Получить список вопросов совета кооператива для голосования */
25526
25816
 
25527
- declare namespace index$d {
25817
+ declare namespace index$e {
25528
25818
  export { getAgenda as GetAgenda };
25529
25819
  }
25530
25820
 
25531
- declare const name$a = "getBranches";
25821
+ declare const name$c = "getBranches";
25532
25822
  /**
25533
25823
  * Извлекает подробную информацию о кооперативных участках
25534
25824
  */
25535
- declare const query$b: {
25825
+ declare const query$d: {
25536
25826
  getBranches: [{
25537
25827
  data: Variable<"GetBranchesInput!", "data">;
25538
25828
  }, {
@@ -25614,24 +25904,24 @@ declare const query$b: {
25614
25904
  type: boolean;
25615
25905
  }];
25616
25906
  };
25617
- interface IInput$b {
25907
+ interface IInput$d {
25618
25908
  /**
25619
25909
  * @private
25620
25910
  */
25621
25911
  [key: string]: unknown;
25622
25912
  data: ModelTypes['GetBranchesInput'];
25623
25913
  }
25624
- type IOutput$b = InputType<GraphQLTypes['Query'], typeof query$b>;
25914
+ type IOutput$d = InputType<GraphQLTypes['Query'], typeof query$d>;
25625
25915
 
25626
25916
  declare namespace getBranches {
25627
- export { type IInput$b as IInput, type IOutput$b as IOutput, name$a as name, query$b as query };
25917
+ export { type IInput$d as IInput, type IOutput$d as IOutput, name$c as name, query$d as query };
25628
25918
  }
25629
25919
 
25630
- declare const name$9 = "getBranches";
25920
+ declare const name$b = "getBranches";
25631
25921
  /**
25632
25922
  * Извлекает информацию о кооперативных участках для пользователя с ролью user
25633
25923
  */
25634
- declare const query$a: {
25924
+ declare const query$c: {
25635
25925
  getBranches: [{
25636
25926
  data: Variable<"GetBranchesInput!", "data">;
25637
25927
  }, {
@@ -25679,30 +25969,30 @@ declare const query$a: {
25679
25969
  type: boolean;
25680
25970
  }];
25681
25971
  };
25682
- interface IInput$a {
25972
+ interface IInput$c {
25683
25973
  /**
25684
25974
  * @private
25685
25975
  */
25686
25976
  [key: string]: unknown;
25687
25977
  data: ModelTypes['GetBranchesInput'];
25688
25978
  }
25689
- type IOutput$a = InputType<GraphQLTypes['Query'], typeof query$a>;
25979
+ type IOutput$c = InputType<GraphQLTypes['Query'], typeof query$c>;
25690
25980
 
25691
25981
  declare namespace getPublicBranches {
25692
- export { type IInput$a as IInput, type IOutput$a as IOutput, name$9 as name, query$a as query };
25982
+ export { type IInput$c as IInput, type IOutput$c as IOutput, name$b as name, query$c as query };
25693
25983
  }
25694
25984
 
25695
25985
  /** Получить список кооперативных участков */
25696
25986
 
25697
- declare namespace index$c {
25987
+ declare namespace index$d {
25698
25988
  export { getBranches as GetBranches, getPublicBranches as GetPublicBranches };
25699
25989
  }
25700
25990
 
25701
- declare const name$8 = "getDesktop";
25991
+ declare const name$a = "getDesktop";
25702
25992
  /**
25703
25993
  * Извлекает рабочий стол
25704
25994
  */
25705
- declare const query$9: {
25995
+ declare const query$b: {
25706
25996
  getDesktop: {
25707
25997
  coopname: boolean;
25708
25998
  layout: boolean;
@@ -25714,29 +26004,29 @@ declare const query$9: {
25714
26004
  };
25715
26005
  };
25716
26006
  };
25717
- interface IInput$9 {
26007
+ interface IInput$b {
25718
26008
  /**
25719
26009
  * @private
25720
26010
  */
25721
26011
  [key: string]: unknown;
25722
26012
  }
25723
- type IOutput$9 = InputType<GraphQLTypes['Query'], typeof query$9>;
26013
+ type IOutput$b = InputType<GraphQLTypes['Query'], typeof query$b>;
25724
26014
 
25725
26015
  declare namespace getDesktop {
25726
- export { type IInput$9 as IInput, type IOutput$9 as IOutput, name$8 as name, query$9 as query };
26016
+ export { type IInput$b as IInput, type IOutput$b as IOutput, name$a as name, query$b as query };
25727
26017
  }
25728
26018
 
25729
26019
  /** Получить состав приложений рабочего стола */
25730
26020
 
25731
- declare namespace index$b {
26021
+ declare namespace index$c {
25732
26022
  export { getDesktop as GetDesktop };
25733
26023
  }
25734
26024
 
25735
- declare const name$7 = "getDocuments";
26025
+ declare const name$9 = "getDocuments";
25736
26026
  /**
25737
26027
  * Извлекает документы с агрегатами
25738
26028
  */
25739
- declare const query$8: {
26029
+ declare const query$a: {
25740
26030
  getDocuments: [{
25741
26031
  data: Variable<"GetDocumentsInput!", "data">;
25742
26032
  }, {
@@ -26311,28 +26601,28 @@ declare const query$8: {
26311
26601
  currentPage: boolean;
26312
26602
  }];
26313
26603
  };
26314
- interface IInput$8 {
26604
+ interface IInput$a {
26315
26605
  /**
26316
26606
  * @private
26317
26607
  */
26318
26608
  [key: string]: unknown;
26319
26609
  data: ModelTypes['GetDocumentsInput'];
26320
26610
  }
26321
- type IOutput$8 = InputType<GraphQLTypes['Query'], typeof query$8>;
26611
+ type IOutput$a = InputType<GraphQLTypes['Query'], typeof query$a>;
26322
26612
 
26323
26613
  declare namespace getDocuments {
26324
- export { type IInput$8 as IInput, type IOutput$8 as IOutput, name$7 as name, query$8 as query };
26614
+ export { type IInput$a as IInput, type IOutput$a as IOutput, name$9 as name, query$a as query };
26325
26615
  }
26326
26616
 
26327
- declare namespace index$a {
26617
+ declare namespace index$b {
26328
26618
  export { getDocuments as GetDocuments };
26329
26619
  }
26330
26620
 
26331
- declare const name$6 = "getExtensions";
26621
+ declare const name$8 = "getExtensions";
26332
26622
  /**
26333
26623
  * Извлекает расширения
26334
26624
  */
26335
- declare const query$7: {
26625
+ declare const query$9: {
26336
26626
  getExtensions: [{
26337
26627
  data: Variable<"GetExtensionsInput", "data">;
26338
26628
  }, {
@@ -26356,27 +26646,27 @@ declare const query$7: {
26356
26646
  instructions: boolean;
26357
26647
  }];
26358
26648
  };
26359
- interface IInput$7 {
26649
+ interface IInput$9 {
26360
26650
  /**
26361
26651
  * @private
26362
26652
  */
26363
26653
  [key: string]: unknown;
26364
26654
  data: ModelTypes['GetExtensionsInput'];
26365
26655
  }
26366
- type IOutput$7 = InputType<GraphQLTypes['Query'], typeof query$7>;
26656
+ type IOutput$9 = InputType<GraphQLTypes['Query'], typeof query$9>;
26367
26657
 
26368
26658
  declare namespace getExtensions {
26369
- export { type IInput$7 as IInput, type IOutput$7 as IOutput, name$6 as name, query$7 as query };
26659
+ export { type IInput$9 as IInput, type IOutput$9 as IOutput, name$8 as name, query$9 as query };
26370
26660
  }
26371
26661
 
26372
26662
  /** Получить список расширений */
26373
26663
 
26374
- declare namespace index$9 {
26664
+ declare namespace index$a {
26375
26665
  export { getExtensions as GetExtensions };
26376
26666
  }
26377
26667
 
26378
- declare const name$5 = "getPayments";
26379
- declare const query$6: {
26668
+ declare const name$7 = "getPayments";
26669
+ declare const query$8: {
26380
26670
  getPayments: [{
26381
26671
  data: Variable<"PaymentFiltersInput", "data">;
26382
26672
  options: Variable<"PaginationInput", "options">;
@@ -26453,22 +26743,95 @@ declare const query$6: {
26453
26743
  currentPage: boolean;
26454
26744
  }];
26455
26745
  };
26456
- interface IInput$6 {
26746
+ interface IInput$8 {
26457
26747
  data?: ModelTypes['PaymentFiltersInput'];
26458
26748
  options?: ModelTypes['PaginationInput'];
26459
26749
  }
26460
- type IOutput$6 = InputType<GraphQLTypes['Query'], typeof query$6>;
26750
+ type IOutput$8 = InputType<GraphQLTypes['Query'], typeof query$8>;
26461
26751
 
26462
26752
  declare namespace getPayments {
26463
- export { type IInput$6 as IInput, type IOutput$6 as IOutput, name$5 as name, query$6 as query };
26753
+ export { type IInput$8 as IInput, type IOutput$8 as IOutput, name$7 as name, query$8 as query };
26464
26754
  }
26465
26755
 
26466
26756
  /** Получить список платежей с возможностью фильтрации по типу, статусу и направлению. */
26467
26757
 
26468
- declare namespace index$8 {
26758
+ declare namespace index$9 {
26469
26759
  export { getPayments as GetPayments };
26470
26760
  }
26471
26761
 
26762
+ declare const name$6 = "getLedger";
26763
+ /**
26764
+ * Получить полное состояние плана счетов кооператива
26765
+ */
26766
+ declare const query$7: {
26767
+ getLedger: [{
26768
+ data: Variable<"GetLedgerInput!", "data">;
26769
+ }, {
26770
+ coopname: boolean;
26771
+ chartOfAccounts: {
26772
+ id: boolean;
26773
+ displayId: boolean;
26774
+ name: boolean;
26775
+ available: boolean;
26776
+ blocked: boolean;
26777
+ writeoff: boolean;
26778
+ };
26779
+ }];
26780
+ };
26781
+ interface IInput$7 {
26782
+ /**
26783
+ * @private
26784
+ */
26785
+ [key: string]: unknown;
26786
+ data: ModelTypes['GetLedgerInput'];
26787
+ }
26788
+ type IOutput$7 = InputType<GraphQLTypes['Query'], typeof query$7>;
26789
+
26790
+ declare namespace getLedger {
26791
+ export { type IInput$7 as IInput, type IOutput$7 as IOutput, name$6 as name, query$7 as query };
26792
+ }
26793
+
26794
+ declare const name$5 = "getLedgerHistory";
26795
+ /**
26796
+ * Получить историю операций по счетам кооператива
26797
+ */
26798
+ declare const query$6: {
26799
+ getLedgerHistory: [{
26800
+ data: Variable<"GetLedgerHistoryInput!", "data">;
26801
+ }, {
26802
+ items: {
26803
+ global_sequence: boolean;
26804
+ coopname: boolean;
26805
+ action: boolean;
26806
+ created_at: boolean;
26807
+ account_id: boolean;
26808
+ quantity: boolean;
26809
+ comment: boolean;
26810
+ };
26811
+ totalCount: boolean;
26812
+ totalPages: boolean;
26813
+ currentPage: boolean;
26814
+ }];
26815
+ };
26816
+ interface IInput$6 {
26817
+ /**
26818
+ * @private
26819
+ */
26820
+ [key: string]: unknown;
26821
+ data: ModelTypes['GetLedgerHistoryInput'];
26822
+ }
26823
+ type IOutput$6 = InputType<GraphQLTypes['Query'], typeof query$6>;
26824
+
26825
+ declare namespace getLedgerHistory {
26826
+ export { type IInput$6 as IInput, type IOutput$6 as IOutput, name$5 as name, query$6 as query };
26827
+ }
26828
+
26829
+ /** Получить полное состояние плана счетов кооператива. Возвращает все счета из стандартного плана счетов с актуальными данными из блокчейна. Если счет не активен в блокчейне, возвращает нулевые значения. */
26830
+
26831
+ declare namespace index$8 {
26832
+ export { getLedger as GetLedger, getLedgerHistory as GetLedgerHistory };
26833
+ }
26834
+
26472
26835
  declare const name$4 = "getMeet";
26473
26836
  /**
26474
26837
  * Получить данные собрания по хешу
@@ -28300,7 +28663,7 @@ declare namespace index$4 {
28300
28663
  }
28301
28664
 
28302
28665
  declare namespace index$3 {
28303
- export { index$e as Accounts, index$d as Agenda, index$c as Branches, index$b as Desktop, index$a as Documents, index$9 as Extensions, index$8 as Gateway, index$7 as Meet, index$6 as Notification, index$5 as PaymentMethods, index$4 as System };
28666
+ export { index$f as Accounts, index$e as Agenda, index$d as Branches, index$c as Desktop, index$b as Documents, index$a as Extensions, index$9 as Gateway, index$8 as Ledger, index$7 as Meet, index$6 as Notification, index$5 as PaymentMethods, index$4 as System };
28304
28667
  }
28305
28668
 
28306
28669
  type index$2_BlockchainConfig = BlockchainConfig;
@@ -28491,7 +28854,7 @@ declare namespace index$1 {
28491
28854
  }
28492
28855
 
28493
28856
  declare namespace index {
28494
- export { index$2 as Blockchain, index$u as Client, index$1 as Controller, index$t as Document };
28857
+ export { index$2 as Blockchain, index$v as Client, index$1 as Controller, index$u as Document };
28495
28858
  }
28496
28859
 
28497
28860
  declare class Client {
@@ -28521,7 +28884,7 @@ declare class Client {
28521
28884
  * @param wif Приватный ключ в формате WIF.
28522
28885
  * @returns Результат логина.
28523
28886
  */
28524
- login(email: string, wif: string): Promise<IOutput$1l['login']>;
28887
+ login(email: string, wif: string): Promise<IOutput$1n['login']>;
28525
28888
  /**
28526
28889
  * Установка токена авторизации.
28527
28890
  * @param token Токен для заголовков Authorization.
@@ -28574,6 +28937,12 @@ declare class Client {
28574
28937
  getExtensions?: [{
28575
28938
  data?: ValueTypes["GetExtensionsInput"] | undefined | null | Variable<any, string>;
28576
28939
  }, ValueTypes["Extension"]];
28940
+ getLedger?: [{
28941
+ data: ValueTypes["GetLedgerInput"] | Variable<any, string>;
28942
+ }, ValueTypes["LedgerState"]];
28943
+ getLedgerHistory?: [{
28944
+ data: ValueTypes["GetLedgerHistoryInput"] | Variable<any, string>;
28945
+ }, ValueTypes["LedgerHistoryResponse"]];
28577
28946
  getMeet?: [{
28578
28947
  data: ValueTypes["GetMeetInput"] | Variable<any, string>;
28579
28948
  }, ValueTypes["MeetAggregate"]];
@@ -28596,7 +28965,7 @@ declare class Client {
28596
28965
  data: ValueTypes["SearchPrivateAccountsInput"] | Variable<any, string>;
28597
28966
  }, ValueTypes["PrivateAccountSearchResult"]];
28598
28967
  __typename?: boolean | `@${string}`;
28599
- }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" | "getUserWebPushSubscriptions" | "getWebPushSubscriptionStats" | "searchPrivateAccounts" ? Z[P] : never; }, ops?: OperationOptions & {
28968
+ }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "getAccount" | "getAccounts" | "getAgenda" | "getBranches" | "getDesktop" | "getDocuments" | "getExtensions" | "getLedger" | "getLedgerHistory" | "getMeet" | "getMeets" | "getPaymentMethods" | "getPayments" | "getSystemInfo" | "getUserWebPushSubscriptions" | "getWebPushSubscriptionStats" | "searchPrivateAccounts" ? Z[P] : never; }, ops?: OperationOptions & {
28600
28969
  variables?: Record<string, unknown>;
28601
28970
  }) => Promise<InputType<{
28602
28971
  __typename: "Query";
@@ -28607,6 +28976,8 @@ declare class Client {
28607
28976
  getDesktop: GraphQLTypes["Desktop"];
28608
28977
  getDocuments: GraphQLTypes["DocumentsAggregatePaginationResult"];
28609
28978
  getExtensions: Array<GraphQLTypes["Extension"]>;
28979
+ getLedger: GraphQLTypes["LedgerState"];
28980
+ getLedgerHistory: GraphQLTypes["LedgerHistoryResponse"];
28610
28981
  getMeet: GraphQLTypes["MeetAggregate"];
28611
28982
  getMeets: Array<GraphQLTypes["MeetAggregate"]>;
28612
28983
  getPaymentMethods: GraphQLTypes["PaymentMethodPaginationResult"];
@@ -28974,4 +29345,4 @@ declare class Client {
28974
29345
  private static createThunder;
28975
29346
  }
28976
29347
 
28977
- export { Classes, Client, Mutations, index$3 as Queries, index as Types, index$v as Zeus };
29348
+ export { Classes, Client, Mutations, index$3 as Queries, index as Types, index$w as Zeus };