@coopenomics/sdk 2.2.9 → 2.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -50,10 +50,9 @@ declare const Gql: <O extends keyof typeof Ops, OVERRIDESCLR extends ScalarDefin
50
50
  variables?: Record<string, unknown>;
51
51
  }) => Promise<InputType<GraphQLTypes[R], Z, UnionOverrideKeys<ScalarDefinition, OVERRIDESCLR>>>;
52
52
  declare const ZeusScalars: SelectionFunction<ScalarCoders>;
53
- type BaseSymbol = number | string | undefined | boolean | null;
54
53
  type ScalarsSelector<T> = {
55
54
  [X in Required<{
56
- [P in keyof T]: T[P] extends BaseSymbol | Array<BaseSymbol> ? P : never;
55
+ [P in keyof T]: T[P] extends number | string | undefined | boolean ? P : never;
57
56
  }>[keyof T]]: true;
58
57
  };
59
58
  declare const fields: <T extends keyof ModelTypes>(k: T) => ScalarsSelector<ModelTypes[T]>;
@@ -273,6 +272,8 @@ type ValueTypes = {
273
272
  blockchain_account?: ValueTypes["BlockchainAccount"];
274
273
  /** объект пайщика кооператива в таблице блокчейне, который определяет членство пайщика в конкретном кооперативе. Поскольку MONO обслуживает только один кооператив, то в participant_account обычно содержится информация, которая описывает членство пайщика в этом кооперативе. Этот объект обезличен, публичен, и хранится в блокчейне. */
275
274
  participant_account?: ValueTypes["ParticipantAccount"];
275
+ /** объект приватных данных пайщика кооператива. */
276
+ private_account?: ValueTypes["PrivateAccount"];
276
277
  /** объект аккаунта в системе учёта провайдера, т.е. MONO. Здесь хранится приватная информация о пайщике кооператива, которая содержит его приватные данные. Эти данные не публикуются в блокчейне и не выходят за пределы базы данных провайдера. Они используются для заполнения шаблонов документов при нажатии соответствующих кнопок на платформе. */
277
278
  provider_account?: ValueTypes["MonoAccount"];
278
279
  /** объект пользователя кооперативной экономики содержит в блокчейне информацию о типе аккаунта пайщика, а также, обезличенные публичные данные (хэши) для верификации пайщиков между кооперативами. Этот уровень предназначен для хранения информации пайщика, которая необходима всем кооперативам, но не относится к какому-либо из них конкретно. */
@@ -818,6 +819,7 @@ type ValueTypes = {
818
819
  authorized?: boolean | `@${string}`;
819
820
  authorized_by?: boolean | `@${string}`;
820
821
  batch_id?: boolean | `@${string}`;
822
+ callback_contract?: boolean | `@${string}`;
821
823
  coopname?: boolean | `@${string}`;
822
824
  created_at?: boolean | `@${string}`;
823
825
  expired_at?: boolean | `@${string}`;
@@ -1960,6 +1962,8 @@ type ValueTypes = {
1960
1962
  created_at?: boolean | `@${string}`;
1961
1963
  /** LEGACY Флаг, имеет ли член право голоса */
1962
1964
  has_vote?: boolean | `@${string}`;
1965
+ /** Сумма вступительного взноса */
1966
+ initial_amount?: boolean | `@${string}`;
1963
1967
  /** LEGACY Флаг, внесен ли регистрационный взнос */
1964
1968
  is_initial?: boolean | `@${string}`;
1965
1969
  /** LEGACY Флаг, внесен ли минимальный паевый взнос */
@@ -1968,6 +1972,8 @@ type ValueTypes = {
1968
1972
  last_min_pay?: boolean | `@${string}`;
1969
1973
  /** Время последнего обновления информации о члене */
1970
1974
  last_update?: boolean | `@${string}`;
1975
+ /** Сумма минимального паевого взноса */
1976
+ minimum_amount?: boolean | `@${string}`;
1971
1977
  /** Статус члена кооператива (accepted | blocked) */
1972
1978
  status?: boolean | `@${string}`;
1973
1979
  /** Тип участника (individual | entrepreneur | organization) */
@@ -2279,6 +2285,14 @@ type ValueTypes = {
2279
2285
  weight?: boolean | `@${string}`;
2280
2286
  __typename?: boolean | `@${string}`;
2281
2287
  }>;
2288
+ ["PrivateAccount"]: AliasType<{
2289
+ entrepreneur_data?: ValueTypes["Entrepreneur"];
2290
+ individual_data?: ValueTypes["Individual"];
2291
+ organization_data?: ValueTypes["Organization"];
2292
+ /** Тип аккаунта */
2293
+ type?: boolean | `@${string}`;
2294
+ __typename?: boolean | `@${string}`;
2295
+ }>;
2282
2296
  ["ProhibitRequestInput"]: {
2283
2297
  /** Имя аккаунта кооператива */
2284
2298
  coopname: string | Variable<any, string>;
@@ -2502,8 +2516,6 @@ type ValueTypes = {
2502
2516
  /** Подписанный документ положения целевой потребительской программы "Цифровой Кошелёк" от пайщика */
2503
2517
  wallet_agreement: ValueTypes["SignedDigitalDocumentInput"] | Variable<any, string>;
2504
2518
  };
2505
- /** Роль пользователя при регистрации */
2506
- ["RegisterRole"]: RegisterRole;
2507
2519
  ["RegisteredAccount"]: AliasType<{
2508
2520
  /** Информация об зарегистрированном аккаунте */
2509
2521
  account?: ValueTypes["Account"];
@@ -3104,8 +3116,6 @@ type ValueTypes = {
3104
3116
  vars?: ValueTypes["VarsInput"] | undefined | null | Variable<any, string>;
3105
3117
  };
3106
3118
  ["UpdateAccountInput"]: {
3107
- /** Электронная почта */
3108
- email: string | Variable<any, string>;
3109
3119
  /** Данные индивидуального предпринимателя */
3110
3120
  entrepreneur_data?: ValueTypes["UpdateEntrepreneurDataInput"] | undefined | null | Variable<any, string>;
3111
3121
  /** Данные физического лица */
@@ -3116,10 +3126,6 @@ type ValueTypes = {
3116
3126
  public_key?: string | undefined | null | Variable<any, string>;
3117
3127
  /** Имя аккаунта реферера */
3118
3128
  referer?: string | undefined | null | Variable<any, string>;
3119
- /** Роль пользователя */
3120
- role: ValueTypes["RegisterRole"] | Variable<any, string>;
3121
- /** Тип аккаунта */
3122
- type: ValueTypes["AccountType"] | Variable<any, string>;
3123
3129
  /** Имя пользователя */
3124
3130
  username: string | Variable<any, string>;
3125
3131
  };
@@ -3142,6 +3148,8 @@ type ValueTypes = {
3142
3148
  country: ValueTypes["Country"] | Variable<any, string>;
3143
3149
  /** Детали индивидуального предпринимателя */
3144
3150
  details: ValueTypes["EntrepreneurDetailsInput"] | Variable<any, string>;
3151
+ /** Электронная почта */
3152
+ email: string | Variable<any, string>;
3145
3153
  /** Имя */
3146
3154
  first_name: string | Variable<any, string>;
3147
3155
  /** Полный адрес */
@@ -3152,10 +3160,14 @@ type ValueTypes = {
3152
3160
  middle_name: string | Variable<any, string>;
3153
3161
  /** Телефон */
3154
3162
  phone: string | Variable<any, string>;
3163
+ /** Имя пользователя */
3164
+ username: string | Variable<any, string>;
3155
3165
  };
3156
3166
  ["UpdateIndividualDataInput"]: {
3157
3167
  /** Дата рождения */
3158
3168
  birthdate: string | Variable<any, string>;
3169
+ /** Электронная почта */
3170
+ email: string | Variable<any, string>;
3159
3171
  /** Имя */
3160
3172
  first_name: string | Variable<any, string>;
3161
3173
  /** Полный адрес */
@@ -3168,6 +3180,8 @@ type ValueTypes = {
3168
3180
  passport?: ValueTypes["PassportInput"] | undefined | null | Variable<any, string>;
3169
3181
  /** Телефон */
3170
3182
  phone: string | Variable<any, string>;
3183
+ /** Имя пользователя */
3184
+ username: string | Variable<any, string>;
3171
3185
  };
3172
3186
  ["UpdateOrganizationDataInput"]: {
3173
3187
  /** Город */
@@ -3176,6 +3190,8 @@ type ValueTypes = {
3176
3190
  country: string | Variable<any, string>;
3177
3191
  /** Детали организации */
3178
3192
  details: ValueTypes["OrganizationDetailsInput"] | Variable<any, string>;
3193
+ /** Электронная почта */
3194
+ email: string | Variable<any, string>;
3179
3195
  /** Фактический адрес */
3180
3196
  fact_address: string | Variable<any, string>;
3181
3197
  /** Полный адрес */
@@ -3189,7 +3205,9 @@ type ValueTypes = {
3189
3205
  /** Краткое наименование организации */
3190
3206
  short_name: string | Variable<any, string>;
3191
3207
  /** Тип организации */
3192
- type: ValueTypes["OrganizationType"] | Variable<any, string>;
3208
+ type: string | Variable<any, string>;
3209
+ /** Имя пользователя */
3210
+ username: string | Variable<any, string>;
3193
3211
  };
3194
3212
  ["UpdateRequestInput"]: {
3195
3213
  /** Имя аккаунта кооператива */
@@ -3315,6 +3333,8 @@ type ResolverInputTypes = {
3315
3333
  blockchain_account?: ResolverInputTypes["BlockchainAccount"];
3316
3334
  /** объект пайщика кооператива в таблице блокчейне, который определяет членство пайщика в конкретном кооперативе. Поскольку MONO обслуживает только один кооператив, то в participant_account обычно содержится информация, которая описывает членство пайщика в этом кооперативе. Этот объект обезличен, публичен, и хранится в блокчейне. */
3317
3335
  participant_account?: ResolverInputTypes["ParticipantAccount"];
3336
+ /** объект приватных данных пайщика кооператива. */
3337
+ private_account?: ResolverInputTypes["PrivateAccount"];
3318
3338
  /** объект аккаунта в системе учёта провайдера, т.е. MONO. Здесь хранится приватная информация о пайщике кооператива, которая содержит его приватные данные. Эти данные не публикуются в блокчейне и не выходят за пределы базы данных провайдера. Они используются для заполнения шаблонов документов при нажатии соответствующих кнопок на платформе. */
3319
3339
  provider_account?: ResolverInputTypes["MonoAccount"];
3320
3340
  /** объект пользователя кооперативной экономики содержит в блокчейне информацию о типе аккаунта пайщика, а также, обезличенные публичные данные (хэши) для верификации пайщиков между кооперативами. Этот уровень предназначен для хранения информации пайщика, которая необходима всем кооперативам, но не относится к какому-либо из них конкретно. */
@@ -3860,6 +3880,7 @@ type ResolverInputTypes = {
3860
3880
  authorized?: boolean | `@${string}`;
3861
3881
  authorized_by?: boolean | `@${string}`;
3862
3882
  batch_id?: boolean | `@${string}`;
3883
+ callback_contract?: boolean | `@${string}`;
3863
3884
  coopname?: boolean | `@${string}`;
3864
3885
  created_at?: boolean | `@${string}`;
3865
3886
  expired_at?: boolean | `@${string}`;
@@ -5002,6 +5023,8 @@ type ResolverInputTypes = {
5002
5023
  created_at?: boolean | `@${string}`;
5003
5024
  /** LEGACY Флаг, имеет ли член право голоса */
5004
5025
  has_vote?: boolean | `@${string}`;
5026
+ /** Сумма вступительного взноса */
5027
+ initial_amount?: boolean | `@${string}`;
5005
5028
  /** LEGACY Флаг, внесен ли регистрационный взнос */
5006
5029
  is_initial?: boolean | `@${string}`;
5007
5030
  /** LEGACY Флаг, внесен ли минимальный паевый взнос */
@@ -5010,6 +5033,8 @@ type ResolverInputTypes = {
5010
5033
  last_min_pay?: boolean | `@${string}`;
5011
5034
  /** Время последнего обновления информации о члене */
5012
5035
  last_update?: boolean | `@${string}`;
5036
+ /** Сумма минимального паевого взноса */
5037
+ minimum_amount?: boolean | `@${string}`;
5013
5038
  /** Статус члена кооператива (accepted | blocked) */
5014
5039
  status?: boolean | `@${string}`;
5015
5040
  /** Тип участника (individual | entrepreneur | organization) */
@@ -5321,6 +5346,14 @@ type ResolverInputTypes = {
5321
5346
  weight?: boolean | `@${string}`;
5322
5347
  __typename?: boolean | `@${string}`;
5323
5348
  }>;
5349
+ ["PrivateAccount"]: AliasType<{
5350
+ entrepreneur_data?: ResolverInputTypes["Entrepreneur"];
5351
+ individual_data?: ResolverInputTypes["Individual"];
5352
+ organization_data?: ResolverInputTypes["Organization"];
5353
+ /** Тип аккаунта */
5354
+ type?: boolean | `@${string}`;
5355
+ __typename?: boolean | `@${string}`;
5356
+ }>;
5324
5357
  ["ProhibitRequestInput"]: {
5325
5358
  /** Имя аккаунта кооператива */
5326
5359
  coopname: string;
@@ -5544,8 +5577,6 @@ type ResolverInputTypes = {
5544
5577
  /** Подписанный документ положения целевой потребительской программы "Цифровой Кошелёк" от пайщика */
5545
5578
  wallet_agreement: ResolverInputTypes["SignedDigitalDocumentInput"];
5546
5579
  };
5547
- /** Роль пользователя при регистрации */
5548
- ["RegisterRole"]: RegisterRole;
5549
5580
  ["RegisteredAccount"]: AliasType<{
5550
5581
  /** Информация об зарегистрированном аккаунте */
5551
5582
  account?: ResolverInputTypes["Account"];
@@ -6146,8 +6177,6 @@ type ResolverInputTypes = {
6146
6177
  vars?: ResolverInputTypes["VarsInput"] | undefined | null;
6147
6178
  };
6148
6179
  ["UpdateAccountInput"]: {
6149
- /** Электронная почта */
6150
- email: string;
6151
6180
  /** Данные индивидуального предпринимателя */
6152
6181
  entrepreneur_data?: ResolverInputTypes["UpdateEntrepreneurDataInput"] | undefined | null;
6153
6182
  /** Данные физического лица */
@@ -6158,10 +6187,6 @@ type ResolverInputTypes = {
6158
6187
  public_key?: string | undefined | null;
6159
6188
  /** Имя аккаунта реферера */
6160
6189
  referer?: string | undefined | null;
6161
- /** Роль пользователя */
6162
- role: ResolverInputTypes["RegisterRole"];
6163
- /** Тип аккаунта */
6164
- type: ResolverInputTypes["AccountType"];
6165
6190
  /** Имя пользователя */
6166
6191
  username: string;
6167
6192
  };
@@ -6184,6 +6209,8 @@ type ResolverInputTypes = {
6184
6209
  country: ResolverInputTypes["Country"];
6185
6210
  /** Детали индивидуального предпринимателя */
6186
6211
  details: ResolverInputTypes["EntrepreneurDetailsInput"];
6212
+ /** Электронная почта */
6213
+ email: string;
6187
6214
  /** Имя */
6188
6215
  first_name: string;
6189
6216
  /** Полный адрес */
@@ -6194,10 +6221,14 @@ type ResolverInputTypes = {
6194
6221
  middle_name: string;
6195
6222
  /** Телефон */
6196
6223
  phone: string;
6224
+ /** Имя пользователя */
6225
+ username: string;
6197
6226
  };
6198
6227
  ["UpdateIndividualDataInput"]: {
6199
6228
  /** Дата рождения */
6200
6229
  birthdate: string;
6230
+ /** Электронная почта */
6231
+ email: string;
6201
6232
  /** Имя */
6202
6233
  first_name: string;
6203
6234
  /** Полный адрес */
@@ -6210,6 +6241,8 @@ type ResolverInputTypes = {
6210
6241
  passport?: ResolverInputTypes["PassportInput"] | undefined | null;
6211
6242
  /** Телефон */
6212
6243
  phone: string;
6244
+ /** Имя пользователя */
6245
+ username: string;
6213
6246
  };
6214
6247
  ["UpdateOrganizationDataInput"]: {
6215
6248
  /** Город */
@@ -6218,6 +6251,8 @@ type ResolverInputTypes = {
6218
6251
  country: string;
6219
6252
  /** Детали организации */
6220
6253
  details: ResolverInputTypes["OrganizationDetailsInput"];
6254
+ /** Электронная почта */
6255
+ email: string;
6221
6256
  /** Фактический адрес */
6222
6257
  fact_address: string;
6223
6258
  /** Полный адрес */
@@ -6231,7 +6266,9 @@ type ResolverInputTypes = {
6231
6266
  /** Краткое наименование организации */
6232
6267
  short_name: string;
6233
6268
  /** Тип организации */
6234
- type: ResolverInputTypes["OrganizationType"];
6269
+ type: string;
6270
+ /** Имя пользователя */
6271
+ username: string;
6235
6272
  };
6236
6273
  ["UpdateRequestInput"]: {
6237
6274
  /** Имя аккаунта кооператива */
@@ -6362,6 +6399,8 @@ type ModelTypes = {
6362
6399
  blockchain_account?: ModelTypes["BlockchainAccount"] | undefined | null;
6363
6400
  /** объект пайщика кооператива в таблице блокчейне, который определяет членство пайщика в конкретном кооперативе. Поскольку MONO обслуживает только один кооператив, то в participant_account обычно содержится информация, которая описывает членство пайщика в этом кооперативе. Этот объект обезличен, публичен, и хранится в блокчейне. */
6364
6401
  participant_account?: ModelTypes["ParticipantAccount"] | undefined | null;
6402
+ /** объект приватных данных пайщика кооператива. */
6403
+ private_account?: ModelTypes["PrivateAccount"] | undefined | null;
6365
6404
  /** объект аккаунта в системе учёта провайдера, т.е. MONO. Здесь хранится приватная информация о пайщике кооператива, которая содержит его приватные данные. Эти данные не публикуются в блокчейне и не выходят за пределы базы данных провайдера. Они используются для заполнения шаблонов документов при нажатии соответствующих кнопок на платформе. */
6366
6405
  provider_account?: ModelTypes["MonoAccount"] | undefined | null;
6367
6406
  /** объект пользователя кооперативной экономики содержит в блокчейне информацию о типе аккаунта пайщика, а также, обезличенные публичные данные (хэши) для верификации пайщиков между кооперативами. Этот уровень предназначен для хранения информации пайщика, которая необходима всем кооперативам, но не относится к какому-либо из них конкретно. */
@@ -6884,6 +6923,7 @@ type ModelTypes = {
6884
6923
  authorized: boolean;
6885
6924
  authorized_by: string;
6886
6925
  batch_id: number;
6926
+ callback_contract: string;
6887
6927
  coopname: string;
6888
6928
  created_at: string;
6889
6929
  expired_at: string;
@@ -7919,6 +7959,8 @@ type ModelTypes = {
7919
7959
  created_at: ModelTypes["DateTime"];
7920
7960
  /** LEGACY Флаг, имеет ли член право голоса */
7921
7961
  has_vote: boolean;
7962
+ /** Сумма вступительного взноса */
7963
+ initial_amount?: string | undefined | null;
7922
7964
  /** LEGACY Флаг, внесен ли регистрационный взнос */
7923
7965
  is_initial: boolean;
7924
7966
  /** LEGACY Флаг, внесен ли минимальный паевый взнос */
@@ -7927,6 +7969,8 @@ type ModelTypes = {
7927
7969
  last_min_pay: ModelTypes["DateTime"];
7928
7970
  /** Время последнего обновления информации о члене */
7929
7971
  last_update: ModelTypes["DateTime"];
7972
+ /** Сумма минимального паевого взноса */
7973
+ minimum_amount?: string | undefined | null;
7930
7974
  /** Статус члена кооператива (accepted | blocked) */
7931
7975
  status: string;
7932
7976
  /** Тип участника (individual | entrepreneur | organization) */
@@ -8219,6 +8263,13 @@ type ModelTypes = {
8219
8263
  /** Вес */
8220
8264
  weight: number;
8221
8265
  };
8266
+ ["PrivateAccount"]: {
8267
+ entrepreneur_data?: ModelTypes["Entrepreneur"] | undefined | null;
8268
+ individual_data?: ModelTypes["Individual"] | undefined | null;
8269
+ organization_data?: ModelTypes["Organization"] | undefined | null;
8270
+ /** Тип аккаунта */
8271
+ type: ModelTypes["AccountType"];
8272
+ };
8222
8273
  ["ProhibitRequestInput"]: {
8223
8274
  /** Имя аккаунта кооператива */
8224
8275
  coopname: string;
@@ -8427,7 +8478,6 @@ type ModelTypes = {
8427
8478
  /** Подписанный документ положения целевой потребительской программы "Цифровой Кошелёк" от пайщика */
8428
8479
  wallet_agreement: ModelTypes["SignedDigitalDocumentInput"];
8429
8480
  };
8430
- ["RegisterRole"]: RegisterRole;
8431
8481
  ["RegisteredAccount"]: {
8432
8482
  /** Информация об зарегистрированном аккаунте */
8433
8483
  account: ModelTypes["Account"];
@@ -9004,8 +9054,6 @@ type ModelTypes = {
9004
9054
  vars?: ModelTypes["VarsInput"] | undefined | null;
9005
9055
  };
9006
9056
  ["UpdateAccountInput"]: {
9007
- /** Электронная почта */
9008
- email: string;
9009
9057
  /** Данные индивидуального предпринимателя */
9010
9058
  entrepreneur_data?: ModelTypes["UpdateEntrepreneurDataInput"] | undefined | null;
9011
9059
  /** Данные физического лица */
@@ -9016,10 +9064,6 @@ type ModelTypes = {
9016
9064
  public_key?: string | undefined | null;
9017
9065
  /** Имя аккаунта реферера */
9018
9066
  referer?: string | undefined | null;
9019
- /** Роль пользователя */
9020
- role: ModelTypes["RegisterRole"];
9021
- /** Тип аккаунта */
9022
- type: ModelTypes["AccountType"];
9023
9067
  /** Имя пользователя */
9024
9068
  username: string;
9025
9069
  };
@@ -9042,6 +9086,8 @@ type ModelTypes = {
9042
9086
  country: ModelTypes["Country"];
9043
9087
  /** Детали индивидуального предпринимателя */
9044
9088
  details: ModelTypes["EntrepreneurDetailsInput"];
9089
+ /** Электронная почта */
9090
+ email: string;
9045
9091
  /** Имя */
9046
9092
  first_name: string;
9047
9093
  /** Полный адрес */
@@ -9052,10 +9098,14 @@ type ModelTypes = {
9052
9098
  middle_name: string;
9053
9099
  /** Телефон */
9054
9100
  phone: string;
9101
+ /** Имя пользователя */
9102
+ username: string;
9055
9103
  };
9056
9104
  ["UpdateIndividualDataInput"]: {
9057
9105
  /** Дата рождения */
9058
9106
  birthdate: string;
9107
+ /** Электронная почта */
9108
+ email: string;
9059
9109
  /** Имя */
9060
9110
  first_name: string;
9061
9111
  /** Полный адрес */
@@ -9068,6 +9118,8 @@ type ModelTypes = {
9068
9118
  passport?: ModelTypes["PassportInput"] | undefined | null;
9069
9119
  /** Телефон */
9070
9120
  phone: string;
9121
+ /** Имя пользователя */
9122
+ username: string;
9071
9123
  };
9072
9124
  ["UpdateOrganizationDataInput"]: {
9073
9125
  /** Город */
@@ -9076,6 +9128,8 @@ type ModelTypes = {
9076
9128
  country: string;
9077
9129
  /** Детали организации */
9078
9130
  details: ModelTypes["OrganizationDetailsInput"];
9131
+ /** Электронная почта */
9132
+ email: string;
9079
9133
  /** Фактический адрес */
9080
9134
  fact_address: string;
9081
9135
  /** Полный адрес */
@@ -9089,7 +9143,9 @@ type ModelTypes = {
9089
9143
  /** Краткое наименование организации */
9090
9144
  short_name: string;
9091
9145
  /** Тип организации */
9092
- type: ModelTypes["OrganizationType"];
9146
+ type: string;
9147
+ /** Имя пользователя */
9148
+ username: string;
9093
9149
  };
9094
9150
  ["UpdateRequestInput"]: {
9095
9151
  /** Имя аккаунта кооператива */
@@ -9210,6 +9266,8 @@ type GraphQLTypes = {
9210
9266
  blockchain_account?: GraphQLTypes["BlockchainAccount"] | undefined | null;
9211
9267
  /** объект пайщика кооператива в таблице блокчейне, который определяет членство пайщика в конкретном кооперативе. Поскольку MONO обслуживает только один кооператив, то в participant_account обычно содержится информация, которая описывает членство пайщика в этом кооперативе. Этот объект обезличен, публичен, и хранится в блокчейне. */
9212
9268
  participant_account?: GraphQLTypes["ParticipantAccount"] | undefined | null;
9269
+ /** объект приватных данных пайщика кооператива. */
9270
+ private_account?: GraphQLTypes["PrivateAccount"] | undefined | null;
9213
9271
  /** объект аккаунта в системе учёта провайдера, т.е. MONO. Здесь хранится приватная информация о пайщике кооператива, которая содержит его приватные данные. Эти данные не публикуются в блокчейне и не выходят за пределы базы данных провайдера. Они используются для заполнения шаблонов документов при нажатии соответствующих кнопок на платформе. */
9214
9272
  provider_account?: GraphQLTypes["MonoAccount"] | undefined | null;
9215
9273
  /** объект пользователя кооперативной экономики содержит в блокчейне информацию о типе аккаунта пайщика, а также, обезличенные публичные данные (хэши) для верификации пайщиков между кооперативами. Этот уровень предназначен для хранения информации пайщика, которая необходима всем кооперативам, но не относится к какому-либо из них конкретно. */
@@ -9755,6 +9813,7 @@ type GraphQLTypes = {
9755
9813
  authorized: boolean;
9756
9814
  authorized_by: string;
9757
9815
  batch_id: number;
9816
+ callback_contract: string;
9758
9817
  coopname: string;
9759
9818
  created_at: string;
9760
9819
  expired_at: string;
@@ -10826,6 +10885,8 @@ type GraphQLTypes = {
10826
10885
  created_at: GraphQLTypes["DateTime"];
10827
10886
  /** LEGACY Флаг, имеет ли член право голоса */
10828
10887
  has_vote: boolean;
10888
+ /** Сумма вступительного взноса */
10889
+ initial_amount?: string | undefined | null;
10829
10890
  /** LEGACY Флаг, внесен ли регистрационный взнос */
10830
10891
  is_initial: boolean;
10831
10892
  /** LEGACY Флаг, внесен ли минимальный паевый взнос */
@@ -10834,6 +10895,8 @@ type GraphQLTypes = {
10834
10895
  last_min_pay: GraphQLTypes["DateTime"];
10835
10896
  /** Время последнего обновления информации о члене */
10836
10897
  last_update: GraphQLTypes["DateTime"];
10898
+ /** Сумма минимального паевого взноса */
10899
+ minimum_amount?: string | undefined | null;
10837
10900
  /** Статус члена кооператива (accepted | blocked) */
10838
10901
  status: string;
10839
10902
  /** Тип участника (individual | entrepreneur | organization) */
@@ -11144,6 +11207,14 @@ type GraphQLTypes = {
11144
11207
  /** Вес */
11145
11208
  weight: number;
11146
11209
  };
11210
+ ["PrivateAccount"]: {
11211
+ __typename: "PrivateAccount";
11212
+ entrepreneur_data?: GraphQLTypes["Entrepreneur"] | undefined | null;
11213
+ individual_data?: GraphQLTypes["Individual"] | undefined | null;
11214
+ organization_data?: GraphQLTypes["Organization"] | undefined | null;
11215
+ /** Тип аккаунта */
11216
+ type: GraphQLTypes["AccountType"];
11217
+ };
11147
11218
  ["ProhibitRequestInput"]: {
11148
11219
  /** Имя аккаунта кооператива */
11149
11220
  coopname: string;
@@ -11357,8 +11428,6 @@ type GraphQLTypes = {
11357
11428
  /** Подписанный документ положения целевой потребительской программы "Цифровой Кошелёк" от пайщика */
11358
11429
  wallet_agreement: GraphQLTypes["SignedDigitalDocumentInput"];
11359
11430
  };
11360
- /** Роль пользователя при регистрации */
11361
- ["RegisterRole"]: RegisterRole;
11362
11431
  ["RegisteredAccount"]: {
11363
11432
  __typename: "RegisteredAccount";
11364
11433
  /** Информация об зарегистрированном аккаунте */
@@ -11959,8 +12028,6 @@ type GraphQLTypes = {
11959
12028
  vars?: GraphQLTypes["VarsInput"] | undefined | null;
11960
12029
  };
11961
12030
  ["UpdateAccountInput"]: {
11962
- /** Электронная почта */
11963
- email: string;
11964
12031
  /** Данные индивидуального предпринимателя */
11965
12032
  entrepreneur_data?: GraphQLTypes["UpdateEntrepreneurDataInput"] | undefined | null;
11966
12033
  /** Данные физического лица */
@@ -11971,10 +12038,6 @@ type GraphQLTypes = {
11971
12038
  public_key?: string | undefined | null;
11972
12039
  /** Имя аккаунта реферера */
11973
12040
  referer?: string | undefined | null;
11974
- /** Роль пользователя */
11975
- role: GraphQLTypes["RegisterRole"];
11976
- /** Тип аккаунта */
11977
- type: GraphQLTypes["AccountType"];
11978
12041
  /** Имя пользователя */
11979
12042
  username: string;
11980
12043
  };
@@ -11997,6 +12060,8 @@ type GraphQLTypes = {
11997
12060
  country: GraphQLTypes["Country"];
11998
12061
  /** Детали индивидуального предпринимателя */
11999
12062
  details: GraphQLTypes["EntrepreneurDetailsInput"];
12063
+ /** Электронная почта */
12064
+ email: string;
12000
12065
  /** Имя */
12001
12066
  first_name: string;
12002
12067
  /** Полный адрес */
@@ -12007,10 +12072,14 @@ type GraphQLTypes = {
12007
12072
  middle_name: string;
12008
12073
  /** Телефон */
12009
12074
  phone: string;
12075
+ /** Имя пользователя */
12076
+ username: string;
12010
12077
  };
12011
12078
  ["UpdateIndividualDataInput"]: {
12012
12079
  /** Дата рождения */
12013
12080
  birthdate: string;
12081
+ /** Электронная почта */
12082
+ email: string;
12014
12083
  /** Имя */
12015
12084
  first_name: string;
12016
12085
  /** Полный адрес */
@@ -12023,6 +12092,8 @@ type GraphQLTypes = {
12023
12092
  passport?: GraphQLTypes["PassportInput"] | undefined | null;
12024
12093
  /** Телефон */
12025
12094
  phone: string;
12095
+ /** Имя пользователя */
12096
+ username: string;
12026
12097
  };
12027
12098
  ["UpdateOrganizationDataInput"]: {
12028
12099
  /** Город */
@@ -12031,6 +12102,8 @@ type GraphQLTypes = {
12031
12102
  country: string;
12032
12103
  /** Детали организации */
12033
12104
  details: GraphQLTypes["OrganizationDetailsInput"];
12105
+ /** Электронная почта */
12106
+ email: string;
12034
12107
  /** Фактический адрес */
12035
12108
  fact_address: string;
12036
12109
  /** Полный адрес */
@@ -12044,7 +12117,9 @@ type GraphQLTypes = {
12044
12117
  /** Краткое наименование организации */
12045
12118
  short_name: string;
12046
12119
  /** Тип организации */
12047
- type: GraphQLTypes["OrganizationType"];
12120
+ type: string;
12121
+ /** Имя пользователя */
12122
+ username: string;
12048
12123
  };
12049
12124
  ["UpdateRequestInput"]: {
12050
12125
  /** Имя аккаунта кооператива */
@@ -12183,10 +12258,6 @@ declare enum PaymentStatus {
12183
12258
  PENDING = "PENDING",
12184
12259
  REFUNDED = "REFUNDED"
12185
12260
  }
12186
- /** Роль пользователя при регистрации */
12187
- declare enum RegisterRole {
12188
- User = "User"
12189
- }
12190
12261
  /** Состояние контроллера кооператива */
12191
12262
  declare enum SystemStatus {
12192
12263
  active = "active",
@@ -12283,7 +12354,6 @@ type ZEUS_VARIABLES = {
12283
12354
  ["RefreshInput"]: ValueTypes["RefreshInput"];
12284
12355
  ["RegisterAccountInput"]: ValueTypes["RegisterAccountInput"];
12285
12356
  ["RegisterParticipantInput"]: ValueTypes["RegisterParticipantInput"];
12286
- ["RegisterRole"]: ValueTypes["RegisterRole"];
12287
12357
  ["RepresentedByInput"]: ValueTypes["RepresentedByInput"];
12288
12358
  ["ResetKeyInput"]: ValueTypes["ResetKeyInput"];
12289
12359
  ["ReturnByAssetActGenerateDocumentInput"]: ValueTypes["ReturnByAssetActGenerateDocumentInput"];
@@ -12354,8 +12424,6 @@ type index$p_PaymentStatus = PaymentStatus;
12354
12424
  declare const index$p_PaymentStatus: typeof PaymentStatus;
12355
12425
  type index$p_PlainType = PlainType;
12356
12426
  declare const index$p_PrepareScalarPaths: typeof PrepareScalarPaths;
12357
- type index$p_RegisterRole = RegisterRole;
12358
- declare const index$p_RegisterRole: typeof RegisterRole;
12359
12427
  declare const index$p_ResolveFromPath: typeof ResolveFromPath;
12360
12428
  type index$p_ResolverInputTypes = ResolverInputTypes;
12361
12429
  type index$p_ResolverType<F> = ResolverType<F>;
@@ -12402,7 +12470,7 @@ declare const index$p_purifyGraphQLKey: typeof purifyGraphQLKey;
12402
12470
  declare const index$p_resolverFor: typeof resolverFor;
12403
12471
  declare const index$p_traverseResponse: typeof traverseResponse;
12404
12472
  declare namespace index$p {
12405
- export { index$p_$ as $, index$p_AccountType as AccountType, type index$p_AliasType as AliasType, type index$p_AllTypesPropsType as AllTypesPropsType, index$p_Chain as Chain, index$p_Country as Country, type index$p_ExtractVariables as ExtractVariables, type index$p_ExtractVariablesDeep as ExtractVariablesDeep, type index$p_FetchFunction as FetchFunction, type index$p_FromSelector as FromSelector, index$p_GRAPHQL_TYPE_SEPARATOR as GRAPHQL_TYPE_SEPARATOR, type index$p_GenericOperation as GenericOperation, type index$p_GetVariableType as GetVariableType, index$p_Gql as Gql, index$p_GraphQLError as GraphQLError, type index$p_GraphQLResponse as GraphQLResponse, type index$p_GraphQLTypes as GraphQLTypes, type index$p_GraphQLVariableType as GraphQLVariableType, index$p_HEADERS as HEADERS, index$p_HOST as HOST, type index$p_InputType as InputType, type index$p_InputValueType as InputValueType, index$p_InternalArgsBuilt as InternalArgsBuilt, index$p_InternalsBuildQuery as InternalsBuildQuery, type index$p_MapType as MapType, type index$p_ModelTypes as ModelTypes, type index$p_OperationOptions as OperationOptions, type index$p_Operations as Operations, index$p_OrganizationType as OrganizationType, index$p_PaymentStatus as PaymentStatus, type index$p_PlainType as PlainType, index$p_PrepareScalarPaths as PrepareScalarPaths, index$p_RegisterRole as RegisterRole, index$p_ResolveFromPath as ResolveFromPath, type index$p_ResolverInputTypes as ResolverInputTypes, type index$p_ResolverType as ResolverType, type index$p_ReturnTypesType as ReturnTypesType, index$p_SEPARATOR as SEPARATOR, index$p_START_VAR_NAME as START_VAR_NAME, type index$p_ScalarCoder as ScalarCoder, type index$p_ScalarCoders as ScalarCoders, type index$p_ScalarDefinition as ScalarDefinition, type index$p_ScalarResolver as ScalarResolver, type index$p_SelectionFunction as SelectionFunction, index$p_Selector as Selector, index$p_Subscription as Subscription, type index$p_SubscriptionFunction as SubscriptionFunction, index$p_SubscriptionThunder as SubscriptionThunder, type index$p_SubscriptionToGraphQL as SubscriptionToGraphQL, index$p_SystemStatus as SystemStatus, index$p_Thunder as Thunder, type index$p_ThunderGraphQLOptions as ThunderGraphQLOptions, index$p_TypeFromSelector as TypeFromSelector, type index$p_UnwrapPromise as UnwrapPromise, index$p_UserStatus as UserStatus, type index$p_VType as VType, type index$p_ValueTypes as ValueTypes, type index$p_Variable as Variable, type index$p_VariableDefinition as VariableDefinition, type index$p_WithOptionalNullables as WithOptionalNullables, type index$p_WithTypeNameValue as WithTypeNameValue, index$p_Zeus as Zeus, type index$p_ZeusArgsType as ZeusArgsType, type index$p_ZeusHook as ZeusHook, index$p_ZeusScalars as ZeusScalars, index$p_ZeusSelect as ZeusSelect, type index$p_ZeusState as ZeusState, index$p_apiFetch as apiFetch, index$p_apiSubscription as apiSubscription, type index$p_chainOptions as chainOptions, index$p_decodeScalarsInResponse as decodeScalarsInResponse, type index$p_fetchOptions as fetchOptions, index$p_fields as fields, index$p_purifyGraphQLKey as purifyGraphQLKey, index$p_resolverFor as resolverFor, index$p_traverseResponse as traverseResponse };
12473
+ export { index$p_$ as $, index$p_AccountType as AccountType, type index$p_AliasType as AliasType, type index$p_AllTypesPropsType as AllTypesPropsType, index$p_Chain as Chain, index$p_Country as Country, type index$p_ExtractVariables as ExtractVariables, type index$p_ExtractVariablesDeep as ExtractVariablesDeep, type index$p_FetchFunction as FetchFunction, type index$p_FromSelector as FromSelector, index$p_GRAPHQL_TYPE_SEPARATOR as GRAPHQL_TYPE_SEPARATOR, type index$p_GenericOperation as GenericOperation, type index$p_GetVariableType as GetVariableType, index$p_Gql as Gql, index$p_GraphQLError as GraphQLError, type index$p_GraphQLResponse as GraphQLResponse, type index$p_GraphQLTypes as GraphQLTypes, type index$p_GraphQLVariableType as GraphQLVariableType, index$p_HEADERS as HEADERS, index$p_HOST as HOST, type index$p_InputType as InputType, type index$p_InputValueType as InputValueType, index$p_InternalArgsBuilt as InternalArgsBuilt, index$p_InternalsBuildQuery as InternalsBuildQuery, type index$p_MapType as MapType, type index$p_ModelTypes as ModelTypes, type index$p_OperationOptions as OperationOptions, type index$p_Operations as Operations, index$p_OrganizationType as OrganizationType, index$p_PaymentStatus as PaymentStatus, type index$p_PlainType as PlainType, index$p_PrepareScalarPaths as PrepareScalarPaths, index$p_ResolveFromPath as ResolveFromPath, type index$p_ResolverInputTypes as ResolverInputTypes, type index$p_ResolverType as ResolverType, type index$p_ReturnTypesType as ReturnTypesType, index$p_SEPARATOR as SEPARATOR, index$p_START_VAR_NAME as START_VAR_NAME, type index$p_ScalarCoder as ScalarCoder, type index$p_ScalarCoders as ScalarCoders, type index$p_ScalarDefinition as ScalarDefinition, type index$p_ScalarResolver as ScalarResolver, type index$p_SelectionFunction as SelectionFunction, index$p_Selector as Selector, index$p_Subscription as Subscription, type index$p_SubscriptionFunction as SubscriptionFunction, index$p_SubscriptionThunder as SubscriptionThunder, type index$p_SubscriptionToGraphQL as SubscriptionToGraphQL, index$p_SystemStatus as SystemStatus, index$p_Thunder as Thunder, type index$p_ThunderGraphQLOptions as ThunderGraphQLOptions, index$p_TypeFromSelector as TypeFromSelector, type index$p_UnwrapPromise as UnwrapPromise, index$p_UserStatus as UserStatus, type index$p_VType as VType, type index$p_ValueTypes as ValueTypes, type index$p_Variable as Variable, type index$p_VariableDefinition as VariableDefinition, type index$p_WithOptionalNullables as WithOptionalNullables, type index$p_WithTypeNameValue as WithTypeNameValue, index$p_Zeus as Zeus, type index$p_ZeusArgsType as ZeusArgsType, type index$p_ZeusHook as ZeusHook, index$p_ZeusScalars as ZeusScalars, index$p_ZeusSelect as ZeusSelect, type index$p_ZeusState as ZeusState, index$p_apiFetch as apiFetch, index$p_apiSubscription as apiSubscription, type index$p_chainOptions as chainOptions, index$p_decodeScalarsInResponse as decodeScalarsInResponse, type index$p_fetchOptions as fetchOptions, index$p_fields as fields, index$p_purifyGraphQLKey as purifyGraphQLKey, index$p_resolverFor as resolverFor, index$p_traverseResponse as traverseResponse };
12406
12474
  }
12407
12475
 
12408
12476
  interface ClientConnectionOptions {
@@ -12847,6 +12915,66 @@ declare const mutation$Z: {
12847
12915
  verificator: boolean;
12848
12916
  };
12849
12917
  };
12918
+ private_account: {
12919
+ type: boolean;
12920
+ individual_data: {
12921
+ email: boolean;
12922
+ full_address: boolean;
12923
+ phone: boolean;
12924
+ first_name: boolean;
12925
+ last_name: boolean;
12926
+ middle_name: boolean;
12927
+ birthdate: boolean;
12928
+ passport: {
12929
+ number: boolean;
12930
+ code: boolean;
12931
+ issued_at: boolean;
12932
+ issued_by: boolean;
12933
+ series: boolean;
12934
+ };
12935
+ username: boolean;
12936
+ };
12937
+ organization_data: {
12938
+ city: boolean;
12939
+ country: boolean;
12940
+ details: {
12941
+ inn: boolean;
12942
+ kpp: boolean;
12943
+ ogrn: boolean;
12944
+ };
12945
+ email: boolean;
12946
+ fact_address: boolean;
12947
+ full_address: boolean;
12948
+ full_name: boolean;
12949
+ phone: boolean;
12950
+ represented_by: {
12951
+ based_on: boolean;
12952
+ first_name: boolean;
12953
+ last_name: boolean;
12954
+ middle_name: boolean;
12955
+ position: boolean;
12956
+ };
12957
+ short_name: boolean;
12958
+ type: boolean;
12959
+ username: boolean;
12960
+ };
12961
+ entrepreneur_data: {
12962
+ birthdate: boolean;
12963
+ city: boolean;
12964
+ country: boolean;
12965
+ details: {
12966
+ inn: boolean;
12967
+ ogrn: boolean;
12968
+ };
12969
+ email: boolean;
12970
+ first_name: boolean;
12971
+ full_address: boolean;
12972
+ last_name: boolean;
12973
+ middle_name: boolean;
12974
+ phone: boolean;
12975
+ username: boolean;
12976
+ };
12977
+ };
12850
12978
  };
12851
12979
  tokens: {
12852
12980
  access: {
@@ -13030,6 +13158,66 @@ declare const mutation$W: {
13030
13158
  verificator: boolean;
13031
13159
  };
13032
13160
  };
13161
+ private_account: {
13162
+ type: boolean;
13163
+ individual_data: {
13164
+ email: boolean;
13165
+ full_address: boolean;
13166
+ phone: boolean;
13167
+ first_name: boolean;
13168
+ last_name: boolean;
13169
+ middle_name: boolean;
13170
+ birthdate: boolean;
13171
+ passport: {
13172
+ number: boolean;
13173
+ code: boolean;
13174
+ issued_at: boolean;
13175
+ issued_by: boolean;
13176
+ series: boolean;
13177
+ };
13178
+ username: boolean;
13179
+ };
13180
+ organization_data: {
13181
+ city: boolean;
13182
+ country: boolean;
13183
+ details: {
13184
+ inn: boolean;
13185
+ kpp: boolean;
13186
+ ogrn: boolean;
13187
+ };
13188
+ email: boolean;
13189
+ fact_address: boolean;
13190
+ full_address: boolean;
13191
+ full_name: boolean;
13192
+ phone: boolean;
13193
+ represented_by: {
13194
+ based_on: boolean;
13195
+ first_name: boolean;
13196
+ last_name: boolean;
13197
+ middle_name: boolean;
13198
+ position: boolean;
13199
+ };
13200
+ short_name: boolean;
13201
+ type: boolean;
13202
+ username: boolean;
13203
+ };
13204
+ entrepreneur_data: {
13205
+ birthdate: boolean;
13206
+ city: boolean;
13207
+ country: boolean;
13208
+ details: {
13209
+ inn: boolean;
13210
+ ogrn: boolean;
13211
+ };
13212
+ email: boolean;
13213
+ first_name: boolean;
13214
+ full_address: boolean;
13215
+ last_name: boolean;
13216
+ middle_name: boolean;
13217
+ phone: boolean;
13218
+ username: boolean;
13219
+ };
13220
+ };
13033
13221
  }];
13034
13222
  };
13035
13223
  interface IInput$14 {
@@ -13333,6 +13521,66 @@ declare const mutation$R: {
13333
13521
  verificator: boolean;
13334
13522
  };
13335
13523
  };
13524
+ private_account: {
13525
+ type: boolean;
13526
+ individual_data: {
13527
+ email: boolean;
13528
+ full_address: boolean;
13529
+ phone: boolean;
13530
+ first_name: boolean;
13531
+ last_name: boolean;
13532
+ middle_name: boolean;
13533
+ birthdate: boolean;
13534
+ passport: {
13535
+ number: boolean;
13536
+ code: boolean;
13537
+ issued_at: boolean;
13538
+ issued_by: boolean;
13539
+ series: boolean;
13540
+ };
13541
+ username: boolean;
13542
+ };
13543
+ organization_data: {
13544
+ city: boolean;
13545
+ country: boolean;
13546
+ details: {
13547
+ inn: boolean;
13548
+ kpp: boolean;
13549
+ ogrn: boolean;
13550
+ };
13551
+ email: boolean;
13552
+ fact_address: boolean;
13553
+ full_address: boolean;
13554
+ full_name: boolean;
13555
+ phone: boolean;
13556
+ represented_by: {
13557
+ based_on: boolean;
13558
+ first_name: boolean;
13559
+ last_name: boolean;
13560
+ middle_name: boolean;
13561
+ position: boolean;
13562
+ };
13563
+ short_name: boolean;
13564
+ type: boolean;
13565
+ username: boolean;
13566
+ };
13567
+ entrepreneur_data: {
13568
+ birthdate: boolean;
13569
+ city: boolean;
13570
+ country: boolean;
13571
+ details: {
13572
+ inn: boolean;
13573
+ ogrn: boolean;
13574
+ };
13575
+ email: boolean;
13576
+ first_name: boolean;
13577
+ full_address: boolean;
13578
+ last_name: boolean;
13579
+ middle_name: boolean;
13580
+ phone: boolean;
13581
+ username: boolean;
13582
+ };
13583
+ };
13336
13584
  };
13337
13585
  tokens: {
13338
13586
  access: {
@@ -13498,6 +13746,66 @@ declare const mutation$P: {
13498
13746
  verificator: boolean;
13499
13747
  };
13500
13748
  };
13749
+ private_account: {
13750
+ type: boolean;
13751
+ individual_data: {
13752
+ email: boolean;
13753
+ full_address: boolean;
13754
+ phone: boolean;
13755
+ first_name: boolean;
13756
+ last_name: boolean;
13757
+ middle_name: boolean;
13758
+ birthdate: boolean;
13759
+ passport: {
13760
+ number: boolean;
13761
+ code: boolean;
13762
+ issued_at: boolean;
13763
+ issued_by: boolean;
13764
+ series: boolean;
13765
+ };
13766
+ username: boolean;
13767
+ };
13768
+ organization_data: {
13769
+ city: boolean;
13770
+ country: boolean;
13771
+ details: {
13772
+ inn: boolean;
13773
+ kpp: boolean;
13774
+ ogrn: boolean;
13775
+ };
13776
+ email: boolean;
13777
+ fact_address: boolean;
13778
+ full_address: boolean;
13779
+ full_name: boolean;
13780
+ phone: boolean;
13781
+ represented_by: {
13782
+ based_on: boolean;
13783
+ first_name: boolean;
13784
+ last_name: boolean;
13785
+ middle_name: boolean;
13786
+ position: boolean;
13787
+ };
13788
+ short_name: boolean;
13789
+ type: boolean;
13790
+ username: boolean;
13791
+ };
13792
+ entrepreneur_data: {
13793
+ birthdate: boolean;
13794
+ city: boolean;
13795
+ country: boolean;
13796
+ details: {
13797
+ inn: boolean;
13798
+ ogrn: boolean;
13799
+ };
13800
+ email: boolean;
13801
+ first_name: boolean;
13802
+ full_address: boolean;
13803
+ last_name: boolean;
13804
+ middle_name: boolean;
13805
+ phone: boolean;
13806
+ username: boolean;
13807
+ };
13808
+ };
13501
13809
  };
13502
13810
  tokens: {
13503
13811
  access: {
@@ -15187,6 +15495,66 @@ declare const mutation$b: {
15187
15495
  verificator: boolean;
15188
15496
  };
15189
15497
  };
15498
+ private_account: {
15499
+ type: boolean;
15500
+ individual_data: {
15501
+ email: boolean;
15502
+ full_address: boolean;
15503
+ phone: boolean;
15504
+ first_name: boolean;
15505
+ last_name: boolean;
15506
+ middle_name: boolean;
15507
+ birthdate: boolean;
15508
+ passport: {
15509
+ number: boolean;
15510
+ code: boolean;
15511
+ issued_at: boolean;
15512
+ issued_by: boolean;
15513
+ series: boolean;
15514
+ };
15515
+ username: boolean;
15516
+ };
15517
+ organization_data: {
15518
+ city: boolean;
15519
+ country: boolean;
15520
+ details: {
15521
+ inn: boolean;
15522
+ kpp: boolean;
15523
+ ogrn: boolean;
15524
+ };
15525
+ email: boolean;
15526
+ fact_address: boolean;
15527
+ full_address: boolean;
15528
+ full_name: boolean;
15529
+ phone: boolean;
15530
+ represented_by: {
15531
+ based_on: boolean;
15532
+ first_name: boolean;
15533
+ last_name: boolean;
15534
+ middle_name: boolean;
15535
+ position: boolean;
15536
+ };
15537
+ short_name: boolean;
15538
+ type: boolean;
15539
+ username: boolean;
15540
+ };
15541
+ entrepreneur_data: {
15542
+ birthdate: boolean;
15543
+ city: boolean;
15544
+ country: boolean;
15545
+ details: {
15546
+ inn: boolean;
15547
+ ogrn: boolean;
15548
+ };
15549
+ email: boolean;
15550
+ first_name: boolean;
15551
+ full_address: boolean;
15552
+ last_name: boolean;
15553
+ middle_name: boolean;
15554
+ phone: boolean;
15555
+ username: boolean;
15556
+ };
15557
+ };
15190
15558
  }];
15191
15559
  };
15192
15560
  interface IInput$l {
@@ -15321,6 +15689,66 @@ declare const mutation$a: {
15321
15689
  verificator: boolean;
15322
15690
  };
15323
15691
  };
15692
+ private_account: {
15693
+ type: boolean;
15694
+ individual_data: {
15695
+ email: boolean;
15696
+ full_address: boolean;
15697
+ phone: boolean;
15698
+ first_name: boolean;
15699
+ last_name: boolean;
15700
+ middle_name: boolean;
15701
+ birthdate: boolean;
15702
+ passport: {
15703
+ number: boolean;
15704
+ code: boolean;
15705
+ issued_at: boolean;
15706
+ issued_by: boolean;
15707
+ series: boolean;
15708
+ };
15709
+ username: boolean;
15710
+ };
15711
+ organization_data: {
15712
+ city: boolean;
15713
+ country: boolean;
15714
+ details: {
15715
+ inn: boolean;
15716
+ kpp: boolean;
15717
+ ogrn: boolean;
15718
+ };
15719
+ email: boolean;
15720
+ fact_address: boolean;
15721
+ full_address: boolean;
15722
+ full_name: boolean;
15723
+ phone: boolean;
15724
+ represented_by: {
15725
+ based_on: boolean;
15726
+ first_name: boolean;
15727
+ last_name: boolean;
15728
+ middle_name: boolean;
15729
+ position: boolean;
15730
+ };
15731
+ short_name: boolean;
15732
+ type: boolean;
15733
+ username: boolean;
15734
+ };
15735
+ entrepreneur_data: {
15736
+ birthdate: boolean;
15737
+ city: boolean;
15738
+ country: boolean;
15739
+ details: {
15740
+ inn: boolean;
15741
+ ogrn: boolean;
15742
+ };
15743
+ email: boolean;
15744
+ first_name: boolean;
15745
+ full_address: boolean;
15746
+ last_name: boolean;
15747
+ middle_name: boolean;
15748
+ phone: boolean;
15749
+ username: boolean;
15750
+ };
15751
+ };
15324
15752
  }];
15325
15753
  };
15326
15754
  interface IInput$k {
@@ -16636,6 +17064,66 @@ declare const query$6: {
16636
17064
  verificator: boolean;
16637
17065
  };
16638
17066
  };
17067
+ private_account: {
17068
+ type: boolean;
17069
+ individual_data: {
17070
+ email: boolean;
17071
+ full_address: boolean;
17072
+ phone: boolean;
17073
+ first_name: boolean;
17074
+ last_name: boolean;
17075
+ middle_name: boolean;
17076
+ birthdate: boolean;
17077
+ passport: {
17078
+ number: boolean;
17079
+ code: boolean;
17080
+ issued_at: boolean;
17081
+ issued_by: boolean;
17082
+ series: boolean;
17083
+ };
17084
+ username: boolean;
17085
+ };
17086
+ organization_data: {
17087
+ city: boolean;
17088
+ country: boolean;
17089
+ details: {
17090
+ inn: boolean;
17091
+ kpp: boolean;
17092
+ ogrn: boolean;
17093
+ };
17094
+ email: boolean;
17095
+ fact_address: boolean;
17096
+ full_address: boolean;
17097
+ full_name: boolean;
17098
+ phone: boolean;
17099
+ represented_by: {
17100
+ based_on: boolean;
17101
+ first_name: boolean;
17102
+ last_name: boolean;
17103
+ middle_name: boolean;
17104
+ position: boolean;
17105
+ };
17106
+ short_name: boolean;
17107
+ type: boolean;
17108
+ username: boolean;
17109
+ };
17110
+ entrepreneur_data: {
17111
+ birthdate: boolean;
17112
+ city: boolean;
17113
+ country: boolean;
17114
+ details: {
17115
+ inn: boolean;
17116
+ ogrn: boolean;
17117
+ };
17118
+ email: boolean;
17119
+ first_name: boolean;
17120
+ full_address: boolean;
17121
+ last_name: boolean;
17122
+ middle_name: boolean;
17123
+ phone: boolean;
17124
+ username: boolean;
17125
+ };
17126
+ };
16639
17127
  }];
16640
17128
  };
16641
17129
  interface IInput$6 {
@@ -16657,8 +17145,8 @@ declare const name$3 = "getAccounts";
16657
17145
  */
16658
17146
  declare const query$5: {
16659
17147
  getAccounts: [{
16660
- data: Variable<"GetAccountsInput!", "data">;
16661
- options: Variable<"PaginationInput!", "options">;
17148
+ data: Variable<"GetAccountsInput", "data">;
17149
+ options: Variable<"PaginationInput", "options">;
16662
17150
  }, {
16663
17151
  items: {
16664
17152
  username: boolean;
@@ -16775,6 +17263,66 @@ declare const query$5: {
16775
17263
  verificator: boolean;
16776
17264
  };
16777
17265
  };
17266
+ private_account: {
17267
+ type: boolean;
17268
+ individual_data: {
17269
+ email: boolean;
17270
+ full_address: boolean;
17271
+ phone: boolean;
17272
+ first_name: boolean;
17273
+ last_name: boolean;
17274
+ middle_name: boolean;
17275
+ birthdate: boolean;
17276
+ passport: {
17277
+ number: boolean;
17278
+ code: boolean;
17279
+ issued_at: boolean;
17280
+ issued_by: boolean;
17281
+ series: boolean;
17282
+ };
17283
+ username: boolean;
17284
+ };
17285
+ organization_data: {
17286
+ city: boolean;
17287
+ country: boolean;
17288
+ details: {
17289
+ inn: boolean;
17290
+ kpp: boolean;
17291
+ ogrn: boolean;
17292
+ };
17293
+ email: boolean;
17294
+ fact_address: boolean;
17295
+ full_address: boolean;
17296
+ full_name: boolean;
17297
+ phone: boolean;
17298
+ represented_by: {
17299
+ based_on: boolean;
17300
+ first_name: boolean;
17301
+ last_name: boolean;
17302
+ middle_name: boolean;
17303
+ position: boolean;
17304
+ };
17305
+ short_name: boolean;
17306
+ type: boolean;
17307
+ username: boolean;
17308
+ };
17309
+ entrepreneur_data: {
17310
+ birthdate: boolean;
17311
+ city: boolean;
17312
+ country: boolean;
17313
+ details: {
17314
+ inn: boolean;
17315
+ ogrn: boolean;
17316
+ };
17317
+ email: boolean;
17318
+ first_name: boolean;
17319
+ full_address: boolean;
17320
+ last_name: boolean;
17321
+ middle_name: boolean;
17322
+ phone: boolean;
17323
+ username: boolean;
17324
+ };
17325
+ };
16778
17326
  };
16779
17327
  totalCount: boolean;
16780
17328
  totalPages: boolean;