@coopenomics/sdk 2026.5.15-3 → 2026.5.19-2

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.cts CHANGED
@@ -2456,8 +2456,12 @@ type ValueTypes = {
2456
2456
  can_set_master?: boolean | `@${string}`;
2457
2457
  /** Может ли устанавливать план проекта */
2458
2458
  can_set_plan?: boolean | `@${string}`;
2459
+ /** Может ли просматривать артефакты (требования) проекта/компонента */
2460
+ can_view_artifacts?: boolean | `@${string}`;
2459
2461
  /** Имеет ли подтвержденное приложение для проекта */
2460
2462
  has_clearance?: boolean | `@${string}`;
2463
+ /** Имеет ли допуск к родительскому проекту (для компонента) */
2464
+ has_parent_clearance?: boolean | `@${string}`;
2461
2465
  /** Является ли пользователь гостем (неавторизованным) */
2462
2466
  is_guest?: boolean | `@${string}`;
2463
2467
  /** Есть ли запрос на получение допуска в рассмотрении */
@@ -4703,6 +4707,38 @@ type ValueTypes = {
4703
4707
  /** Версия генератора, использованного для создания документа */
4704
4708
  version: string | Variable<any, string>;
4705
4709
  };
4710
+ ["GenerationConvertStatementGenerateDocumentInput"]: {
4711
+ /** Сумма для перевода в программу «Благорост» */
4712
+ blagorost_wallet_amount: string | Variable<any, string>;
4713
+ /** Номер блока, на котором был создан документ */
4714
+ block_num?: number | undefined | null | Variable<any, string>;
4715
+ /** Название кооператива, связанное с документом */
4716
+ coopname: string | Variable<any, string>;
4717
+ /** Дата и время создания документа */
4718
+ created_at?: string | undefined | null | Variable<any, string>;
4719
+ /** Имя генератора, использованного для создания документа */
4720
+ generator?: string | undefined | null | Variable<any, string>;
4721
+ /** Язык документа */
4722
+ lang?: string | undefined | null | Variable<any, string>;
4723
+ /** Ссылки, связанные с документом */
4724
+ links?: Array<string> | undefined | null | Variable<any, string>;
4725
+ /** Сумма для перевода в Цифровой Кошелёк */
4726
+ main_wallet_amount: string | Variable<any, string>;
4727
+ /** Хэш проекта */
4728
+ project_hash: string | Variable<any, string>;
4729
+ /** Часовой пояс, в котором был создан документ */
4730
+ timezone?: string | undefined | null | Variable<any, string>;
4731
+ /** Название документа */
4732
+ title?: string | undefined | null | Variable<any, string>;
4733
+ /** Признак перевода в программу «Благорост» */
4734
+ to_blagorost: boolean | Variable<any, string>;
4735
+ /** Признак перевода в Цифровой Кошелёк */
4736
+ to_wallet: boolean | Variable<any, string>;
4737
+ /** Имя пользователя, создавшего документ */
4738
+ username: string | Variable<any, string>;
4739
+ /** Версия генератора, использованного для создания документа */
4740
+ version?: string | undefined | null | Variable<any, string>;
4741
+ };
4706
4742
  ["GenerationMoneyInvestStatementGenerateDocumentInput"]: {
4707
4743
  /** Сумма инвестирования */
4708
4744
  amount: string | Variable<any, string>;
@@ -4779,40 +4815,6 @@ type ValueTypes = {
4779
4815
  /** Версия генератора, использованного для создания документа */
4780
4816
  version: string | Variable<any, string>;
4781
4817
  };
4782
- ["GenerationToMainWalletConvertStatementGenerateDocumentInput"]: {
4783
- /** Хэш приложения */
4784
- appendix_hash: string | Variable<any, string>;
4785
- /** Сумма для перевода на благорост кошелек */
4786
- blagorost_wallet_amount: string | Variable<any, string>;
4787
- /** Номер блока, на котором был создан документ */
4788
- block_num?: number | undefined | null | Variable<any, string>;
4789
- /** Название кооператива, связанное с документом */
4790
- coopname: string | Variable<any, string>;
4791
- /** Дата и время создания документа */
4792
- created_at?: string | undefined | null | Variable<any, string>;
4793
- /** Имя генератора, использованного для создания документа */
4794
- generator?: string | undefined | null | Variable<any, string>;
4795
- /** Язык документа */
4796
- lang?: string | undefined | null | Variable<any, string>;
4797
- /** Ссылки, связанные с документом */
4798
- links?: Array<string> | undefined | null | Variable<any, string>;
4799
- /** Сумма для перевода на основной кошелек */
4800
- main_wallet_amount: string | Variable<any, string>;
4801
- /** Хэш проекта */
4802
- project_hash: string | Variable<any, string>;
4803
- /** Часовой пояс, в котором был создан документ */
4804
- timezone?: string | undefined | null | Variable<any, string>;
4805
- /** Название документа */
4806
- title?: string | undefined | null | Variable<any, string>;
4807
- /** Перевод на благорост кошелек */
4808
- to_blagorost: boolean | Variable<any, string>;
4809
- /** Перевод на основной кошелек */
4810
- to_wallet: boolean | Variable<any, string>;
4811
- /** Имя пользователя, создавшего документ */
4812
- username: string | Variable<any, string>;
4813
- /** Версия генератора, использованного для создания документа */
4814
- version?: string | undefined | null | Variable<any, string>;
4815
- };
4816
4818
  ["GetAccountInput"]: {
4817
4819
  /** Имя аккаунта пользователя */
4818
4820
  username: string | Variable<any, string>;
@@ -5700,6 +5702,10 @@ type ValueTypes = {
5700
5702
  data: ValueTypes["GenerationContractGenerateDocumentInput"] | Variable<any, string>;
5701
5703
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
5702
5704
  }, ValueTypes["GeneratedDocument"]];
5705
+ capitalGenerateGenerationConvertStatement?: [{
5706
+ data: ValueTypes["GenerationConvertStatementGenerateDocumentInput"] | Variable<any, string>;
5707
+ options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
5708
+ }, ValueTypes["GeneratedDocument"]];
5703
5709
  capitalGenerateGenerationMoneyInvestStatement?: [{
5704
5710
  data: ValueTypes["GenerationMoneyInvestStatementGenerateDocumentInput"] | Variable<any, string>;
5705
5711
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
@@ -5716,18 +5722,6 @@ type ValueTypes = {
5716
5722
  data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
5717
5723
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
5718
5724
  }, ValueTypes["GeneratedDocument"]];
5719
- capitalGenerateGenerationToCapitalizationConvertStatement?: [{
5720
- data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
5721
- options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
5722
- }, ValueTypes["GeneratedDocument"]];
5723
- capitalGenerateGenerationToMainWalletConvertStatement?: [{
5724
- data: ValueTypes["GenerationToMainWalletConvertStatementGenerateDocumentInput"] | Variable<any, string>;
5725
- options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
5726
- }, ValueTypes["GeneratedDocument"]];
5727
- capitalGenerateGenerationToProjectConvertStatement?: [{
5728
- data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
5729
- options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
5730
- }, ValueTypes["GeneratedDocument"]];
5731
5725
  capitalGenerateGetLoanDecision?: [{
5732
5726
  data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
5733
5727
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
@@ -11452,8 +11446,12 @@ type ResolverInputTypes = {
11452
11446
  can_set_master?: boolean | `@${string}`;
11453
11447
  /** Может ли устанавливать план проекта */
11454
11448
  can_set_plan?: boolean | `@${string}`;
11449
+ /** Может ли просматривать артефакты (требования) проекта/компонента */
11450
+ can_view_artifacts?: boolean | `@${string}`;
11455
11451
  /** Имеет ли подтвержденное приложение для проекта */
11456
11452
  has_clearance?: boolean | `@${string}`;
11453
+ /** Имеет ли допуск к родительскому проекту (для компонента) */
11454
+ has_parent_clearance?: boolean | `@${string}`;
11457
11455
  /** Является ли пользователь гостем (неавторизованным) */
11458
11456
  is_guest?: boolean | `@${string}`;
11459
11457
  /** Есть ли запрос на получение допуска в рассмотрении */
@@ -13644,6 +13642,38 @@ type ResolverInputTypes = {
13644
13642
  /** Версия генератора, использованного для создания документа */
13645
13643
  version: string;
13646
13644
  };
13645
+ ["GenerationConvertStatementGenerateDocumentInput"]: {
13646
+ /** Сумма для перевода в программу «Благорост» */
13647
+ blagorost_wallet_amount: string;
13648
+ /** Номер блока, на котором был создан документ */
13649
+ block_num?: number | undefined | null;
13650
+ /** Название кооператива, связанное с документом */
13651
+ coopname: string;
13652
+ /** Дата и время создания документа */
13653
+ created_at?: string | undefined | null;
13654
+ /** Имя генератора, использованного для создания документа */
13655
+ generator?: string | undefined | null;
13656
+ /** Язык документа */
13657
+ lang?: string | undefined | null;
13658
+ /** Ссылки, связанные с документом */
13659
+ links?: Array<string> | undefined | null;
13660
+ /** Сумма для перевода в Цифровой Кошелёк */
13661
+ main_wallet_amount: string;
13662
+ /** Хэш проекта */
13663
+ project_hash: string;
13664
+ /** Часовой пояс, в котором был создан документ */
13665
+ timezone?: string | undefined | null;
13666
+ /** Название документа */
13667
+ title?: string | undefined | null;
13668
+ /** Признак перевода в программу «Благорост» */
13669
+ to_blagorost: boolean;
13670
+ /** Признак перевода в Цифровой Кошелёк */
13671
+ to_wallet: boolean;
13672
+ /** Имя пользователя, создавшего документ */
13673
+ username: string;
13674
+ /** Версия генератора, использованного для создания документа */
13675
+ version?: string | undefined | null;
13676
+ };
13647
13677
  ["GenerationMoneyInvestStatementGenerateDocumentInput"]: {
13648
13678
  /** Сумма инвестирования */
13649
13679
  amount: string;
@@ -13720,40 +13750,6 @@ type ResolverInputTypes = {
13720
13750
  /** Версия генератора, использованного для создания документа */
13721
13751
  version: string;
13722
13752
  };
13723
- ["GenerationToMainWalletConvertStatementGenerateDocumentInput"]: {
13724
- /** Хэш приложения */
13725
- appendix_hash: string;
13726
- /** Сумма для перевода на благорост кошелек */
13727
- blagorost_wallet_amount: string;
13728
- /** Номер блока, на котором был создан документ */
13729
- block_num?: number | undefined | null;
13730
- /** Название кооператива, связанное с документом */
13731
- coopname: string;
13732
- /** Дата и время создания документа */
13733
- created_at?: string | undefined | null;
13734
- /** Имя генератора, использованного для создания документа */
13735
- generator?: string | undefined | null;
13736
- /** Язык документа */
13737
- lang?: string | undefined | null;
13738
- /** Ссылки, связанные с документом */
13739
- links?: Array<string> | undefined | null;
13740
- /** Сумма для перевода на основной кошелек */
13741
- main_wallet_amount: string;
13742
- /** Хэш проекта */
13743
- project_hash: string;
13744
- /** Часовой пояс, в котором был создан документ */
13745
- timezone?: string | undefined | null;
13746
- /** Название документа */
13747
- title?: string | undefined | null;
13748
- /** Перевод на благорост кошелек */
13749
- to_blagorost: boolean;
13750
- /** Перевод на основной кошелек */
13751
- to_wallet: boolean;
13752
- /** Имя пользователя, создавшего документ */
13753
- username: string;
13754
- /** Версия генератора, использованного для создания документа */
13755
- version?: string | undefined | null;
13756
- };
13757
13753
  ["GetAccountInput"]: {
13758
13754
  /** Имя аккаунта пользователя */
13759
13755
  username: string;
@@ -14618,6 +14614,10 @@ type ResolverInputTypes = {
14618
14614
  data: ResolverInputTypes["GenerationContractGenerateDocumentInput"];
14619
14615
  options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
14620
14616
  }, ResolverInputTypes["GeneratedDocument"]];
14617
+ capitalGenerateGenerationConvertStatement?: [{
14618
+ data: ResolverInputTypes["GenerationConvertStatementGenerateDocumentInput"];
14619
+ options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
14620
+ }, ResolverInputTypes["GeneratedDocument"]];
14621
14621
  capitalGenerateGenerationMoneyInvestStatement?: [{
14622
14622
  data: ResolverInputTypes["GenerationMoneyInvestStatementGenerateDocumentInput"];
14623
14623
  options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
@@ -14634,18 +14634,6 @@ type ResolverInputTypes = {
14634
14634
  data: ResolverInputTypes["GenerateDocumentInput"];
14635
14635
  options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
14636
14636
  }, ResolverInputTypes["GeneratedDocument"]];
14637
- capitalGenerateGenerationToCapitalizationConvertStatement?: [{
14638
- data: ResolverInputTypes["GenerateDocumentInput"];
14639
- options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
14640
- }, ResolverInputTypes["GeneratedDocument"]];
14641
- capitalGenerateGenerationToMainWalletConvertStatement?: [{
14642
- data: ResolverInputTypes["GenerationToMainWalletConvertStatementGenerateDocumentInput"];
14643
- options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
14644
- }, ResolverInputTypes["GeneratedDocument"]];
14645
- capitalGenerateGenerationToProjectConvertStatement?: [{
14646
- data: ResolverInputTypes["GenerateDocumentInput"];
14647
- options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
14648
- }, ResolverInputTypes["GeneratedDocument"]];
14649
14637
  capitalGenerateGetLoanDecision?: [{
14650
14638
  data: ResolverInputTypes["GenerateDocumentInput"];
14651
14639
  options?: ResolverInputTypes["GenerateDocumentOptionsInput"] | undefined | null;
@@ -19409,13 +19397,13 @@ type ModelTypes = {
19409
19397
  /** Обогащенные данные коммита (diff-патч, исходная ссылка и т.д.) */
19410
19398
  data?: ModelTypes["JSON"] | undefined | null;
19411
19399
  /** Описание коммита */
19412
- description: string;
19400
+ description?: string | undefined | null;
19413
19401
  /** Отображаемое имя пользователя */
19414
19402
  display_name?: string | undefined | null;
19415
19403
  /** ID в блокчейне */
19416
19404
  id?: number | undefined | null;
19417
19405
  /** Метаданные коммита */
19418
- meta: string;
19406
+ meta?: string | undefined | null;
19419
19407
  /** Флаг присутствия записи в блокчейне */
19420
19408
  present: boolean;
19421
19409
  /** Проект, к которому относится коммит */
@@ -20212,8 +20200,12 @@ type ModelTypes = {
20212
20200
  can_set_master: boolean;
20213
20201
  /** Может ли устанавливать план проекта */
20214
20202
  can_set_plan: boolean;
20203
+ /** Может ли просматривать артефакты (требования) проекта/компонента */
20204
+ can_view_artifacts: boolean;
20215
20205
  /** Имеет ли подтвержденное приложение для проекта */
20216
20206
  has_clearance: boolean;
20207
+ /** Имеет ли допуск к родительскому проекту (для компонента) */
20208
+ has_parent_clearance: boolean;
20217
20209
  /** Является ли пользователь гостем (неавторизованным) */
20218
20210
  is_guest: boolean;
20219
20211
  /** Есть ли запрос на получение допуска в рассмотрении */
@@ -22340,6 +22332,38 @@ type ModelTypes = {
22340
22332
  /** Версия генератора, использованного для создания документа */
22341
22333
  version: string;
22342
22334
  };
22335
+ ["GenerationConvertStatementGenerateDocumentInput"]: {
22336
+ /** Сумма для перевода в программу «Благорост» */
22337
+ blagorost_wallet_amount: string;
22338
+ /** Номер блока, на котором был создан документ */
22339
+ block_num?: number | undefined | null;
22340
+ /** Название кооператива, связанное с документом */
22341
+ coopname: string;
22342
+ /** Дата и время создания документа */
22343
+ created_at?: string | undefined | null;
22344
+ /** Имя генератора, использованного для создания документа */
22345
+ generator?: string | undefined | null;
22346
+ /** Язык документа */
22347
+ lang?: string | undefined | null;
22348
+ /** Ссылки, связанные с документом */
22349
+ links?: Array<string> | undefined | null;
22350
+ /** Сумма для перевода в Цифровой Кошелёк */
22351
+ main_wallet_amount: string;
22352
+ /** Хэш проекта */
22353
+ project_hash: string;
22354
+ /** Часовой пояс, в котором был создан документ */
22355
+ timezone?: string | undefined | null;
22356
+ /** Название документа */
22357
+ title?: string | undefined | null;
22358
+ /** Признак перевода в программу «Благорост» */
22359
+ to_blagorost: boolean;
22360
+ /** Признак перевода в Цифровой Кошелёк */
22361
+ to_wallet: boolean;
22362
+ /** Имя пользователя, создавшего документ */
22363
+ username: string;
22364
+ /** Версия генератора, использованного для создания документа */
22365
+ version?: string | undefined | null;
22366
+ };
22343
22367
  ["GenerationMoneyInvestStatementGenerateDocumentInput"]: {
22344
22368
  /** Сумма инвестирования */
22345
22369
  amount: string;
@@ -22416,40 +22440,6 @@ type ModelTypes = {
22416
22440
  /** Версия генератора, использованного для создания документа */
22417
22441
  version: string;
22418
22442
  };
22419
- ["GenerationToMainWalletConvertStatementGenerateDocumentInput"]: {
22420
- /** Хэш приложения */
22421
- appendix_hash: string;
22422
- /** Сумма для перевода на благорост кошелек */
22423
- blagorost_wallet_amount: string;
22424
- /** Номер блока, на котором был создан документ */
22425
- block_num?: number | undefined | null;
22426
- /** Название кооператива, связанное с документом */
22427
- coopname: string;
22428
- /** Дата и время создания документа */
22429
- created_at?: string | undefined | null;
22430
- /** Имя генератора, использованного для создания документа */
22431
- generator?: string | undefined | null;
22432
- /** Язык документа */
22433
- lang?: string | undefined | null;
22434
- /** Ссылки, связанные с документом */
22435
- links?: Array<string> | undefined | null;
22436
- /** Сумма для перевода на основной кошелек */
22437
- main_wallet_amount: string;
22438
- /** Хэш проекта */
22439
- project_hash: string;
22440
- /** Часовой пояс, в котором был создан документ */
22441
- timezone?: string | undefined | null;
22442
- /** Название документа */
22443
- title?: string | undefined | null;
22444
- /** Перевод на благорост кошелек */
22445
- to_blagorost: boolean;
22446
- /** Перевод на основной кошелек */
22447
- to_wallet: boolean;
22448
- /** Имя пользователя, создавшего документ */
22449
- username: string;
22450
- /** Версия генератора, использованного для создания документа */
22451
- version?: string | undefined | null;
22452
- };
22453
22443
  ["GetAccountInput"]: {
22454
22444
  /** Имя аккаунта пользователя */
22455
22445
  username: string;
@@ -23313,6 +23303,10 @@ type ModelTypes = {
23313
23303
 
23314
23304
  Требуемые роли: chairman, member. */
23315
23305
  capitalGenerateGenerationContract: ModelTypes["GeneratedDocument"];
23306
+ /** Сгенерировать заявление о конвертации целевого паевого взноса (в Цифровой Кошелёк и/или в программу «Благорост»)
23307
+
23308
+ Требуемые роли: chairman, member. */
23309
+ capitalGenerateGenerationConvertStatement: ModelTypes["GeneratedDocument"];
23316
23310
  /** Сгенерировать заявление об инвестировании в генерацию
23317
23311
 
23318
23312
  Требуемые роли: chairman, member. */
@@ -23329,18 +23323,6 @@ type ModelTypes = {
23329
23323
 
23330
23324
  Требуемые роли: chairman, member. */
23331
23325
  capitalGenerateGenerationPropertyInvestStatement: ModelTypes["GeneratedDocument"];
23332
- /** Сгенерировать заявление о конвертации из генерации в благорост
23333
-
23334
- Требуемые роли: chairman, member. */
23335
- capitalGenerateGenerationToCapitalizationConvertStatement: ModelTypes["GeneratedDocument"];
23336
- /** Сгенерировать заявление о конвертации из генерации в основной кошелек
23337
-
23338
- Требуемые роли: chairman, member. */
23339
- capitalGenerateGenerationToMainWalletConvertStatement: ModelTypes["GeneratedDocument"];
23340
- /** Сгенерировать заявление о конвертации из генерации в проектный кошелек
23341
-
23342
- Требуемые роли: chairman, member. */
23343
- capitalGenerateGenerationToProjectConvertStatement: ModelTypes["GeneratedDocument"];
23344
23326
  /** Сгенерировать решение о получении займа
23345
23327
 
23346
23328
  Требуемые роли: chairman, member. */
@@ -28066,13 +28048,13 @@ type GraphQLTypes = {
28066
28048
  /** Обогащенные данные коммита (diff-патч, исходная ссылка и т.д.) */
28067
28049
  data?: GraphQLTypes["JSON"] | undefined | null;
28068
28050
  /** Описание коммита */
28069
- description: string;
28051
+ description?: string | undefined | null;
28070
28052
  /** Отображаемое имя пользователя */
28071
28053
  display_name?: string | undefined | null;
28072
28054
  /** ID в блокчейне */
28073
28055
  id?: number | undefined | null;
28074
28056
  /** Метаданные коммита */
28075
- meta: string;
28057
+ meta?: string | undefined | null;
28076
28058
  /** Флаг присутствия записи в блокчейне */
28077
28059
  present: boolean;
28078
28060
  /** Проект, к которому относится коммит */
@@ -28907,8 +28889,12 @@ type GraphQLTypes = {
28907
28889
  can_set_master: boolean;
28908
28890
  /** Может ли устанавливать план проекта */
28909
28891
  can_set_plan: boolean;
28892
+ /** Может ли просматривать артефакты (требования) проекта/компонента */
28893
+ can_view_artifacts: boolean;
28910
28894
  /** Имеет ли подтвержденное приложение для проекта */
28911
28895
  has_clearance: boolean;
28896
+ /** Имеет ли допуск к родительскому проекту (для компонента) */
28897
+ has_parent_clearance: boolean;
28912
28898
  /** Является ли пользователь гостем (неавторизованным) */
28913
28899
  is_guest: boolean;
28914
28900
  /** Есть ли запрос на получение допуска в рассмотрении */
@@ -31155,6 +31141,38 @@ type GraphQLTypes = {
31155
31141
  /** Версия генератора, использованного для создания документа */
31156
31142
  version: string;
31157
31143
  };
31144
+ ["GenerationConvertStatementGenerateDocumentInput"]: {
31145
+ /** Сумма для перевода в программу «Благорост» */
31146
+ blagorost_wallet_amount: string;
31147
+ /** Номер блока, на котором был создан документ */
31148
+ block_num?: number | undefined | null;
31149
+ /** Название кооператива, связанное с документом */
31150
+ coopname: string;
31151
+ /** Дата и время создания документа */
31152
+ created_at?: string | undefined | null;
31153
+ /** Имя генератора, использованного для создания документа */
31154
+ generator?: string | undefined | null;
31155
+ /** Язык документа */
31156
+ lang?: string | undefined | null;
31157
+ /** Ссылки, связанные с документом */
31158
+ links?: Array<string> | undefined | null;
31159
+ /** Сумма для перевода в Цифровой Кошелёк */
31160
+ main_wallet_amount: string;
31161
+ /** Хэш проекта */
31162
+ project_hash: string;
31163
+ /** Часовой пояс, в котором был создан документ */
31164
+ timezone?: string | undefined | null;
31165
+ /** Название документа */
31166
+ title?: string | undefined | null;
31167
+ /** Признак перевода в программу «Благорост» */
31168
+ to_blagorost: boolean;
31169
+ /** Признак перевода в Цифровой Кошелёк */
31170
+ to_wallet: boolean;
31171
+ /** Имя пользователя, создавшего документ */
31172
+ username: string;
31173
+ /** Версия генератора, использованного для создания документа */
31174
+ version?: string | undefined | null;
31175
+ };
31158
31176
  ["GenerationMoneyInvestStatementGenerateDocumentInput"]: {
31159
31177
  /** Сумма инвестирования */
31160
31178
  amount: string;
@@ -31231,40 +31249,6 @@ type GraphQLTypes = {
31231
31249
  /** Версия генератора, использованного для создания документа */
31232
31250
  version: string;
31233
31251
  };
31234
- ["GenerationToMainWalletConvertStatementGenerateDocumentInput"]: {
31235
- /** Хэш приложения */
31236
- appendix_hash: string;
31237
- /** Сумма для перевода на благорост кошелек */
31238
- blagorost_wallet_amount: string;
31239
- /** Номер блока, на котором был создан документ */
31240
- block_num?: number | undefined | null;
31241
- /** Название кооператива, связанное с документом */
31242
- coopname: string;
31243
- /** Дата и время создания документа */
31244
- created_at?: string | undefined | null;
31245
- /** Имя генератора, использованного для создания документа */
31246
- generator?: string | undefined | null;
31247
- /** Язык документа */
31248
- lang?: string | undefined | null;
31249
- /** Ссылки, связанные с документом */
31250
- links?: Array<string> | undefined | null;
31251
- /** Сумма для перевода на основной кошелек */
31252
- main_wallet_amount: string;
31253
- /** Хэш проекта */
31254
- project_hash: string;
31255
- /** Часовой пояс, в котором был создан документ */
31256
- timezone?: string | undefined | null;
31257
- /** Название документа */
31258
- title?: string | undefined | null;
31259
- /** Перевод на благорост кошелек */
31260
- to_blagorost: boolean;
31261
- /** Перевод на основной кошелек */
31262
- to_wallet: boolean;
31263
- /** Имя пользователя, создавшего документ */
31264
- username: string;
31265
- /** Версия генератора, использованного для создания документа */
31266
- version?: string | undefined | null;
31267
- };
31268
31252
  ["GetAccountInput"]: {
31269
31253
  /** Имя аккаунта пользователя */
31270
31254
  username: string;
@@ -32185,6 +32169,10 @@ type GraphQLTypes = {
32185
32169
 
32186
32170
  Требуемые роли: chairman, member. */
32187
32171
  capitalGenerateGenerationContract: GraphQLTypes["GeneratedDocument"];
32172
+ /** Сгенерировать заявление о конвертации целевого паевого взноса (в Цифровой Кошелёк и/или в программу «Благорост»)
32173
+
32174
+ Требуемые роли: chairman, member. */
32175
+ capitalGenerateGenerationConvertStatement: GraphQLTypes["GeneratedDocument"];
32188
32176
  /** Сгенерировать заявление об инвестировании в генерацию
32189
32177
 
32190
32178
  Требуемые роли: chairman, member. */
@@ -32201,18 +32189,6 @@ type GraphQLTypes = {
32201
32189
 
32202
32190
  Требуемые роли: chairman, member. */
32203
32191
  capitalGenerateGenerationPropertyInvestStatement: GraphQLTypes["GeneratedDocument"];
32204
- /** Сгенерировать заявление о конвертации из генерации в благорост
32205
-
32206
- Требуемые роли: chairman, member. */
32207
- capitalGenerateGenerationToCapitalizationConvertStatement: GraphQLTypes["GeneratedDocument"];
32208
- /** Сгенерировать заявление о конвертации из генерации в основной кошелек
32209
-
32210
- Требуемые роли: chairman, member. */
32211
- capitalGenerateGenerationToMainWalletConvertStatement: GraphQLTypes["GeneratedDocument"];
32212
- /** Сгенерировать заявление о конвертации из генерации в проектный кошелек
32213
-
32214
- Требуемые роли: chairman, member. */
32215
- capitalGenerateGenerationToProjectConvertStatement: GraphQLTypes["GeneratedDocument"];
32216
32192
  /** Сгенерировать решение о получении займа
32217
32193
 
32218
32194
  Требуемые роли: chairman, member. */
@@ -36364,10 +36340,10 @@ type ZEUS_VARIABLES = {
36364
36340
  ["GenerationContractGenerateDocumentInput"]: ValueTypes["GenerationContractGenerateDocumentInput"];
36365
36341
  ["GenerationContractSignedDocumentInput"]: ValueTypes["GenerationContractSignedDocumentInput"];
36366
36342
  ["GenerationContractSignedMetaDocumentInput"]: ValueTypes["GenerationContractSignedMetaDocumentInput"];
36343
+ ["GenerationConvertStatementGenerateDocumentInput"]: ValueTypes["GenerationConvertStatementGenerateDocumentInput"];
36367
36344
  ["GenerationMoneyInvestStatementGenerateDocumentInput"]: ValueTypes["GenerationMoneyInvestStatementGenerateDocumentInput"];
36368
36345
  ["GenerationMoneyInvestStatementSignedDocumentInput"]: ValueTypes["GenerationMoneyInvestStatementSignedDocumentInput"];
36369
36346
  ["GenerationMoneyInvestStatementSignedMetaDocumentInput"]: ValueTypes["GenerationMoneyInvestStatementSignedMetaDocumentInput"];
36370
- ["GenerationToMainWalletConvertStatementGenerateDocumentInput"]: ValueTypes["GenerationToMainWalletConvertStatementGenerateDocumentInput"];
36371
36347
  ["GetAccountInput"]: ValueTypes["GetAccountInput"];
36372
36348
  ["GetAccountsInput"]: ValueTypes["GetAccountsInput"];
36373
36349
  ["GetBranchesInput"]: ValueTypes["GetBranchesInput"];
@@ -37255,8 +37231,8 @@ declare namespace Classes {
37255
37231
  export type { Classes_IVoteData as IVoteData };
37256
37232
  }
37257
37233
 
37258
- declare const name$4f = "registerAccount";
37259
- declare const mutation$2O: {
37234
+ declare const name$4d = "registerAccount";
37235
+ declare const mutation$2M: {
37260
37236
  registerAccount: [{
37261
37237
  data: Variable<"RegisterAccountInput!", "data">;
37262
37238
  }, {
@@ -37452,62 +37428,62 @@ declare const mutation$2O: {
37452
37428
  };
37453
37429
  }];
37454
37430
  };
37455
- interface IInput$4g {
37431
+ interface IInput$4e {
37456
37432
  /**
37457
37433
  * @private
37458
37434
  */
37459
37435
  [key: string]: unknown;
37460
37436
  data: ModelTypes['RegisterAccountInput'];
37461
37437
  }
37462
- type IOutput$4g = InputType<GraphQLTypes['Mutation'], typeof mutation$2O>;
37438
+ type IOutput$4e = InputType<GraphQLTypes['Mutation'], typeof mutation$2M>;
37463
37439
 
37464
37440
  declare namespace registerAccount {
37465
- export { mutation$2O as mutation, name$4f as name };
37466
- export type { IInput$4g as IInput, IOutput$4g as IOutput };
37441
+ export { mutation$2M as mutation, name$4d as name };
37442
+ export type { IInput$4e as IInput, IOutput$4e as IOutput };
37467
37443
  }
37468
37444
 
37469
- declare const name$4e = "resetKey";
37470
- declare const mutation$2N: {
37445
+ declare const name$4c = "resetKey";
37446
+ declare const mutation$2L: {
37471
37447
  resetKey: [{
37472
37448
  data: Variable<"ResetKeyInput!", "data">;
37473
37449
  }, true];
37474
37450
  };
37475
- interface IInput$4f {
37451
+ interface IInput$4d {
37476
37452
  /**
37477
37453
  * @private
37478
37454
  */
37479
37455
  [key: string]: unknown;
37480
37456
  data: ModelTypes['ResetKeyInput'];
37481
37457
  }
37482
- type IOutput$4f = InputType<GraphQLTypes['Mutation'], typeof mutation$2N>;
37458
+ type IOutput$4d = InputType<GraphQLTypes['Mutation'], typeof mutation$2L>;
37483
37459
 
37484
37460
  declare namespace resetKey {
37485
- export { mutation$2N as mutation, name$4e as name };
37486
- export type { IInput$4f as IInput, IOutput$4f as IOutput };
37461
+ export { mutation$2L as mutation, name$4c as name };
37462
+ export type { IInput$4d as IInput, IOutput$4d as IOutput };
37487
37463
  }
37488
37464
 
37489
- declare const name$4d = "startResetKey";
37490
- declare const mutation$2M: {
37465
+ declare const name$4b = "startResetKey";
37466
+ declare const mutation$2K: {
37491
37467
  startResetKey: [{
37492
37468
  data: Variable<"StartResetKeyInput!", "data">;
37493
37469
  }, true];
37494
37470
  };
37495
- interface IInput$4e {
37471
+ interface IInput$4c {
37496
37472
  /**
37497
37473
  * @private
37498
37474
  */
37499
37475
  [key: string]: unknown;
37500
37476
  data: ModelTypes['StartResetKeyInput'];
37501
37477
  }
37502
- type IOutput$4e = InputType<GraphQLTypes['Mutation'], typeof mutation$2M>;
37478
+ type IOutput$4c = InputType<GraphQLTypes['Mutation'], typeof mutation$2K>;
37503
37479
 
37504
37480
  declare namespace startResetKey {
37505
- export { mutation$2M as mutation, name$4d as name };
37506
- export type { IInput$4e as IInput, IOutput$4e as IOutput };
37481
+ export { mutation$2K as mutation, name$4b as name };
37482
+ export type { IInput$4c as IInput, IOutput$4c as IOutput };
37507
37483
  }
37508
37484
 
37509
- declare const name$4c = "updateAccount";
37510
- declare const mutation$2L: {
37485
+ declare const name$4a = "updateAccount";
37486
+ declare const mutation$2J: {
37511
37487
  updateAccount: [{
37512
37488
  data: Variable<"UpdateAccountInput!", "data">;
37513
37489
  }, {
@@ -37691,18 +37667,18 @@ declare const mutation$2L: {
37691
37667
  };
37692
37668
  }];
37693
37669
  };
37694
- interface IInput$4d {
37670
+ interface IInput$4b {
37695
37671
  /**
37696
37672
  * @private
37697
37673
  */
37698
37674
  [key: string]: unknown;
37699
37675
  data: ModelTypes['UpdateAccountInput'];
37700
37676
  }
37701
- type IOutput$4d = InputType<GraphQLTypes['Mutation'], typeof mutation$2L>;
37677
+ type IOutput$4b = InputType<GraphQLTypes['Mutation'], typeof mutation$2J>;
37702
37678
 
37703
37679
  declare namespace updateAccount {
37704
- export { mutation$2L as mutation, name$4c as name };
37705
- export type { IInput$4d as IInput, IOutput$4d as IOutput };
37680
+ export { mutation$2J as mutation, name$4a as name };
37681
+ export type { IInput$4b as IInput, IOutput$4b as IOutput };
37706
37682
  }
37707
37683
 
37708
37684
  /** Зарегистрировать аккаунт пользователя в системе */
@@ -37716,8 +37692,8 @@ declare namespace index$P {
37716
37692
  };
37717
37693
  }
37718
37694
 
37719
- declare const name$4b = "generatePrivacyAgreement";
37720
- declare const mutation$2K: {
37695
+ declare const name$49 = "generatePrivacyAgreement";
37696
+ declare const mutation$2I: {
37721
37697
  generatePrivacyAgreement: [{
37722
37698
  data: Variable<"GenerateDocumentInput!", "data">;
37723
37699
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -37729,7 +37705,7 @@ declare const mutation$2K: {
37729
37705
  meta: boolean;
37730
37706
  }];
37731
37707
  };
37732
- interface IInput$4c {
37708
+ interface IInput$4a {
37733
37709
  /**
37734
37710
  * @private
37735
37711
  */
@@ -37737,15 +37713,15 @@ interface IInput$4c {
37737
37713
  data: ModelTypes['GenerateDocumentInput'];
37738
37714
  options?: ModelTypes['GenerateDocumentOptionsInput'];
37739
37715
  }
37740
- type IOutput$4c = InputType<GraphQLTypes['Mutation'], typeof mutation$2K>;
37716
+ type IOutput$4a = InputType<GraphQLTypes['Mutation'], typeof mutation$2I>;
37741
37717
 
37742
37718
  declare namespace generatePrivacyAgreement {
37743
- export { mutation$2K as mutation, name$4b as name };
37744
- export type { IInput$4c as IInput, IOutput$4c as IOutput };
37719
+ export { mutation$2I as mutation, name$49 as name };
37720
+ export type { IInput$4a as IInput, IOutput$4a as IOutput };
37745
37721
  }
37746
37722
 
37747
- declare const name$4a = "generateSignatureAgreement";
37748
- declare const mutation$2J: {
37723
+ declare const name$48 = "generateSignatureAgreement";
37724
+ declare const mutation$2H: {
37749
37725
  generateSignatureAgreement: [{
37750
37726
  data: Variable<"GenerateDocumentInput!", "data">;
37751
37727
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -37757,7 +37733,7 @@ declare const mutation$2J: {
37757
37733
  meta: boolean;
37758
37734
  }];
37759
37735
  };
37760
- interface IInput$4b {
37736
+ interface IInput$49 {
37761
37737
  /**
37762
37738
  * @private
37763
37739
  */
@@ -37765,15 +37741,15 @@ interface IInput$4b {
37765
37741
  data: ModelTypes['GenerateDocumentInput'];
37766
37742
  options?: ModelTypes['GenerateDocumentOptionsInput'];
37767
37743
  }
37768
- type IOutput$4b = InputType<GraphQLTypes['Mutation'], typeof mutation$2J>;
37744
+ type IOutput$49 = InputType<GraphQLTypes['Mutation'], typeof mutation$2H>;
37769
37745
 
37770
37746
  declare namespace generateSignatureAgreement {
37771
- export { mutation$2J as mutation, name$4a as name };
37772
- export type { IInput$4b as IInput, IOutput$4b as IOutput };
37747
+ export { mutation$2H as mutation, name$48 as name };
37748
+ export type { IInput$49 as IInput, IOutput$49 as IOutput };
37773
37749
  }
37774
37750
 
37775
- declare const name$49 = "generateWalletAgreement";
37776
- declare const mutation$2I: {
37751
+ declare const name$47 = "generateWalletAgreement";
37752
+ declare const mutation$2G: {
37777
37753
  generateWalletAgreement: [{
37778
37754
  data: Variable<"GenerateDocumentInput!", "data">;
37779
37755
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -37785,7 +37761,7 @@ declare const mutation$2I: {
37785
37761
  meta: boolean;
37786
37762
  }];
37787
37763
  };
37788
- interface IInput$4a {
37764
+ interface IInput$48 {
37789
37765
  /**
37790
37766
  * @private
37791
37767
  */
@@ -37793,15 +37769,15 @@ interface IInput$4a {
37793
37769
  data: ModelTypes['GenerateDocumentInput'];
37794
37770
  options?: ModelTypes['GenerateDocumentOptionsInput'];
37795
37771
  }
37796
- type IOutput$4a = InputType<GraphQLTypes['Mutation'], typeof mutation$2I>;
37772
+ type IOutput$48 = InputType<GraphQLTypes['Mutation'], typeof mutation$2G>;
37797
37773
 
37798
37774
  declare namespace generateWalletAgreement {
37799
- export { mutation$2I as mutation, name$49 as name };
37800
- export type { IInput$4a as IInput, IOutput$4a as IOutput };
37775
+ export { mutation$2G as mutation, name$47 as name };
37776
+ export type { IInput$48 as IInput, IOutput$48 as IOutput };
37801
37777
  }
37802
37778
 
37803
- declare const name$48 = "generateUserAgreement";
37804
- declare const mutation$2H: {
37779
+ declare const name$46 = "generateUserAgreement";
37780
+ declare const mutation$2F: {
37805
37781
  generateUserAgreement: [{
37806
37782
  data: Variable<"GenerateDocumentInput!", "data">;
37807
37783
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -37813,7 +37789,7 @@ declare const mutation$2H: {
37813
37789
  meta: boolean;
37814
37790
  }];
37815
37791
  };
37816
- interface IInput$49 {
37792
+ interface IInput$47 {
37817
37793
  /**
37818
37794
  * @private
37819
37795
  */
@@ -37821,15 +37797,15 @@ interface IInput$49 {
37821
37797
  data: ModelTypes['GenerateDocumentInput'];
37822
37798
  options?: ModelTypes['GenerateDocumentOptionsInput'];
37823
37799
  }
37824
- type IOutput$49 = InputType<GraphQLTypes['Mutation'], typeof mutation$2H>;
37800
+ type IOutput$47 = InputType<GraphQLTypes['Mutation'], typeof mutation$2F>;
37825
37801
 
37826
37802
  declare namespace generateUserAgreement {
37827
- export { mutation$2H as mutation, name$48 as name };
37828
- export type { IInput$49 as IInput, IOutput$49 as IOutput };
37803
+ export { mutation$2F as mutation, name$46 as name };
37804
+ export type { IInput$47 as IInput, IOutput$47 as IOutput };
37829
37805
  }
37830
37806
 
37831
- declare const name$47 = "sendAgreement";
37832
- declare const mutation$2G: {
37807
+ declare const name$45 = "sendAgreement";
37808
+ declare const mutation$2E: {
37833
37809
  sendAgreement: [{
37834
37810
  data: Variable<"SendAgreementInput!", "data">;
37835
37811
  }, {
@@ -37844,22 +37820,22 @@ declare const mutation$2G: {
37844
37820
  transaction: boolean;
37845
37821
  }];
37846
37822
  };
37847
- interface IInput$48 {
37823
+ interface IInput$46 {
37848
37824
  /**
37849
37825
  * @private
37850
37826
  */
37851
37827
  [key: string]: unknown;
37852
37828
  data: ModelTypes['SendAgreementInput'];
37853
37829
  }
37854
- type IOutput$48 = InputType<GraphQLTypes['Mutation'], typeof mutation$2G>;
37830
+ type IOutput$46 = InputType<GraphQLTypes['Mutation'], typeof mutation$2E>;
37855
37831
 
37856
37832
  declare namespace sendAgreement {
37857
- export { mutation$2G as mutation, name$47 as name };
37858
- export type { IInput$48 as IInput, IOutput$48 as IOutput };
37833
+ export { mutation$2E as mutation, name$45 as name };
37834
+ export type { IInput$46 as IInput, IOutput$46 as IOutput };
37859
37835
  }
37860
37836
 
37861
- declare const name$46 = "confirmAgreement";
37862
- declare const mutation$2F: {
37837
+ declare const name$44 = "confirmAgreement";
37838
+ declare const mutation$2D: {
37863
37839
  confirmAgreement: [{
37864
37840
  data: Variable<"ConfirmAgreementInput!", "data">;
37865
37841
  }, {
@@ -37874,22 +37850,22 @@ declare const mutation$2F: {
37874
37850
  transaction: boolean;
37875
37851
  }];
37876
37852
  };
37877
- interface IInput$47 {
37853
+ interface IInput$45 {
37878
37854
  /**
37879
37855
  * @private
37880
37856
  */
37881
37857
  [key: string]: unknown;
37882
37858
  data: ModelTypes['ConfirmAgreementInput'];
37883
37859
  }
37884
- type IOutput$47 = InputType<GraphQLTypes['Mutation'], typeof mutation$2F>;
37860
+ type IOutput$45 = InputType<GraphQLTypes['Mutation'], typeof mutation$2D>;
37885
37861
 
37886
37862
  declare namespace confirmAgreement {
37887
- export { mutation$2F as mutation, name$46 as name };
37888
- export type { IInput$47 as IInput, IOutput$47 as IOutput };
37863
+ export { mutation$2D as mutation, name$44 as name };
37864
+ export type { IInput$45 as IInput, IOutput$45 as IOutput };
37889
37865
  }
37890
37866
 
37891
- declare const name$45 = "declineAgreement";
37892
- declare const mutation$2E: {
37867
+ declare const name$43 = "declineAgreement";
37868
+ declare const mutation$2C: {
37893
37869
  declineAgreement: [{
37894
37870
  data: Variable<"DeclineAgreementInput!", "data">;
37895
37871
  }, {
@@ -37904,18 +37880,18 @@ declare const mutation$2E: {
37904
37880
  transaction: boolean;
37905
37881
  }];
37906
37882
  };
37907
- interface IInput$46 {
37883
+ interface IInput$44 {
37908
37884
  /**
37909
37885
  * @private
37910
37886
  */
37911
37887
  [key: string]: unknown;
37912
37888
  data: ModelTypes['DeclineAgreementInput'];
37913
37889
  }
37914
- type IOutput$46 = InputType<GraphQLTypes['Mutation'], typeof mutation$2E>;
37890
+ type IOutput$44 = InputType<GraphQLTypes['Mutation'], typeof mutation$2C>;
37915
37891
 
37916
37892
  declare namespace declineAgreement {
37917
- export { mutation$2E as mutation, name$45 as name };
37918
- export type { IInput$46 as IInput, IOutput$46 as IOutput };
37893
+ export { mutation$2C as mutation, name$43 as name };
37894
+ export type { IInput$44 as IInput, IOutput$44 as IOutput };
37919
37895
  }
37920
37896
 
37921
37897
  /** Сгенерировать документ согласия с политикой конфиденциальности. Требуемые роли: chairman, member. */
@@ -37932,8 +37908,8 @@ declare namespace index$O {
37932
37908
  };
37933
37909
  }
37934
37910
 
37935
- declare const name$44 = "refresh";
37936
- declare const mutation$2D: {
37911
+ declare const name$42 = "refresh";
37912
+ declare const mutation$2B: {
37937
37913
  refresh: [{
37938
37914
  data: Variable<"RefreshInput!", "data">;
37939
37915
  }, {
@@ -38129,42 +38105,42 @@ declare const mutation$2D: {
38129
38105
  };
38130
38106
  }];
38131
38107
  };
38132
- interface IInput$45 {
38108
+ interface IInput$43 {
38133
38109
  /**
38134
38110
  * @private
38135
38111
  */
38136
38112
  [key: string]: unknown;
38137
38113
  data: ModelTypes['RefreshInput'];
38138
38114
  }
38139
- type IOutput$45 = InputType<GraphQLTypes['Mutation'], typeof mutation$2D>;
38115
+ type IOutput$43 = InputType<GraphQLTypes['Mutation'], typeof mutation$2B>;
38140
38116
 
38141
38117
  declare namespace refresh {
38142
- export { mutation$2D as mutation, name$44 as name };
38143
- export type { IInput$45 as IInput, IOutput$45 as IOutput };
38118
+ export { mutation$2B as mutation, name$42 as name };
38119
+ export type { IInput$43 as IInput, IOutput$43 as IOutput };
38144
38120
  }
38145
38121
 
38146
- declare const name$43 = "logout";
38147
- declare const mutation$2C: {
38122
+ declare const name$41 = "logout";
38123
+ declare const mutation$2A: {
38148
38124
  logout: [{
38149
38125
  data: Variable<"LogoutInput!", "data">;
38150
38126
  }, true];
38151
38127
  };
38152
- interface IInput$44 {
38128
+ interface IInput$42 {
38153
38129
  /**
38154
38130
  * @private
38155
38131
  */
38156
38132
  [key: string]: unknown;
38157
38133
  data: ModelTypes['LogoutInput'];
38158
38134
  }
38159
- type IOutput$44 = InputType<GraphQLTypes['Mutation'], typeof mutation$2C>;
38135
+ type IOutput$42 = InputType<GraphQLTypes['Mutation'], typeof mutation$2A>;
38160
38136
 
38161
38137
  declare namespace logout {
38162
- export { mutation$2C as mutation, name$43 as name };
38163
- export type { IInput$44 as IInput, IOutput$44 as IOutput };
38138
+ export { mutation$2A as mutation, name$41 as name };
38139
+ export type { IInput$42 as IInput, IOutput$42 as IOutput };
38164
38140
  }
38165
38141
 
38166
- declare const name$42 = "login";
38167
- declare const mutation$2B: {
38142
+ declare const name$40 = "login";
38143
+ declare const mutation$2z: {
38168
38144
  login: [{
38169
38145
  data: Variable<"LoginInput!", "data">;
38170
38146
  }, {
@@ -38360,18 +38336,18 @@ declare const mutation$2B: {
38360
38336
  };
38361
38337
  }];
38362
38338
  };
38363
- interface IInput$43 {
38339
+ interface IInput$41 {
38364
38340
  /**
38365
38341
  * @private
38366
38342
  */
38367
38343
  [key: string]: unknown;
38368
38344
  data: ModelTypes['LoginInput'];
38369
38345
  }
38370
- type IOutput$43 = InputType<GraphQLTypes['Mutation'], typeof mutation$2B>;
38346
+ type IOutput$41 = InputType<GraphQLTypes['Mutation'], typeof mutation$2z>;
38371
38347
 
38372
38348
  declare namespace login {
38373
- export { mutation$2B as mutation, name$42 as name };
38374
- export type { IInput$43 as IInput, IOutput$43 as IOutput };
38349
+ export { mutation$2z as mutation, name$40 as name };
38350
+ export type { IInput$41 as IInput, IOutput$41 as IOutput };
38375
38351
  }
38376
38352
 
38377
38353
  /** Обновить токен доступа аккаунта */
@@ -38384,8 +38360,8 @@ declare namespace index$N {
38384
38360
  };
38385
38361
  }
38386
38362
 
38387
- declare const name$41 = "addTrustedAccount";
38388
- declare const mutation$2A: {
38363
+ declare const name$3$ = "addTrustedAccount";
38364
+ declare const mutation$2y: {
38389
38365
  addTrustedAccount: [{
38390
38366
  data: Variable<"AddTrustedAccountInput!", "data">;
38391
38367
  }, {
@@ -38467,22 +38443,22 @@ declare const mutation$2A: {
38467
38443
  type: boolean;
38468
38444
  }];
38469
38445
  };
38470
- interface IInput$42 {
38446
+ interface IInput$40 {
38471
38447
  /**
38472
38448
  * @private
38473
38449
  */
38474
38450
  [key: string]: unknown;
38475
38451
  data: ModelTypes['AddTrustedAccountInput'];
38476
38452
  }
38477
- type IOutput$42 = InputType<GraphQLTypes['Mutation'], typeof mutation$2A>;
38453
+ type IOutput$40 = InputType<GraphQLTypes['Mutation'], typeof mutation$2y>;
38478
38454
 
38479
38455
  declare namespace addTrustedAccount {
38480
- export { mutation$2A as mutation, name$41 as name };
38481
- export type { IInput$42 as IInput, IOutput$42 as IOutput };
38456
+ export { mutation$2y as mutation, name$3$ as name };
38457
+ export type { IInput$40 as IInput, IOutput$40 as IOutput };
38482
38458
  }
38483
38459
 
38484
- declare const name$40 = "createBranch";
38485
- declare const mutation$2z: {
38460
+ declare const name$3_ = "createBranch";
38461
+ declare const mutation$2x: {
38486
38462
  createBranch: [{
38487
38463
  data: Variable<"CreateBranchInput!", "data">;
38488
38464
  }, {
@@ -38564,42 +38540,42 @@ declare const mutation$2z: {
38564
38540
  type: boolean;
38565
38541
  }];
38566
38542
  };
38567
- interface IInput$41 {
38543
+ interface IInput$3$ {
38568
38544
  /**
38569
38545
  * @private
38570
38546
  */
38571
38547
  [key: string]: unknown;
38572
38548
  data: ModelTypes['CreateBranchInput'];
38573
38549
  }
38574
- type IOutput$41 = InputType<GraphQLTypes['Mutation'], typeof mutation$2z>;
38550
+ type IOutput$3$ = InputType<GraphQLTypes['Mutation'], typeof mutation$2x>;
38575
38551
 
38576
38552
  declare namespace createBranch {
38577
- export { mutation$2z as mutation, name$40 as name };
38578
- export type { IInput$41 as IInput, IOutput$41 as IOutput };
38553
+ export { mutation$2x as mutation, name$3_ as name };
38554
+ export type { IInput$3$ as IInput, IOutput$3$ as IOutput };
38579
38555
  }
38580
38556
 
38581
- declare const name$3$ = "deleteBranch";
38582
- declare const mutation$2y: {
38557
+ declare const name$3Z = "deleteBranch";
38558
+ declare const mutation$2w: {
38583
38559
  deleteBranch: [{
38584
38560
  data: Variable<"DeleteBranchInput!", "data">;
38585
38561
  }, true];
38586
38562
  };
38587
- interface IInput$40 {
38563
+ interface IInput$3_ {
38588
38564
  /**
38589
38565
  * @private
38590
38566
  */
38591
38567
  [key: string]: unknown;
38592
38568
  data: ModelTypes['DeleteBranchInput'];
38593
38569
  }
38594
- type IOutput$40 = InputType<GraphQLTypes['Mutation'], typeof mutation$2y>;
38570
+ type IOutput$3_ = InputType<GraphQLTypes['Mutation'], typeof mutation$2w>;
38595
38571
 
38596
38572
  declare namespace deleteBranch {
38597
- export { mutation$2y as mutation, name$3$ as name };
38598
- export type { IInput$40 as IInput, IOutput$40 as IOutput };
38573
+ export { mutation$2w as mutation, name$3Z as name };
38574
+ export type { IInput$3_ as IInput, IOutput$3_ as IOutput };
38599
38575
  }
38600
38576
 
38601
- declare const name$3_ = "deleteTrustedAccount";
38602
- declare const mutation$2x: {
38577
+ declare const name$3Y = "deleteTrustedAccount";
38578
+ declare const mutation$2v: {
38603
38579
  deleteTrustedAccount: [{
38604
38580
  data: Variable<"DeleteTrustedAccountInput!", "data">;
38605
38581
  }, {
@@ -38681,22 +38657,22 @@ declare const mutation$2x: {
38681
38657
  type: boolean;
38682
38658
  }];
38683
38659
  };
38684
- interface IInput$3$ {
38660
+ interface IInput$3Z {
38685
38661
  /**
38686
38662
  * @private
38687
38663
  */
38688
38664
  [key: string]: unknown;
38689
38665
  data: ModelTypes['DeleteTrustedAccountInput'];
38690
38666
  }
38691
- type IOutput$3$ = InputType<GraphQLTypes['Mutation'], typeof mutation$2x>;
38667
+ type IOutput$3Z = InputType<GraphQLTypes['Mutation'], typeof mutation$2v>;
38692
38668
 
38693
38669
  declare namespace deleteTrustedAccount {
38694
- export { mutation$2x as mutation, name$3_ as name };
38695
- export type { IInput$3$ as IInput, IOutput$3$ as IOutput };
38670
+ export { mutation$2v as mutation, name$3Y as name };
38671
+ export type { IInput$3Z as IInput, IOutput$3Z as IOutput };
38696
38672
  }
38697
38673
 
38698
- declare const name$3Z = "editBranch";
38699
- declare const mutation$2w: {
38674
+ declare const name$3X = "editBranch";
38675
+ declare const mutation$2u: {
38700
38676
  editBranch: [{
38701
38677
  data: Variable<"EditBranchInput!", "data">;
38702
38678
  }, {
@@ -38778,22 +38754,22 @@ declare const mutation$2w: {
38778
38754
  type: boolean;
38779
38755
  }];
38780
38756
  };
38781
- interface IInput$3_ {
38757
+ interface IInput$3Y {
38782
38758
  /**
38783
38759
  * @private
38784
38760
  */
38785
38761
  [key: string]: unknown;
38786
38762
  data: ModelTypes['EditBranchInput'];
38787
38763
  }
38788
- type IOutput$3_ = InputType<GraphQLTypes['Mutation'], typeof mutation$2w>;
38764
+ type IOutput$3Y = InputType<GraphQLTypes['Mutation'], typeof mutation$2u>;
38789
38765
 
38790
38766
  declare namespace editBranch {
38791
- export { mutation$2w as mutation, name$3Z as name };
38792
- export type { IInput$3_ as IInput, IOutput$3_ as IOutput };
38767
+ export { mutation$2u as mutation, name$3X as name };
38768
+ export type { IInput$3Y as IInput, IOutput$3Y as IOutput };
38793
38769
  }
38794
38770
 
38795
- declare const name$3Y = "generateSelectBranchDocument";
38796
- declare const mutation$2v: {
38771
+ declare const name$3W = "generateSelectBranchDocument";
38772
+ declare const mutation$2t: {
38797
38773
  generateSelectBranchDocument: [{
38798
38774
  data: Variable<"SelectBranchGenerateDocumentInput!", "data">;
38799
38775
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -38805,7 +38781,7 @@ declare const mutation$2v: {
38805
38781
  meta: boolean;
38806
38782
  }];
38807
38783
  };
38808
- interface IInput$3Z {
38784
+ interface IInput$3X {
38809
38785
  /**
38810
38786
  * @private
38811
38787
  */
@@ -38813,31 +38789,31 @@ interface IInput$3Z {
38813
38789
  data: ModelTypes['SelectBranchGenerateDocumentInput'];
38814
38790
  options?: ModelTypes['GenerateDocumentOptionsInput'];
38815
38791
  }
38816
- type IOutput$3Z = InputType<GraphQLTypes['Mutation'], typeof mutation$2v>;
38792
+ type IOutput$3X = InputType<GraphQLTypes['Mutation'], typeof mutation$2t>;
38817
38793
 
38818
38794
  declare namespace generateSelectBranchDocument {
38819
- export { mutation$2v as mutation, name$3Y as name };
38820
- export type { IInput$3Z as IInput, IOutput$3Z as IOutput };
38795
+ export { mutation$2t as mutation, name$3W as name };
38796
+ export type { IInput$3X as IInput, IOutput$3X as IOutput };
38821
38797
  }
38822
38798
 
38823
- declare const name$3X = "selectBranch";
38824
- declare const mutation$2u: {
38799
+ declare const name$3V = "selectBranch";
38800
+ declare const mutation$2s: {
38825
38801
  selectBranch: [{
38826
38802
  data: Variable<"SelectBranchInput!", "data">;
38827
38803
  }, true];
38828
38804
  };
38829
- interface IInput$3Y {
38805
+ interface IInput$3W {
38830
38806
  /**
38831
38807
  * @private
38832
38808
  */
38833
38809
  [key: string]: unknown;
38834
38810
  data: ModelTypes['SelectBranchInput'];
38835
38811
  }
38836
- type IOutput$3Y = InputType<GraphQLTypes['Mutation'], typeof mutation$2u>;
38812
+ type IOutput$3W = InputType<GraphQLTypes['Mutation'], typeof mutation$2s>;
38837
38813
 
38838
38814
  declare namespace selectBranch {
38839
- export { mutation$2u as mutation, name$3X as name };
38840
- export type { IInput$3Y as IInput, IOutput$3Y as IOutput };
38815
+ export { mutation$2s as mutation, name$3V as name };
38816
+ export type { IInput$3W as IInput, IOutput$3W as IOutput };
38841
38817
  }
38842
38818
 
38843
38819
  /** Добавить доверенное лицо кооперативного участка Требуемые роли: chairman. */
@@ -38854,8 +38830,8 @@ declare namespace index$M {
38854
38830
  };
38855
38831
  }
38856
38832
 
38857
- declare const name$3W = "capitalAddAuthor";
38858
- declare const mutation$2t: {
38833
+ declare const name$3U = "capitalAddAuthor";
38834
+ declare const mutation$2r: {
38859
38835
  capitalAddAuthor: [{
38860
38836
  data: Variable<"AddAuthorInput!", "data">;
38861
38837
  }, {
@@ -38968,6 +38944,8 @@ declare const mutation$2t: {
38968
38944
  can_set_plan: boolean;
38969
38945
  has_clearance: boolean;
38970
38946
  pending_clearance: boolean;
38947
+ has_parent_clearance: boolean;
38948
+ can_view_artifacts: boolean;
38971
38949
  is_guest: boolean;
38972
38950
  can_create_requirement: boolean;
38973
38951
  can_edit_requirement: boolean;
@@ -39088,6 +39066,8 @@ declare const mutation$2t: {
39088
39066
  can_set_plan: boolean;
39089
39067
  has_clearance: boolean;
39090
39068
  pending_clearance: boolean;
39069
+ has_parent_clearance: boolean;
39070
+ can_view_artifacts: boolean;
39091
39071
  is_guest: boolean;
39092
39072
  can_create_requirement: boolean;
39093
39073
  can_edit_requirement: boolean;
@@ -39101,22 +39081,22 @@ declare const mutation$2t: {
39101
39081
  _updated_at: boolean;
39102
39082
  }];
39103
39083
  };
39104
- interface IInput$3X {
39084
+ interface IInput$3V {
39105
39085
  /**
39106
39086
  * @private
39107
39087
  */
39108
39088
  [key: string]: unknown;
39109
39089
  data: ModelTypes['AddAuthorInput'];
39110
39090
  }
39111
- type IOutput$3X = InputType<GraphQLTypes['Mutation'], typeof mutation$2t>;
39091
+ type IOutput$3V = InputType<GraphQLTypes['Mutation'], typeof mutation$2r>;
39112
39092
 
39113
39093
  declare namespace addAuthor {
39114
- export { mutation$2t as mutation, name$3W as name };
39115
- export type { IInput$3X as IInput, IOutput$3X as IOutput };
39094
+ export { mutation$2r as mutation, name$3U as name };
39095
+ export type { IInput$3V as IInput, IOutput$3V as IOutput };
39116
39096
  }
39117
39097
 
39118
- declare const name$3V = "capitalApproveCommit";
39119
- declare const mutation$2s: {
39098
+ declare const name$3T = "capitalApproveCommit";
39099
+ declare const mutation$2q: {
39120
39100
  capitalApproveCommit: [{
39121
39101
  data: Variable<"CommitApproveInput!", "data">;
39122
39102
  }, {
@@ -39252,6 +39232,8 @@ declare const mutation$2s: {
39252
39232
  can_set_plan: boolean;
39253
39233
  has_clearance: boolean;
39254
39234
  pending_clearance: boolean;
39235
+ has_parent_clearance: boolean;
39236
+ can_view_artifacts: boolean;
39255
39237
  is_guest: boolean;
39256
39238
  can_create_requirement: boolean;
39257
39239
  can_edit_requirement: boolean;
@@ -39271,22 +39253,22 @@ declare const mutation$2s: {
39271
39253
  _updated_at: boolean;
39272
39254
  }];
39273
39255
  };
39274
- interface IInput$3W {
39256
+ interface IInput$3U {
39275
39257
  /**
39276
39258
  * @private
39277
39259
  */
39278
39260
  [key: string]: unknown;
39279
39261
  data: ModelTypes['CommitApproveInput'];
39280
39262
  }
39281
- type IOutput$3W = InputType<GraphQLTypes['Mutation'], typeof mutation$2s>;
39263
+ type IOutput$3U = InputType<GraphQLTypes['Mutation'], typeof mutation$2q>;
39282
39264
 
39283
39265
  declare namespace approveCommit {
39284
- export { mutation$2s as mutation, name$3V as name };
39285
- export type { IInput$3W as IInput, IOutput$3W as IOutput };
39266
+ export { mutation$2q as mutation, name$3T as name };
39267
+ export type { IInput$3U as IInput, IOutput$3U as IOutput };
39286
39268
  }
39287
39269
 
39288
- declare const name$3U = "capitalCalculateVotes";
39289
- declare const mutation$2r: {
39270
+ declare const name$3S = "capitalCalculateVotes";
39271
+ declare const mutation$2p: {
39290
39272
  capitalCalculateVotes: [{
39291
39273
  data: Variable<"CalculateVotesInput!", "data">;
39292
39274
  }, {
@@ -39343,22 +39325,22 @@ declare const mutation$2r: {
39343
39325
  _updated_at: boolean;
39344
39326
  }];
39345
39327
  };
39346
- interface IInput$3V {
39328
+ interface IInput$3T {
39347
39329
  /**
39348
39330
  * @private
39349
39331
  */
39350
39332
  [key: string]: unknown;
39351
39333
  data: ModelTypes['CalculateVotesInput'];
39352
39334
  }
39353
- type IOutput$3V = InputType<GraphQLTypes['Mutation'], typeof mutation$2r>;
39335
+ type IOutput$3T = InputType<GraphQLTypes['Mutation'], typeof mutation$2p>;
39354
39336
 
39355
39337
  declare namespace calculateVotes {
39356
- export { mutation$2r as mutation, name$3U as name };
39357
- export type { IInput$3V as IInput, IOutput$3V as IOutput };
39338
+ export { mutation$2p as mutation, name$3S as name };
39339
+ export type { IInput$3T as IInput, IOutput$3T as IOutput };
39358
39340
  }
39359
39341
 
39360
- declare const name$3T = "capitalCloseProject";
39361
- declare const mutation$2q: {
39342
+ declare const name$3R = "capitalCloseProject";
39343
+ declare const mutation$2o: {
39362
39344
  capitalCloseProject: [{
39363
39345
  data: Variable<"CloseProjectInput!", "data">;
39364
39346
  }, {
@@ -39471,6 +39453,8 @@ declare const mutation$2q: {
39471
39453
  can_set_plan: boolean;
39472
39454
  has_clearance: boolean;
39473
39455
  pending_clearance: boolean;
39456
+ has_parent_clearance: boolean;
39457
+ can_view_artifacts: boolean;
39474
39458
  is_guest: boolean;
39475
39459
  can_create_requirement: boolean;
39476
39460
  can_edit_requirement: boolean;
@@ -39591,6 +39575,8 @@ declare const mutation$2q: {
39591
39575
  can_set_plan: boolean;
39592
39576
  has_clearance: boolean;
39593
39577
  pending_clearance: boolean;
39578
+ has_parent_clearance: boolean;
39579
+ can_view_artifacts: boolean;
39594
39580
  is_guest: boolean;
39595
39581
  can_create_requirement: boolean;
39596
39582
  can_edit_requirement: boolean;
@@ -39604,22 +39590,22 @@ declare const mutation$2q: {
39604
39590
  _updated_at: boolean;
39605
39591
  }];
39606
39592
  };
39607
- interface IInput$3U {
39593
+ interface IInput$3S {
39608
39594
  /**
39609
39595
  * @private
39610
39596
  */
39611
39597
  [key: string]: unknown;
39612
39598
  data: ModelTypes['CloseProjectInput'];
39613
39599
  }
39614
- type IOutput$3U = InputType<GraphQLTypes['Mutation'], typeof mutation$2q>;
39600
+ type IOutput$3S = InputType<GraphQLTypes['Mutation'], typeof mutation$2o>;
39615
39601
 
39616
39602
  declare namespace closeProject {
39617
- export { mutation$2q as mutation, name$3T as name };
39618
- export type { IInput$3U as IInput, IOutput$3U as IOutput };
39603
+ export { mutation$2o as mutation, name$3R as name };
39604
+ export type { IInput$3S as IInput, IOutput$3S as IOutput };
39619
39605
  }
39620
39606
 
39621
- declare const name$3S = "capitalCompleteRegistration";
39622
- declare const mutation$2p: {
39607
+ declare const name$3Q = "capitalCompleteRegistration";
39608
+ declare const mutation$2n: {
39623
39609
  capitalCompleteRegistration: [{
39624
39610
  data: Variable<"CompleteCapitalRegistrationInputDTO!", "data">;
39625
39611
  }, {
@@ -39634,42 +39620,42 @@ declare const mutation$2p: {
39634
39620
  transaction: boolean;
39635
39621
  }];
39636
39622
  };
39637
- interface IInput$3T {
39623
+ interface IInput$3R {
39638
39624
  /**
39639
39625
  * @private
39640
39626
  */
39641
39627
  [key: string]: unknown;
39642
39628
  data: ModelTypes['CompleteCapitalRegistrationInputDTO'];
39643
39629
  }
39644
- type IOutput$3T = InputType<GraphQLTypes['Mutation'], typeof mutation$2p>;
39630
+ type IOutput$3R = InputType<GraphQLTypes['Mutation'], typeof mutation$2n>;
39645
39631
 
39646
39632
  declare namespace completeCapitalRegistration {
39647
- export { mutation$2p as mutation, name$3S as name };
39648
- export type { IInput$3T as IInput, IOutput$3T as IOutput };
39633
+ export { mutation$2n as mutation, name$3Q as name };
39634
+ export type { IInput$3R as IInput, IOutput$3R as IOutput };
39649
39635
  }
39650
39636
 
39651
- declare const name$3R = "completeCapitalOnboardingStep";
39652
- declare const mutation$2o: {
39637
+ declare const name$3P = "completeCapitalOnboardingStep";
39638
+ declare const mutation$2m: {
39653
39639
  completeCapitalOnboardingStep: [{
39654
39640
  data: Variable<"CapitalOnboardingStepInput!", "data">;
39655
39641
  }, any];
39656
39642
  };
39657
- interface IInput$3S {
39643
+ interface IInput$3Q {
39658
39644
  /**
39659
39645
  * @private
39660
39646
  */
39661
39647
  [key: string]: unknown;
39662
39648
  data: ModelTypes['CapitalOnboardingStepInput'];
39663
39649
  }
39664
- type IOutput$3S = InputType<GraphQLTypes['Mutation'], typeof mutation$2o>;
39650
+ type IOutput$3Q = InputType<GraphQLTypes['Mutation'], typeof mutation$2m>;
39665
39651
 
39666
39652
  declare namespace completeOnboardingStep {
39667
- export { mutation$2o as mutation, name$3R as name };
39668
- export type { IInput$3S as IInput, IOutput$3S as IOutput };
39653
+ export { mutation$2m as mutation, name$3P as name };
39654
+ export type { IInput$3Q as IInput, IOutput$3Q as IOutput };
39669
39655
  }
39670
39656
 
39671
- declare const name$3Q = "capitalCompleteVoting";
39672
- declare const mutation$2n: {
39657
+ declare const name$3O = "capitalCompleteVoting";
39658
+ declare const mutation$2l: {
39673
39659
  capitalCompleteVoting: [{
39674
39660
  data: Variable<"CompleteVotingInput!", "data">;
39675
39661
  }, {
@@ -39684,22 +39670,22 @@ declare const mutation$2n: {
39684
39670
  transaction: boolean;
39685
39671
  }];
39686
39672
  };
39687
- interface IInput$3R {
39673
+ interface IInput$3P {
39688
39674
  /**
39689
39675
  * @private
39690
39676
  */
39691
39677
  [key: string]: unknown;
39692
39678
  data: ModelTypes['CompleteVotingInput'];
39693
39679
  }
39694
- type IOutput$3R = InputType<GraphQLTypes['Mutation'], typeof mutation$2n>;
39680
+ type IOutput$3P = InputType<GraphQLTypes['Mutation'], typeof mutation$2l>;
39695
39681
 
39696
39682
  declare namespace completeVoting {
39697
- export { mutation$2n as mutation, name$3Q as name };
39698
- export type { IInput$3R as IInput, IOutput$3R as IOutput };
39683
+ export { mutation$2l as mutation, name$3O as name };
39684
+ export type { IInput$3P as IInput, IOutput$3P as IOutput };
39699
39685
  }
39700
39686
 
39701
- declare const name$3P = "capitalConvertSegment";
39702
- declare const mutation$2m: {
39687
+ declare const name$3N = "capitalConvertSegment";
39688
+ declare const mutation$2k: {
39703
39689
  capitalConvertSegment: [{
39704
39690
  data: Variable<"ConvertSegmentInput!", "data">;
39705
39691
  }, {
@@ -39756,22 +39742,22 @@ declare const mutation$2m: {
39756
39742
  _updated_at: boolean;
39757
39743
  }];
39758
39744
  };
39759
- interface IInput$3Q {
39745
+ interface IInput$3O {
39760
39746
  /**
39761
39747
  * @private
39762
39748
  */
39763
39749
  [key: string]: unknown;
39764
39750
  data: ModelTypes['ConvertSegmentInput'];
39765
39751
  }
39766
- type IOutput$3Q = InputType<GraphQLTypes['Mutation'], typeof mutation$2m>;
39752
+ type IOutput$3O = InputType<GraphQLTypes['Mutation'], typeof mutation$2k>;
39767
39753
 
39768
39754
  declare namespace convertSegment {
39769
- export { mutation$2m as mutation, name$3P as name };
39770
- export type { IInput$3Q as IInput, IOutput$3Q as IOutput };
39755
+ export { mutation$2k as mutation, name$3N as name };
39756
+ export type { IInput$3O as IInput, IOutput$3O as IOutput };
39771
39757
  }
39772
39758
 
39773
- declare const name$3O = "capitalCreateCommit";
39774
- declare const mutation$2l: {
39759
+ declare const name$3M = "capitalCreateCommit";
39760
+ declare const mutation$2j: {
39775
39761
  capitalCreateCommit: [{
39776
39762
  data: Variable<"CreateCommitInput!", "data">;
39777
39763
  }, {
@@ -39907,6 +39893,8 @@ declare const mutation$2l: {
39907
39893
  can_set_plan: boolean;
39908
39894
  has_clearance: boolean;
39909
39895
  pending_clearance: boolean;
39896
+ has_parent_clearance: boolean;
39897
+ can_view_artifacts: boolean;
39910
39898
  is_guest: boolean;
39911
39899
  can_create_requirement: boolean;
39912
39900
  can_edit_requirement: boolean;
@@ -39926,22 +39914,22 @@ declare const mutation$2l: {
39926
39914
  _updated_at: boolean;
39927
39915
  }];
39928
39916
  };
39929
- interface IInput$3P {
39917
+ interface IInput$3N {
39930
39918
  /**
39931
39919
  * @private
39932
39920
  */
39933
39921
  [key: string]: unknown;
39934
39922
  data: ModelTypes['CreateCommitInput'];
39935
39923
  }
39936
- type IOutput$3P = InputType<GraphQLTypes['Mutation'], typeof mutation$2l>;
39924
+ type IOutput$3N = InputType<GraphQLTypes['Mutation'], typeof mutation$2j>;
39937
39925
 
39938
39926
  declare namespace createCommit {
39939
- export { mutation$2l as mutation, name$3O as name };
39940
- export type { IInput$3P as IInput, IOutput$3P as IOutput };
39927
+ export { mutation$2j as mutation, name$3M as name };
39928
+ export type { IInput$3N as IInput, IOutput$3N as IOutput };
39941
39929
  }
39942
39930
 
39943
- declare const name$3N = "capitalCreateCycle";
39944
- declare const mutation$2k: {
39931
+ declare const name$3L = "capitalCreateCycle";
39932
+ declare const mutation$2i: {
39945
39933
  capitalCreateCycle: [{
39946
39934
  data: Variable<"CreateCycleInput!", "data">;
39947
39935
  }, {
@@ -39956,22 +39944,22 @@ declare const mutation$2k: {
39956
39944
  _updated_at: boolean;
39957
39945
  }];
39958
39946
  };
39959
- interface IInput$3O {
39947
+ interface IInput$3M {
39960
39948
  /**
39961
39949
  * @private
39962
39950
  */
39963
39951
  [key: string]: unknown;
39964
39952
  data: ModelTypes['CreateCycleInput'];
39965
39953
  }
39966
- type IOutput$3O = InputType<GraphQLTypes['Mutation'], typeof mutation$2k>;
39954
+ type IOutput$3M = InputType<GraphQLTypes['Mutation'], typeof mutation$2i>;
39967
39955
 
39968
39956
  declare namespace createCycle {
39969
- export { mutation$2k as mutation, name$3N as name };
39970
- export type { IInput$3O as IInput, IOutput$3O as IOutput };
39957
+ export { mutation$2i as mutation, name$3L as name };
39958
+ export type { IInput$3M as IInput, IOutput$3M as IOutput };
39971
39959
  }
39972
39960
 
39973
- declare const name$3M = "capitalCreateDebt";
39974
- declare const mutation$2j: {
39961
+ declare const name$3K = "capitalCreateDebt";
39962
+ declare const mutation$2h: {
39975
39963
  capitalCreateDebt: [{
39976
39964
  data: Variable<"CreateDebtInput!", "data">;
39977
39965
  }, {
@@ -39986,22 +39974,22 @@ declare const mutation$2j: {
39986
39974
  transaction: boolean;
39987
39975
  }];
39988
39976
  };
39989
- interface IInput$3N {
39977
+ interface IInput$3L {
39990
39978
  /**
39991
39979
  * @private
39992
39980
  */
39993
39981
  [key: string]: unknown;
39994
39982
  data: ModelTypes['CreateDebtInput'];
39995
39983
  }
39996
- type IOutput$3N = InputType<GraphQLTypes['Mutation'], typeof mutation$2j>;
39984
+ type IOutput$3L = InputType<GraphQLTypes['Mutation'], typeof mutation$2h>;
39997
39985
 
39998
39986
  declare namespace createDebt {
39999
- export { mutation$2j as mutation, name$3M as name };
40000
- export type { IInput$3N as IInput, IOutput$3N as IOutput };
39987
+ export { mutation$2h as mutation, name$3K as name };
39988
+ export type { IInput$3L as IInput, IOutput$3L as IOutput };
40001
39989
  }
40002
39990
 
40003
- declare const name$3L = "capitalCreateExpense";
40004
- declare const mutation$2i: {
39991
+ declare const name$3J = "capitalCreateExpense";
39992
+ declare const mutation$2g: {
40005
39993
  capitalCreateExpense: [{
40006
39994
  data: Variable<"CreateExpenseInput!", "data">;
40007
39995
  }, {
@@ -40016,22 +40004,22 @@ declare const mutation$2i: {
40016
40004
  transaction: boolean;
40017
40005
  }];
40018
40006
  };
40019
- interface IInput$3M {
40007
+ interface IInput$3K {
40020
40008
  /**
40021
40009
  * @private
40022
40010
  */
40023
40011
  [key: string]: unknown;
40024
40012
  data: ModelTypes['CreateExpenseInput'];
40025
40013
  }
40026
- type IOutput$3M = InputType<GraphQLTypes['Mutation'], typeof mutation$2i>;
40014
+ type IOutput$3K = InputType<GraphQLTypes['Mutation'], typeof mutation$2g>;
40027
40015
 
40028
40016
  declare namespace createExpense {
40029
- export { mutation$2i as mutation, name$3L as name };
40030
- export type { IInput$3M as IInput, IOutput$3M as IOutput };
40017
+ export { mutation$2g as mutation, name$3J as name };
40018
+ export type { IInput$3K as IInput, IOutput$3K as IOutput };
40031
40019
  }
40032
40020
 
40033
- declare const name$3K = "capitalCreateIssue";
40034
- declare const mutation$2h: {
40021
+ declare const name$3I = "capitalCreateIssue";
40022
+ declare const mutation$2f: {
40035
40023
  capitalCreateIssue: [{
40036
40024
  data: Variable<"CreateIssueInput!", "data">;
40037
40025
  }, {
@@ -40089,22 +40077,22 @@ declare const mutation$2h: {
40089
40077
  _updated_at: boolean;
40090
40078
  }];
40091
40079
  };
40092
- interface IInput$3L {
40080
+ interface IInput$3J {
40093
40081
  /**
40094
40082
  * @private
40095
40083
  */
40096
40084
  [key: string]: unknown;
40097
40085
  data: ModelTypes['CreateIssueInput'];
40098
40086
  }
40099
- type IOutput$3L = InputType<GraphQLTypes['Mutation'], typeof mutation$2h>;
40087
+ type IOutput$3J = InputType<GraphQLTypes['Mutation'], typeof mutation$2f>;
40100
40088
 
40101
40089
  declare namespace createIssue {
40102
- export { mutation$2h as mutation, name$3K as name };
40103
- export type { IInput$3L as IInput, IOutput$3L as IOutput };
40090
+ export { mutation$2f as mutation, name$3I as name };
40091
+ export type { IInput$3J as IInput, IOutput$3J as IOutput };
40104
40092
  }
40105
40093
 
40106
- declare const name$3J = "capitalCreateProgramInvest";
40107
- declare const mutation$2g: {
40094
+ declare const name$3H = "capitalCreateProgramInvest";
40095
+ declare const mutation$2e: {
40108
40096
  capitalCreateProgramInvest: [{
40109
40097
  data: Variable<"CreateProgramInvestInput!", "data">;
40110
40098
  }, {
@@ -40119,22 +40107,22 @@ declare const mutation$2g: {
40119
40107
  transaction: boolean;
40120
40108
  }];
40121
40109
  };
40122
- interface IInput$3K {
40110
+ interface IInput$3I {
40123
40111
  /**
40124
40112
  * @private
40125
40113
  */
40126
40114
  [key: string]: unknown;
40127
40115
  data: ModelTypes['CreateProgramInvestInput'];
40128
40116
  }
40129
- type IOutput$3K = InputType<GraphQLTypes['Mutation'], typeof mutation$2g>;
40117
+ type IOutput$3I = InputType<GraphQLTypes['Mutation'], typeof mutation$2e>;
40130
40118
 
40131
40119
  declare namespace createProgramInvest {
40132
- export { mutation$2g as mutation, name$3J as name };
40133
- export type { IInput$3K as IInput, IOutput$3K as IOutput };
40120
+ export { mutation$2e as mutation, name$3H as name };
40121
+ export type { IInput$3I as IInput, IOutput$3I as IOutput };
40134
40122
  }
40135
40123
 
40136
- declare const name$3I = "capitalCreateProgramProperty";
40137
- declare const mutation$2f: {
40124
+ declare const name$3G = "capitalCreateProgramProperty";
40125
+ declare const mutation$2d: {
40138
40126
  capitalCreateProgramProperty: [{
40139
40127
  data: Variable<"CreateProgramPropertyInput!", "data">;
40140
40128
  }, {
@@ -40149,22 +40137,22 @@ declare const mutation$2f: {
40149
40137
  transaction: boolean;
40150
40138
  }];
40151
40139
  };
40152
- interface IInput$3J {
40140
+ interface IInput$3H {
40153
40141
  /**
40154
40142
  * @private
40155
40143
  */
40156
40144
  [key: string]: unknown;
40157
40145
  data: ModelTypes['CreateProgramPropertyInput'];
40158
40146
  }
40159
- type IOutput$3J = InputType<GraphQLTypes['Mutation'], typeof mutation$2f>;
40147
+ type IOutput$3H = InputType<GraphQLTypes['Mutation'], typeof mutation$2d>;
40160
40148
 
40161
40149
  declare namespace createProgramProperty {
40162
- export { mutation$2f as mutation, name$3I as name };
40163
- export type { IInput$3J as IInput, IOutput$3J as IOutput };
40150
+ export { mutation$2d as mutation, name$3G as name };
40151
+ export type { IInput$3H as IInput, IOutput$3H as IOutput };
40164
40152
  }
40165
40153
 
40166
- declare const name$3H = "capitalCreateProject";
40167
- declare const mutation$2e: {
40154
+ declare const name$3F = "capitalCreateProject";
40155
+ declare const mutation$2c: {
40168
40156
  capitalCreateProject: [{
40169
40157
  data: Variable<"CreateProjectInput!", "data">;
40170
40158
  }, {
@@ -40179,22 +40167,22 @@ declare const mutation$2e: {
40179
40167
  transaction: boolean;
40180
40168
  }];
40181
40169
  };
40182
- interface IInput$3I {
40170
+ interface IInput$3G {
40183
40171
  /**
40184
40172
  * @private
40185
40173
  */
40186
40174
  [key: string]: unknown;
40187
40175
  data: ModelTypes['CreateProjectInput'];
40188
40176
  }
40189
- type IOutput$3I = InputType<GraphQLTypes['Mutation'], typeof mutation$2e>;
40177
+ type IOutput$3G = InputType<GraphQLTypes['Mutation'], typeof mutation$2c>;
40190
40178
 
40191
40179
  declare namespace createProject {
40192
- export { mutation$2e as mutation, name$3H as name };
40193
- export type { IInput$3I as IInput, IOutput$3I as IOutput };
40180
+ export { mutation$2c as mutation, name$3F as name };
40181
+ export type { IInput$3G as IInput, IOutput$3G as IOutput };
40194
40182
  }
40195
40183
 
40196
- declare const name$3G = "capitalCreateProjectInvest";
40197
- declare const mutation$2d: {
40184
+ declare const name$3E = "capitalCreateProjectInvest";
40185
+ declare const mutation$2b: {
40198
40186
  capitalCreateProjectInvest: [{
40199
40187
  data: Variable<"CreateProjectInvestInput!", "data">;
40200
40188
  }, {
@@ -40209,22 +40197,22 @@ declare const mutation$2d: {
40209
40197
  transaction: boolean;
40210
40198
  }];
40211
40199
  };
40212
- interface IInput$3H {
40200
+ interface IInput$3F {
40213
40201
  /**
40214
40202
  * @private
40215
40203
  */
40216
40204
  [key: string]: unknown;
40217
40205
  data: ModelTypes['CreateProjectInvestInput'];
40218
40206
  }
40219
- type IOutput$3H = InputType<GraphQLTypes['Mutation'], typeof mutation$2d>;
40207
+ type IOutput$3F = InputType<GraphQLTypes['Mutation'], typeof mutation$2b>;
40220
40208
 
40221
40209
  declare namespace createProjectInvest {
40222
- export { mutation$2d as mutation, name$3G as name };
40223
- export type { IInput$3H as IInput, IOutput$3H as IOutput };
40210
+ export { mutation$2b as mutation, name$3E as name };
40211
+ export type { IInput$3F as IInput, IOutput$3F as IOutput };
40224
40212
  }
40225
40213
 
40226
- declare const name$3F = "capitalCreateProjectProperty";
40227
- declare const mutation$2c: {
40214
+ declare const name$3D = "capitalCreateProjectProperty";
40215
+ declare const mutation$2a: {
40228
40216
  capitalCreateProjectProperty: [{
40229
40217
  data: Variable<"CreateProjectPropertyInput!", "data">;
40230
40218
  }, {
@@ -40239,22 +40227,22 @@ declare const mutation$2c: {
40239
40227
  transaction: boolean;
40240
40228
  }];
40241
40229
  };
40242
- interface IInput$3G {
40230
+ interface IInput$3E {
40243
40231
  /**
40244
40232
  * @private
40245
40233
  */
40246
40234
  [key: string]: unknown;
40247
40235
  data: ModelTypes['CreateProjectPropertyInput'];
40248
40236
  }
40249
- type IOutput$3G = InputType<GraphQLTypes['Mutation'], typeof mutation$2c>;
40237
+ type IOutput$3E = InputType<GraphQLTypes['Mutation'], typeof mutation$2a>;
40250
40238
 
40251
40239
  declare namespace createProjectProperty {
40252
- export { mutation$2c as mutation, name$3F as name };
40253
- export type { IInput$3G as IInput, IOutput$3G as IOutput };
40240
+ export { mutation$2a as mutation, name$3D as name };
40241
+ export type { IInput$3E as IInput, IOutput$3E as IOutput };
40254
40242
  }
40255
40243
 
40256
- declare const name$3E = "capitalCreateStory";
40257
- declare const mutation$2b: {
40244
+ declare const name$3C = "capitalCreateStory";
40245
+ declare const mutation$29: {
40258
40246
  capitalCreateStory: [{
40259
40247
  data: Variable<"CreateStoryInput!", "data">;
40260
40248
  }, {
@@ -40275,22 +40263,22 @@ declare const mutation$2b: {
40275
40263
  _updated_at: boolean;
40276
40264
  }];
40277
40265
  };
40278
- interface IInput$3F {
40266
+ interface IInput$3D {
40279
40267
  /**
40280
40268
  * @private
40281
40269
  */
40282
40270
  [key: string]: unknown;
40283
40271
  data: ModelTypes['CreateStoryInput'];
40284
40272
  }
40285
- type IOutput$3F = InputType<GraphQLTypes['Mutation'], typeof mutation$2b>;
40273
+ type IOutput$3D = InputType<GraphQLTypes['Mutation'], typeof mutation$29>;
40286
40274
 
40287
40275
  declare namespace createStory {
40288
- export { mutation$2b as mutation, name$3E as name };
40289
- export type { IInput$3F as IInput, IOutput$3F as IOutput };
40276
+ export { mutation$29 as mutation, name$3C as name };
40277
+ export type { IInput$3D as IInput, IOutput$3D as IOutput };
40290
40278
  }
40291
40279
 
40292
- declare const name$3D = "capitalDeclineCommit";
40293
- declare const mutation$2a: {
40280
+ declare const name$3B = "capitalDeclineCommit";
40281
+ declare const mutation$28: {
40294
40282
  capitalDeclineCommit: [{
40295
40283
  data: Variable<"CommitDeclineInput!", "data">;
40296
40284
  }, {
@@ -40426,6 +40414,8 @@ declare const mutation$2a: {
40426
40414
  can_set_plan: boolean;
40427
40415
  has_clearance: boolean;
40428
40416
  pending_clearance: boolean;
40417
+ has_parent_clearance: boolean;
40418
+ can_view_artifacts: boolean;
40429
40419
  is_guest: boolean;
40430
40420
  can_create_requirement: boolean;
40431
40421
  can_edit_requirement: boolean;
@@ -40445,42 +40435,42 @@ declare const mutation$2a: {
40445
40435
  _updated_at: boolean;
40446
40436
  }];
40447
40437
  };
40448
- interface IInput$3E {
40438
+ interface IInput$3C {
40449
40439
  /**
40450
40440
  * @private
40451
40441
  */
40452
40442
  [key: string]: unknown;
40453
40443
  data: ModelTypes['CommitDeclineInput'];
40454
40444
  }
40455
- type IOutput$3E = InputType<GraphQLTypes['Mutation'], typeof mutation$2a>;
40445
+ type IOutput$3C = InputType<GraphQLTypes['Mutation'], typeof mutation$28>;
40456
40446
 
40457
40447
  declare namespace declineCommit {
40458
- export { mutation$2a as mutation, name$3D as name };
40459
- export type { IInput$3E as IInput, IOutput$3E as IOutput };
40448
+ export { mutation$28 as mutation, name$3B as name };
40449
+ export type { IInput$3C as IInput, IOutput$3C as IOutput };
40460
40450
  }
40461
40451
 
40462
- declare const name$3C = "capitalDeleteIssue";
40463
- declare const mutation$29: {
40452
+ declare const name$3A = "capitalDeleteIssue";
40453
+ declare const mutation$27: {
40464
40454
  capitalDeleteIssue: [{
40465
40455
  data: Variable<"DeleteCapitalIssueByHashInput!", "data">;
40466
40456
  }, true];
40467
40457
  };
40468
- interface IInput$3D {
40458
+ interface IInput$3B {
40469
40459
  /**
40470
40460
  * @private
40471
40461
  */
40472
40462
  [key: string]: unknown;
40473
40463
  data: ModelTypes['DeleteCapitalIssueByHashInput'];
40474
40464
  }
40475
- type IOutput$3D = InputType<GraphQLTypes['Mutation'], typeof mutation$29>;
40465
+ type IOutput$3B = InputType<GraphQLTypes['Mutation'], typeof mutation$27>;
40476
40466
 
40477
40467
  declare namespace deleteIssue {
40478
- export { mutation$29 as mutation, name$3C as name };
40479
- export type { IInput$3D as IInput, IOutput$3D as IOutput };
40468
+ export { mutation$27 as mutation, name$3A as name };
40469
+ export type { IInput$3B as IInput, IOutput$3B as IOutput };
40480
40470
  }
40481
40471
 
40482
- declare const name$3B = "capitalMoveIssueToComponent";
40483
- declare const mutation$28: {
40472
+ declare const name$3z = "capitalMoveIssueToComponent";
40473
+ declare const mutation$26: {
40484
40474
  capitalMoveIssueToComponent: [{
40485
40475
  data: Variable<"MoveCapitalIssueToComponentInput!", "data">;
40486
40476
  }, {
@@ -40538,22 +40528,22 @@ declare const mutation$28: {
40538
40528
  _updated_at: boolean;
40539
40529
  }];
40540
40530
  };
40541
- interface IInput$3C {
40531
+ interface IInput$3A {
40542
40532
  /**
40543
40533
  * @private
40544
40534
  */
40545
40535
  [key: string]: unknown;
40546
40536
  data: ModelTypes['MoveCapitalIssueToComponentInput'];
40547
40537
  }
40548
- type IOutput$3C = InputType<GraphQLTypes['Mutation'], typeof mutation$28>;
40538
+ type IOutput$3A = InputType<GraphQLTypes['Mutation'], typeof mutation$26>;
40549
40539
 
40550
40540
  declare namespace moveIssueToComponent {
40551
- export { mutation$28 as mutation, name$3B as name };
40552
- export type { IInput$3C as IInput, IOutput$3C as IOutput };
40541
+ export { mutation$26 as mutation, name$3z as name };
40542
+ export type { IInput$3A as IInput, IOutput$3A as IOutput };
40553
40543
  }
40554
40544
 
40555
- declare const name$3A = "capitalDeleteProject";
40556
- declare const mutation$27: {
40545
+ declare const name$3y = "capitalDeleteProject";
40546
+ declare const mutation$25: {
40557
40547
  capitalDeleteProject: [{
40558
40548
  data: Variable<"DeleteProjectInput!", "data">;
40559
40549
  }, {
@@ -40568,42 +40558,42 @@ declare const mutation$27: {
40568
40558
  transaction: boolean;
40569
40559
  }];
40570
40560
  };
40571
- interface IInput$3B {
40561
+ interface IInput$3z {
40572
40562
  /**
40573
40563
  * @private
40574
40564
  */
40575
40565
  [key: string]: unknown;
40576
40566
  data: ModelTypes['DeleteProjectInput'];
40577
40567
  }
40578
- type IOutput$3B = InputType<GraphQLTypes['Mutation'], typeof mutation$27>;
40568
+ type IOutput$3z = InputType<GraphQLTypes['Mutation'], typeof mutation$25>;
40579
40569
 
40580
40570
  declare namespace deleteProject {
40581
- export { mutation$27 as mutation, name$3A as name };
40582
- export type { IInput$3B as IInput, IOutput$3B as IOutput };
40571
+ export { mutation$25 as mutation, name$3y as name };
40572
+ export type { IInput$3z as IInput, IOutput$3z as IOutput };
40583
40573
  }
40584
40574
 
40585
- declare const name$3z = "capitalDeleteStory";
40586
- declare const mutation$26: {
40575
+ declare const name$3x = "capitalDeleteStory";
40576
+ declare const mutation$24: {
40587
40577
  capitalDeleteStory: [{
40588
40578
  data: Variable<"DeleteCapitalStoryByHashInput!", "data">;
40589
40579
  }, true];
40590
40580
  };
40591
- interface IInput$3A {
40581
+ interface IInput$3y {
40592
40582
  /**
40593
40583
  * @private
40594
40584
  */
40595
40585
  [key: string]: unknown;
40596
40586
  data: ModelTypes['DeleteCapitalStoryByHashInput'];
40597
40587
  }
40598
- type IOutput$3A = InputType<GraphQLTypes['Mutation'], typeof mutation$26>;
40588
+ type IOutput$3y = InputType<GraphQLTypes['Mutation'], typeof mutation$24>;
40599
40589
 
40600
40590
  declare namespace deleteStory {
40601
- export { mutation$26 as mutation, name$3z as name };
40602
- export type { IInput$3A as IInput, IOutput$3A as IOutput };
40591
+ export { mutation$24 as mutation, name$3x as name };
40592
+ export type { IInput$3y as IInput, IOutput$3y as IOutput };
40603
40593
  }
40604
40594
 
40605
- declare const name$3y = "capitalEditContributor";
40606
- declare const mutation$25: {
40595
+ declare const name$3w = "capitalEditContributor";
40596
+ declare const mutation$23: {
40607
40597
  capitalEditContributor: [{
40608
40598
  data: Variable<"EditContributorInput!", "data">;
40609
40599
  }, {
@@ -40748,22 +40738,22 @@ declare const mutation$25: {
40748
40738
  _updated_at: boolean;
40749
40739
  }];
40750
40740
  };
40751
- interface IInput$3z {
40741
+ interface IInput$3x {
40752
40742
  /**
40753
40743
  * @private
40754
40744
  */
40755
40745
  [key: string]: unknown;
40756
40746
  data: ModelTypes['EditContributorInput'];
40757
40747
  }
40758
- type IOutput$3z = InputType<GraphQLTypes['Mutation'], typeof mutation$25>;
40748
+ type IOutput$3x = InputType<GraphQLTypes['Mutation'], typeof mutation$23>;
40759
40749
 
40760
40750
  declare namespace editContributor {
40761
- export { mutation$25 as mutation, name$3y as name };
40762
- export type { IInput$3z as IInput, IOutput$3z as IOutput };
40751
+ export { mutation$23 as mutation, name$3w as name };
40752
+ export type { IInput$3x as IInput, IOutput$3x as IOutput };
40763
40753
  }
40764
40754
 
40765
- declare const name$3x = "capitalEditProject";
40766
- declare const mutation$24: {
40755
+ declare const name$3v = "capitalEditProject";
40756
+ declare const mutation$22: {
40767
40757
  capitalEditProject: [{
40768
40758
  data: Variable<"EditProjectInput!", "data">;
40769
40759
  }, {
@@ -40778,22 +40768,22 @@ declare const mutation$24: {
40778
40768
  transaction: boolean;
40779
40769
  }];
40780
40770
  };
40781
- interface IInput$3y {
40771
+ interface IInput$3w {
40782
40772
  /**
40783
40773
  * @private
40784
40774
  */
40785
40775
  [key: string]: unknown;
40786
40776
  data: ModelTypes['EditProjectInput'];
40787
40777
  }
40788
- type IOutput$3y = InputType<GraphQLTypes['Mutation'], typeof mutation$24>;
40778
+ type IOutput$3w = InputType<GraphQLTypes['Mutation'], typeof mutation$22>;
40789
40779
 
40790
40780
  declare namespace editProject {
40791
- export { mutation$24 as mutation, name$3x as name };
40792
- export type { IInput$3y as IInput, IOutput$3y as IOutput };
40781
+ export { mutation$22 as mutation, name$3v as name };
40782
+ export type { IInput$3w as IInput, IOutput$3w as IOutput };
40793
40783
  }
40794
40784
 
40795
- declare const name$3w = "capitalFinalizeProject";
40796
- declare const mutation$23: {
40785
+ declare const name$3u = "capitalFinalizeProject";
40786
+ declare const mutation$21: {
40797
40787
  capitalFinalizeProject: [{
40798
40788
  data: Variable<"FinalizeProjectInput!", "data">;
40799
40789
  }, {
@@ -40906,6 +40896,8 @@ declare const mutation$23: {
40906
40896
  can_set_plan: boolean;
40907
40897
  has_clearance: boolean;
40908
40898
  pending_clearance: boolean;
40899
+ has_parent_clearance: boolean;
40900
+ can_view_artifacts: boolean;
40909
40901
  is_guest: boolean;
40910
40902
  can_create_requirement: boolean;
40911
40903
  can_edit_requirement: boolean;
@@ -41026,6 +41018,8 @@ declare const mutation$23: {
41026
41018
  can_set_plan: boolean;
41027
41019
  has_clearance: boolean;
41028
41020
  pending_clearance: boolean;
41021
+ has_parent_clearance: boolean;
41022
+ can_view_artifacts: boolean;
41029
41023
  is_guest: boolean;
41030
41024
  can_create_requirement: boolean;
41031
41025
  can_edit_requirement: boolean;
@@ -41039,22 +41033,22 @@ declare const mutation$23: {
41039
41033
  _updated_at: boolean;
41040
41034
  }];
41041
41035
  };
41042
- interface IInput$3x {
41036
+ interface IInput$3v {
41043
41037
  /**
41044
41038
  * @private
41045
41039
  */
41046
41040
  [key: string]: unknown;
41047
41041
  data: ModelTypes['FinalizeProjectInput'];
41048
41042
  }
41049
- type IOutput$3x = InputType<GraphQLTypes['Mutation'], typeof mutation$23>;
41043
+ type IOutput$3v = InputType<GraphQLTypes['Mutation'], typeof mutation$21>;
41050
41044
 
41051
41045
  declare namespace finalizeProject {
41052
- export { mutation$23 as mutation, name$3w as name };
41053
- export type { IInput$3x as IInput, IOutput$3x as IOutput };
41046
+ export { mutation$21 as mutation, name$3u as name };
41047
+ export type { IInput$3v as IInput, IOutput$3v as IOutput };
41054
41048
  }
41055
41049
 
41056
- declare const name$3v = "capitalFundProgram";
41057
- declare const mutation$22: {
41050
+ declare const name$3t = "capitalFundProgram";
41051
+ declare const mutation$20: {
41058
41052
  capitalFundProgram: [{
41059
41053
  data: Variable<"FundProgramInput!", "data">;
41060
41054
  }, {
@@ -41069,22 +41063,22 @@ declare const mutation$22: {
41069
41063
  transaction: boolean;
41070
41064
  }];
41071
41065
  };
41072
- interface IInput$3w {
41066
+ interface IInput$3u {
41073
41067
  /**
41074
41068
  * @private
41075
41069
  */
41076
41070
  [key: string]: unknown;
41077
41071
  data: ModelTypes['FundProgramInput'];
41078
41072
  }
41079
- type IOutput$3w = InputType<GraphQLTypes['Mutation'], typeof mutation$22>;
41073
+ type IOutput$3u = InputType<GraphQLTypes['Mutation'], typeof mutation$20>;
41080
41074
 
41081
41075
  declare namespace fundProgram {
41082
- export { mutation$22 as mutation, name$3v as name };
41083
- export type { IInput$3w as IInput, IOutput$3w as IOutput };
41076
+ export { mutation$20 as mutation, name$3t as name };
41077
+ export type { IInput$3u as IInput, IOutput$3u as IOutput };
41084
41078
  }
41085
41079
 
41086
- declare const name$3u = "capitalGenerateCapitalizationAgreement";
41087
- declare const mutation$21: {
41080
+ declare const name$3s = "capitalGenerateCapitalizationAgreement";
41081
+ declare const mutation$1$: {
41088
41082
  capitalGenerateCapitalizationAgreement: [{
41089
41083
  data: Variable<"GenerateDocumentInput!", "data">;
41090
41084
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -41096,7 +41090,7 @@ declare const mutation$21: {
41096
41090
  meta: boolean;
41097
41091
  }];
41098
41092
  };
41099
- interface IInput$3v {
41093
+ interface IInput$3t {
41100
41094
  /**
41101
41095
  * @private
41102
41096
  */
@@ -41104,15 +41098,15 @@ interface IInput$3v {
41104
41098
  data: ModelTypes['GenerateDocumentInput'];
41105
41099
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41106
41100
  }
41107
- type IOutput$3v = InputType<GraphQLTypes['Mutation'], typeof mutation$21>;
41101
+ type IOutput$3t = InputType<GraphQLTypes['Mutation'], typeof mutation$1$>;
41108
41102
 
41109
41103
  declare namespace generateCapitalizationAgreement {
41110
- export { mutation$21 as mutation, name$3u as name };
41111
- export type { IInput$3v as IInput, IOutput$3v as IOutput };
41104
+ export { mutation$1$ as mutation, name$3s as name };
41105
+ export type { IInput$3t as IInput, IOutput$3t as IOutput };
41112
41106
  }
41113
41107
 
41114
- declare const name$3t = "capitalGenerateCapitalizationMoneyInvestStatement";
41115
- declare const mutation$20: {
41108
+ declare const name$3r = "capitalGenerateCapitalizationMoneyInvestStatement";
41109
+ declare const mutation$1_: {
41116
41110
  capitalGenerateCapitalizationMoneyInvestStatement: [{
41117
41111
  data: Variable<"GenerateDocumentInput!", "data">;
41118
41112
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -41124,7 +41118,7 @@ declare const mutation$20: {
41124
41118
  meta: boolean;
41125
41119
  }];
41126
41120
  };
41127
- interface IInput$3u {
41121
+ interface IInput$3s {
41128
41122
  /**
41129
41123
  * @private
41130
41124
  */
@@ -41132,15 +41126,15 @@ interface IInput$3u {
41132
41126
  data: ModelTypes['GenerateDocumentInput'];
41133
41127
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41134
41128
  }
41135
- type IOutput$3u = InputType<GraphQLTypes['Mutation'], typeof mutation$20>;
41129
+ type IOutput$3s = InputType<GraphQLTypes['Mutation'], typeof mutation$1_>;
41136
41130
 
41137
41131
  declare namespace generateCapitalizationMoneyInvestStatement {
41138
- export { mutation$20 as mutation, name$3t as name };
41139
- export type { IInput$3u as IInput, IOutput$3u as IOutput };
41132
+ export { mutation$1_ as mutation, name$3r as name };
41133
+ export type { IInput$3s as IInput, IOutput$3s as IOutput };
41140
41134
  }
41141
41135
 
41142
- declare const name$3s = "capitalGenerateCapitalizationPropertyInvestAct";
41143
- declare const mutation$1$: {
41136
+ declare const name$3q = "capitalGenerateCapitalizationPropertyInvestAct";
41137
+ declare const mutation$1Z: {
41144
41138
  capitalGenerateCapitalizationPropertyInvestAct: [{
41145
41139
  data: Variable<"GenerateDocumentInput!", "data">;
41146
41140
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -41152,7 +41146,7 @@ declare const mutation$1$: {
41152
41146
  meta: boolean;
41153
41147
  }];
41154
41148
  };
41155
- interface IInput$3t {
41149
+ interface IInput$3r {
41156
41150
  /**
41157
41151
  * @private
41158
41152
  */
@@ -41160,15 +41154,15 @@ interface IInput$3t {
41160
41154
  data: ModelTypes['GenerateDocumentInput'];
41161
41155
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41162
41156
  }
41163
- type IOutput$3t = InputType<GraphQLTypes['Mutation'], typeof mutation$1$>;
41157
+ type IOutput$3r = InputType<GraphQLTypes['Mutation'], typeof mutation$1Z>;
41164
41158
 
41165
41159
  declare namespace generateCapitalizationPropertyInvestAct {
41166
- export { mutation$1$ as mutation, name$3s as name };
41167
- export type { IInput$3t as IInput, IOutput$3t as IOutput };
41160
+ export { mutation$1Z as mutation, name$3q as name };
41161
+ export type { IInput$3r as IInput, IOutput$3r as IOutput };
41168
41162
  }
41169
41163
 
41170
- declare const name$3r = "capitalGenerateCapitalizationPropertyInvestDecision";
41171
- declare const mutation$1_: {
41164
+ declare const name$3p = "capitalGenerateCapitalizationPropertyInvestDecision";
41165
+ declare const mutation$1Y: {
41172
41166
  capitalGenerateCapitalizationPropertyInvestDecision: [{
41173
41167
  data: Variable<"GenerateDocumentInput!", "data">;
41174
41168
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -41180,7 +41174,7 @@ declare const mutation$1_: {
41180
41174
  meta: boolean;
41181
41175
  }];
41182
41176
  };
41183
- interface IInput$3s {
41177
+ interface IInput$3q {
41184
41178
  /**
41185
41179
  * @private
41186
41180
  */
@@ -41188,15 +41182,15 @@ interface IInput$3s {
41188
41182
  data: ModelTypes['GenerateDocumentInput'];
41189
41183
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41190
41184
  }
41191
- type IOutput$3s = InputType<GraphQLTypes['Mutation'], typeof mutation$1_>;
41185
+ type IOutput$3q = InputType<GraphQLTypes['Mutation'], typeof mutation$1Y>;
41192
41186
 
41193
41187
  declare namespace generateCapitalizationPropertyInvestDecision {
41194
- export { mutation$1_ as mutation, name$3r as name };
41195
- export type { IInput$3s as IInput, IOutput$3s as IOutput };
41188
+ export { mutation$1Y as mutation, name$3p as name };
41189
+ export type { IInput$3q as IInput, IOutput$3q as IOutput };
41196
41190
  }
41197
41191
 
41198
- declare const name$3q = "capitalGenerateCapitalizationPropertyInvestStatement";
41199
- declare const mutation$1Z: {
41192
+ declare const name$3o = "capitalGenerateCapitalizationPropertyInvestStatement";
41193
+ declare const mutation$1X: {
41200
41194
  capitalGenerateCapitalizationPropertyInvestStatement: [{
41201
41195
  data: Variable<"GenerateDocumentInput!", "data">;
41202
41196
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -41208,7 +41202,7 @@ declare const mutation$1Z: {
41208
41202
  meta: boolean;
41209
41203
  }];
41210
41204
  };
41211
- interface IInput$3r {
41205
+ interface IInput$3p {
41212
41206
  /**
41213
41207
  * @private
41214
41208
  */
@@ -41216,15 +41210,15 @@ interface IInput$3r {
41216
41210
  data: ModelTypes['GenerateDocumentInput'];
41217
41211
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41218
41212
  }
41219
- type IOutput$3r = InputType<GraphQLTypes['Mutation'], typeof mutation$1Z>;
41213
+ type IOutput$3p = InputType<GraphQLTypes['Mutation'], typeof mutation$1X>;
41220
41214
 
41221
41215
  declare namespace generateCapitalizationPropertyInvestStatement {
41222
- export { mutation$1Z as mutation, name$3q as name };
41223
- export type { IInput$3r as IInput, IOutput$3r as IOutput };
41216
+ export { mutation$1X as mutation, name$3o as name };
41217
+ export type { IInput$3p as IInput, IOutput$3p as IOutput };
41224
41218
  }
41225
41219
 
41226
- declare const name$3p = "capitalGenerateCapitalizationToMainWalletConvertStatement";
41227
- declare const mutation$1Y: {
41220
+ declare const name$3n = "capitalGenerateCapitalizationToMainWalletConvertStatement";
41221
+ declare const mutation$1W: {
41228
41222
  capitalGenerateCapitalizationToMainWalletConvertStatement: [{
41229
41223
  data: Variable<"GenerateDocumentInput!", "data">;
41230
41224
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -41236,7 +41230,7 @@ declare const mutation$1Y: {
41236
41230
  meta: boolean;
41237
41231
  }];
41238
41232
  };
41239
- interface IInput$3q {
41233
+ interface IInput$3o {
41240
41234
  /**
41241
41235
  * @private
41242
41236
  */
@@ -41244,15 +41238,15 @@ interface IInput$3q {
41244
41238
  data: ModelTypes['GenerateDocumentInput'];
41245
41239
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41246
41240
  }
41247
- type IOutput$3q = InputType<GraphQLTypes['Mutation'], typeof mutation$1Y>;
41241
+ type IOutput$3o = InputType<GraphQLTypes['Mutation'], typeof mutation$1W>;
41248
41242
 
41249
41243
  declare namespace generateCapitalizationToMainWalletConvertStatement {
41250
- export { mutation$1Y as mutation, name$3p as name };
41251
- export type { IInput$3q as IInput, IOutput$3q as IOutput };
41244
+ export { mutation$1W as mutation, name$3n as name };
41245
+ export type { IInput$3o as IInput, IOutput$3o as IOutput };
41252
41246
  }
41253
41247
 
41254
- declare const name$3o = "capitalGenerateRegistrationDocuments";
41255
- declare const mutation$1X: {
41248
+ declare const name$3m = "capitalGenerateRegistrationDocuments";
41249
+ declare const mutation$1V: {
41256
41250
  capitalGenerateRegistrationDocuments: [{
41257
41251
  data: Variable<"GenerateCapitalRegistrationDocumentsInputDTO!", "data">;
41258
41252
  }, {
@@ -41286,80 +41280,24 @@ declare const mutation$1X: {
41286
41280
  };
41287
41281
  }];
41288
41282
  };
41289
- interface IInput$3p {
41290
- /**
41291
- * @private
41292
- */
41293
- [key: string]: unknown;
41294
- data: ModelTypes['GenerateCapitalRegistrationDocumentsInputDTO'];
41295
- }
41296
- type IOutput$3p = InputType<GraphQLTypes['Mutation'], typeof mutation$1X>;
41297
-
41298
- declare namespace generateCapitalRegistrationDocuments {
41299
- export { mutation$1X as mutation, name$3o as name };
41300
- export type { IInput$3p as IInput, IOutput$3p as IOutput };
41301
- }
41302
-
41303
- declare const name$3n = "capitalGenerateComponentGenerationContract";
41304
- declare const mutation$1W: {
41305
- capitalGenerateComponentGenerationContract: [{
41306
- data: Variable<"ComponentGenerationContractGenerateDocumentInput!", "data">;
41307
- options: Variable<"GenerateDocumentOptionsInput", "options">;
41308
- }, {
41309
- binary: boolean;
41310
- full_title: boolean;
41311
- hash: boolean;
41312
- html: boolean;
41313
- meta: boolean;
41314
- }];
41315
- };
41316
- interface IInput$3o {
41317
- /**
41318
- * @private
41319
- */
41320
- [key: string]: unknown;
41321
- data: ModelTypes['ComponentGenerationContractGenerateDocumentInput'];
41322
- options?: ModelTypes['GenerateDocumentOptionsInput'];
41323
- }
41324
- type IOutput$3o = InputType<GraphQLTypes['Mutation'], typeof mutation$1W>;
41325
-
41326
- declare namespace generateComponentGenerationContract {
41327
- export { mutation$1W as mutation, name$3n as name };
41328
- export type { IInput$3o as IInput, IOutput$3o as IOutput };
41329
- }
41330
-
41331
- declare const name$3m = "capitalGenerateExpenseDecision";
41332
- declare const mutation$1V: {
41333
- capitalGenerateExpenseDecision: [{
41334
- data: Variable<"GenerateDocumentInput!", "data">;
41335
- options: Variable<"GenerateDocumentOptionsInput", "options">;
41336
- }, {
41337
- binary: boolean;
41338
- full_title: boolean;
41339
- hash: boolean;
41340
- html: boolean;
41341
- meta: boolean;
41342
- }];
41343
- };
41344
41283
  interface IInput$3n {
41345
41284
  /**
41346
41285
  * @private
41347
41286
  */
41348
41287
  [key: string]: unknown;
41349
- data: ModelTypes['GenerateDocumentInput'];
41350
- options?: ModelTypes['GenerateDocumentOptionsInput'];
41288
+ data: ModelTypes['GenerateCapitalRegistrationDocumentsInputDTO'];
41351
41289
  }
41352
41290
  type IOutput$3n = InputType<GraphQLTypes['Mutation'], typeof mutation$1V>;
41353
41291
 
41354
- declare namespace generateExpenseDecision {
41292
+ declare namespace generateCapitalRegistrationDocuments {
41355
41293
  export { mutation$1V as mutation, name$3m as name };
41356
41294
  export type { IInput$3n as IInput, IOutput$3n as IOutput };
41357
41295
  }
41358
41296
 
41359
- declare const name$3l = "capitalGenerateExpenseStatement";
41297
+ declare const name$3l = "capitalGenerateComponentGenerationContract";
41360
41298
  declare const mutation$1U: {
41361
- capitalGenerateExpenseStatement: [{
41362
- data: Variable<"GenerateDocumentInput!", "data">;
41299
+ capitalGenerateComponentGenerationContract: [{
41300
+ data: Variable<"ComponentGenerationContractGenerateDocumentInput!", "data">;
41363
41301
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41364
41302
  }, {
41365
41303
  binary: boolean;
@@ -41374,20 +41312,20 @@ interface IInput$3m {
41374
41312
  * @private
41375
41313
  */
41376
41314
  [key: string]: unknown;
41377
- data: ModelTypes['GenerateDocumentInput'];
41315
+ data: ModelTypes['ComponentGenerationContractGenerateDocumentInput'];
41378
41316
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41379
41317
  }
41380
41318
  type IOutput$3m = InputType<GraphQLTypes['Mutation'], typeof mutation$1U>;
41381
41319
 
41382
- declare namespace generateExpenseStatement {
41320
+ declare namespace generateComponentGenerationContract {
41383
41321
  export { mutation$1U as mutation, name$3l as name };
41384
41322
  export type { IInput$3m as IInput, IOutput$3m as IOutput };
41385
41323
  }
41386
41324
 
41387
- declare const name$3k = "capitalGenerateGenerationContract";
41325
+ declare const name$3k = "capitalGenerateExpenseDecision";
41388
41326
  declare const mutation$1T: {
41389
- capitalGenerateGenerationContract: [{
41390
- data: Variable<"GenerationContractGenerateDocumentInput!", "data">;
41327
+ capitalGenerateExpenseDecision: [{
41328
+ data: Variable<"GenerateDocumentInput!", "data">;
41391
41329
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41392
41330
  }, {
41393
41331
  binary: boolean;
@@ -41402,20 +41340,20 @@ interface IInput$3l {
41402
41340
  * @private
41403
41341
  */
41404
41342
  [key: string]: unknown;
41405
- data: ModelTypes['GenerationContractGenerateDocumentInput'];
41343
+ data: ModelTypes['GenerateDocumentInput'];
41406
41344
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41407
41345
  }
41408
41346
  type IOutput$3l = InputType<GraphQLTypes['Mutation'], typeof mutation$1T>;
41409
41347
 
41410
- declare namespace generateGenerationContract {
41348
+ declare namespace generateExpenseDecision {
41411
41349
  export { mutation$1T as mutation, name$3k as name };
41412
41350
  export type { IInput$3l as IInput, IOutput$3l as IOutput };
41413
41351
  }
41414
41352
 
41415
- declare const name$3j = "capitalGenerateGenerationMoneyInvestStatement";
41353
+ declare const name$3j = "capitalGenerateExpenseStatement";
41416
41354
  declare const mutation$1S: {
41417
- capitalGenerateGenerationMoneyInvestStatement: [{
41418
- data: Variable<"GenerationMoneyInvestStatementGenerateDocumentInput!", "data">;
41355
+ capitalGenerateExpenseStatement: [{
41356
+ data: Variable<"GenerateDocumentInput!", "data">;
41419
41357
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41420
41358
  }, {
41421
41359
  binary: boolean;
@@ -41430,20 +41368,20 @@ interface IInput$3k {
41430
41368
  * @private
41431
41369
  */
41432
41370
  [key: string]: unknown;
41433
- data: ModelTypes['GenerationMoneyInvestStatementGenerateDocumentInput'];
41371
+ data: ModelTypes['GenerateDocumentInput'];
41434
41372
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41435
41373
  }
41436
41374
  type IOutput$3k = InputType<GraphQLTypes['Mutation'], typeof mutation$1S>;
41437
41375
 
41438
- declare namespace generateGenerationMoneyInvestStatement {
41376
+ declare namespace generateExpenseStatement {
41439
41377
  export { mutation$1S as mutation, name$3j as name };
41440
41378
  export type { IInput$3k as IInput, IOutput$3k as IOutput };
41441
41379
  }
41442
41380
 
41443
- declare const name$3i = "capitalGenerateGenerationPropertyInvestAct";
41381
+ declare const name$3i = "capitalGenerateGenerationContract";
41444
41382
  declare const mutation$1R: {
41445
- capitalGenerateGenerationPropertyInvestAct: [{
41446
- data: Variable<"GenerateDocumentInput!", "data">;
41383
+ capitalGenerateGenerationContract: [{
41384
+ data: Variable<"GenerationContractGenerateDocumentInput!", "data">;
41447
41385
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41448
41386
  }, {
41449
41387
  binary: boolean;
@@ -41458,20 +41396,20 @@ interface IInput$3j {
41458
41396
  * @private
41459
41397
  */
41460
41398
  [key: string]: unknown;
41461
- data: ModelTypes['GenerateDocumentInput'];
41399
+ data: ModelTypes['GenerationContractGenerateDocumentInput'];
41462
41400
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41463
41401
  }
41464
41402
  type IOutput$3j = InputType<GraphQLTypes['Mutation'], typeof mutation$1R>;
41465
41403
 
41466
- declare namespace generateGenerationPropertyInvestAct {
41404
+ declare namespace generateGenerationContract {
41467
41405
  export { mutation$1R as mutation, name$3i as name };
41468
41406
  export type { IInput$3j as IInput, IOutput$3j as IOutput };
41469
41407
  }
41470
41408
 
41471
- declare const name$3h = "capitalGenerateGenerationPropertyInvestDecision";
41409
+ declare const name$3h = "capitalGenerateGenerationMoneyInvestStatement";
41472
41410
  declare const mutation$1Q: {
41473
- capitalGenerateGenerationPropertyInvestDecision: [{
41474
- data: Variable<"GenerateDocumentInput!", "data">;
41411
+ capitalGenerateGenerationMoneyInvestStatement: [{
41412
+ data: Variable<"GenerationMoneyInvestStatementGenerateDocumentInput!", "data">;
41475
41413
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41476
41414
  }, {
41477
41415
  binary: boolean;
@@ -41486,19 +41424,19 @@ interface IInput$3i {
41486
41424
  * @private
41487
41425
  */
41488
41426
  [key: string]: unknown;
41489
- data: ModelTypes['GenerateDocumentInput'];
41427
+ data: ModelTypes['GenerationMoneyInvestStatementGenerateDocumentInput'];
41490
41428
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41491
41429
  }
41492
41430
  type IOutput$3i = InputType<GraphQLTypes['Mutation'], typeof mutation$1Q>;
41493
41431
 
41494
- declare namespace generateGenerationPropertyInvestDecision {
41432
+ declare namespace generateGenerationMoneyInvestStatement {
41495
41433
  export { mutation$1Q as mutation, name$3h as name };
41496
41434
  export type { IInput$3i as IInput, IOutput$3i as IOutput };
41497
41435
  }
41498
41436
 
41499
- declare const name$3g = "capitalGenerateGenerationPropertyInvestStatement";
41437
+ declare const name$3g = "capitalGenerateGenerationPropertyInvestAct";
41500
41438
  declare const mutation$1P: {
41501
- capitalGenerateGenerationPropertyInvestStatement: [{
41439
+ capitalGenerateGenerationPropertyInvestAct: [{
41502
41440
  data: Variable<"GenerateDocumentInput!", "data">;
41503
41441
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41504
41442
  }, {
@@ -41519,14 +41457,14 @@ interface IInput$3h {
41519
41457
  }
41520
41458
  type IOutput$3h = InputType<GraphQLTypes['Mutation'], typeof mutation$1P>;
41521
41459
 
41522
- declare namespace generateGenerationPropertyInvestStatement {
41460
+ declare namespace generateGenerationPropertyInvestAct {
41523
41461
  export { mutation$1P as mutation, name$3g as name };
41524
41462
  export type { IInput$3h as IInput, IOutput$3h as IOutput };
41525
41463
  }
41526
41464
 
41527
- declare const name$3f = "capitalGenerateGenerationToCapitalizationConvertStatement";
41465
+ declare const name$3f = "capitalGenerateGenerationPropertyInvestDecision";
41528
41466
  declare const mutation$1O: {
41529
- capitalGenerateGenerationToCapitalizationConvertStatement: [{
41467
+ capitalGenerateGenerationPropertyInvestDecision: [{
41530
41468
  data: Variable<"GenerateDocumentInput!", "data">;
41531
41469
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41532
41470
  }, {
@@ -41547,15 +41485,15 @@ interface IInput$3g {
41547
41485
  }
41548
41486
  type IOutput$3g = InputType<GraphQLTypes['Mutation'], typeof mutation$1O>;
41549
41487
 
41550
- declare namespace generateGenerationToCapitalizationConvertStatement {
41488
+ declare namespace generateGenerationPropertyInvestDecision {
41551
41489
  export { mutation$1O as mutation, name$3f as name };
41552
41490
  export type { IInput$3g as IInput, IOutput$3g as IOutput };
41553
41491
  }
41554
41492
 
41555
- declare const name$3e = "capitalGenerateGenerationToMainWalletConvertStatement";
41493
+ declare const name$3e = "capitalGenerateGenerationPropertyInvestStatement";
41556
41494
  declare const mutation$1N: {
41557
- capitalGenerateGenerationToMainWalletConvertStatement: [{
41558
- data: Variable<"GenerationToMainWalletConvertStatementGenerateDocumentInput!", "data">;
41495
+ capitalGenerateGenerationPropertyInvestStatement: [{
41496
+ data: Variable<"GenerateDocumentInput!", "data">;
41559
41497
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41560
41498
  }, {
41561
41499
  binary: boolean;
@@ -41570,20 +41508,20 @@ interface IInput$3f {
41570
41508
  * @private
41571
41509
  */
41572
41510
  [key: string]: unknown;
41573
- data: ModelTypes['GenerationToMainWalletConvertStatementGenerateDocumentInput'];
41511
+ data: ModelTypes['GenerateDocumentInput'];
41574
41512
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41575
41513
  }
41576
41514
  type IOutput$3f = InputType<GraphQLTypes['Mutation'], typeof mutation$1N>;
41577
41515
 
41578
- declare namespace generateGenerationToMainWalletConvertStatement {
41516
+ declare namespace generateGenerationPropertyInvestStatement {
41579
41517
  export { mutation$1N as mutation, name$3e as name };
41580
41518
  export type { IInput$3f as IInput, IOutput$3f as IOutput };
41581
41519
  }
41582
41520
 
41583
- declare const name$3d = "capitalGenerateGenerationToProjectConvertStatement";
41521
+ declare const name$3d = "capitalGenerateGenerationConvertStatement";
41584
41522
  declare const mutation$1M: {
41585
- capitalGenerateGenerationToProjectConvertStatement: [{
41586
- data: Variable<"GenerateDocumentInput!", "data">;
41523
+ capitalGenerateGenerationConvertStatement: [{
41524
+ data: Variable<"GenerationConvertStatementGenerateDocumentInput!", "data">;
41587
41525
  options: Variable<"GenerateDocumentOptionsInput", "options">;
41588
41526
  }, {
41589
41527
  binary: boolean;
@@ -41598,12 +41536,12 @@ interface IInput$3e {
41598
41536
  * @private
41599
41537
  */
41600
41538
  [key: string]: unknown;
41601
- data: ModelTypes['GenerateDocumentInput'];
41539
+ data: ModelTypes['GenerationConvertStatementGenerateDocumentInput'];
41602
41540
  options?: ModelTypes['GenerateDocumentOptionsInput'];
41603
41541
  }
41604
41542
  type IOutput$3e = InputType<GraphQLTypes['Mutation'], typeof mutation$1M>;
41605
41543
 
41606
- declare namespace generateGenerationToProjectConvertStatement {
41544
+ declare namespace generateGenerationConvertStatement {
41607
41545
  export { mutation$1M as mutation, name$3d as name };
41608
41546
  export type { IInput$3e as IInput, IOutput$3e as IOutput };
41609
41547
  }
@@ -41978,6 +41916,8 @@ declare const mutation$1C: {
41978
41916
  can_set_plan: boolean;
41979
41917
  has_clearance: boolean;
41980
41918
  pending_clearance: boolean;
41919
+ has_parent_clearance: boolean;
41920
+ can_view_artifacts: boolean;
41981
41921
  is_guest: boolean;
41982
41922
  can_create_requirement: boolean;
41983
41923
  can_edit_requirement: boolean;
@@ -42098,6 +42038,8 @@ declare const mutation$1C: {
42098
42038
  can_set_plan: boolean;
42099
42039
  has_clearance: boolean;
42100
42040
  pending_clearance: boolean;
42041
+ has_parent_clearance: boolean;
42042
+ can_view_artifacts: boolean;
42101
42043
  is_guest: boolean;
42102
42044
  can_create_requirement: boolean;
42103
42045
  can_edit_requirement: boolean;
@@ -42503,6 +42445,8 @@ declare const mutation$1v: {
42503
42445
  can_set_plan: boolean;
42504
42446
  has_clearance: boolean;
42505
42447
  pending_clearance: boolean;
42448
+ has_parent_clearance: boolean;
42449
+ can_view_artifacts: boolean;
42506
42450
  is_guest: boolean;
42507
42451
  can_create_requirement: boolean;
42508
42452
  can_edit_requirement: boolean;
@@ -42623,6 +42567,8 @@ declare const mutation$1v: {
42623
42567
  can_set_plan: boolean;
42624
42568
  has_clearance: boolean;
42625
42569
  pending_clearance: boolean;
42570
+ has_parent_clearance: boolean;
42571
+ can_view_artifacts: boolean;
42626
42572
  is_guest: boolean;
42627
42573
  can_create_requirement: boolean;
42628
42574
  can_edit_requirement: boolean;
@@ -42764,6 +42710,8 @@ declare const mutation$1u: {
42764
42710
  can_set_plan: boolean;
42765
42711
  has_clearance: boolean;
42766
42712
  pending_clearance: boolean;
42713
+ has_parent_clearance: boolean;
42714
+ can_view_artifacts: boolean;
42767
42715
  is_guest: boolean;
42768
42716
  can_create_requirement: boolean;
42769
42717
  can_edit_requirement: boolean;
@@ -42884,6 +42832,8 @@ declare const mutation$1u: {
42884
42832
  can_set_plan: boolean;
42885
42833
  has_clearance: boolean;
42886
42834
  pending_clearance: boolean;
42835
+ has_parent_clearance: boolean;
42836
+ can_view_artifacts: boolean;
42887
42837
  is_guest: boolean;
42888
42838
  can_create_requirement: boolean;
42889
42839
  can_edit_requirement: boolean;
@@ -43169,6 +43119,8 @@ declare const mutation$1r: {
43169
43119
  can_set_plan: boolean;
43170
43120
  has_clearance: boolean;
43171
43121
  pending_clearance: boolean;
43122
+ has_parent_clearance: boolean;
43123
+ can_view_artifacts: boolean;
43172
43124
  is_guest: boolean;
43173
43125
  can_create_requirement: boolean;
43174
43126
  can_edit_requirement: boolean;
@@ -43289,6 +43241,8 @@ declare const mutation$1r: {
43289
43241
  can_set_plan: boolean;
43290
43242
  has_clearance: boolean;
43291
43243
  pending_clearance: boolean;
43244
+ has_parent_clearance: boolean;
43245
+ can_view_artifacts: boolean;
43292
43246
  is_guest: boolean;
43293
43247
  can_create_requirement: boolean;
43294
43248
  can_edit_requirement: boolean;
@@ -43460,6 +43414,8 @@ declare const mutation$1p: {
43460
43414
  can_set_plan: boolean;
43461
43415
  has_clearance: boolean;
43462
43416
  pending_clearance: boolean;
43417
+ has_parent_clearance: boolean;
43418
+ can_view_artifacts: boolean;
43463
43419
  is_guest: boolean;
43464
43420
  can_create_requirement: boolean;
43465
43421
  can_edit_requirement: boolean;
@@ -43580,6 +43536,8 @@ declare const mutation$1p: {
43580
43536
  can_set_plan: boolean;
43581
43537
  has_clearance: boolean;
43582
43538
  pending_clearance: boolean;
43539
+ has_parent_clearance: boolean;
43540
+ can_view_artifacts: boolean;
43583
43541
  is_guest: boolean;
43584
43542
  can_create_requirement: boolean;
43585
43543
  can_edit_requirement: boolean;
@@ -43786,13 +43744,11 @@ declare namespace index$L {
43786
43744
  generateExpenseDecision as GenerateExpenseDecision,
43787
43745
  generateExpenseStatement as GenerateExpenseStatement,
43788
43746
  generateGenerationContract as GenerateGenerationContract,
43747
+ generateGenerationConvertStatement as GenerateGenerationConvertStatement,
43789
43748
  generateGenerationMoneyInvestStatement as GenerateGenerationMoneyInvestStatement,
43790
43749
  generateGenerationPropertyInvestAct as GenerateGenerationPropertyInvestAct,
43791
43750
  generateGenerationPropertyInvestDecision as GenerateGenerationPropertyInvestDecision,
43792
43751
  generateGenerationPropertyInvestStatement as GenerateGenerationPropertyInvestStatement,
43793
- generateGenerationToCapitalizationConvertStatement as GenerateGenerationToCapitalizationConvertStatement,
43794
- generateGenerationToMainWalletConvertStatement as GenerateGenerationToMainWalletConvertStatement,
43795
- generateGenerationToProjectConvertStatement as GenerateGenerationToProjectConvertStatement,
43796
43752
  generateGetLoanDecision as GenerateGetLoanDecision,
43797
43753
  generateGetLoanStatement as GenerateGetLoanStatement,
43798
43754
  generateProgramMoneyInvestStatement as GenerateProgramMoneyInvestStatement,
@@ -54426,6 +54382,8 @@ declare const query$1f: {
54426
54382
  can_set_plan: boolean;
54427
54383
  has_clearance: boolean;
54428
54384
  pending_clearance: boolean;
54385
+ has_parent_clearance: boolean;
54386
+ can_view_artifacts: boolean;
54429
54387
  is_guest: boolean;
54430
54388
  can_create_requirement: boolean;
54431
54389
  can_edit_requirement: boolean;
@@ -54601,6 +54559,8 @@ declare const query$1e: {
54601
54559
  can_set_plan: boolean;
54602
54560
  has_clearance: boolean;
54603
54561
  pending_clearance: boolean;
54562
+ has_parent_clearance: boolean;
54563
+ can_view_artifacts: boolean;
54604
54564
  is_guest: boolean;
54605
54565
  can_create_requirement: boolean;
54606
54566
  can_edit_requirement: boolean;
@@ -56288,6 +56248,8 @@ declare const query$10: {
56288
56248
  can_set_plan: boolean;
56289
56249
  has_clearance: boolean;
56290
56250
  pending_clearance: boolean;
56251
+ has_parent_clearance: boolean;
56252
+ can_view_artifacts: boolean;
56291
56253
  is_guest: boolean;
56292
56254
  can_create_requirement: boolean;
56293
56255
  can_edit_requirement: boolean;
@@ -56408,6 +56370,8 @@ declare const query$10: {
56408
56370
  can_set_plan: boolean;
56409
56371
  has_clearance: boolean;
56410
56372
  pending_clearance: boolean;
56373
+ has_parent_clearance: boolean;
56374
+ can_view_artifacts: boolean;
56411
56375
  is_guest: boolean;
56412
56376
  can_create_requirement: boolean;
56413
56377
  can_edit_requirement: boolean;
@@ -56594,6 +56558,8 @@ declare const query$_: {
56594
56558
  can_set_plan: boolean;
56595
56559
  has_clearance: boolean;
56596
56560
  pending_clearance: boolean;
56561
+ has_parent_clearance: boolean;
56562
+ can_view_artifacts: boolean;
56597
56563
  is_guest: boolean;
56598
56564
  can_create_requirement: boolean;
56599
56565
  can_edit_requirement: boolean;
@@ -56714,6 +56680,8 @@ declare const query$_: {
56714
56680
  can_set_plan: boolean;
56715
56681
  has_clearance: boolean;
56716
56682
  pending_clearance: boolean;
56683
+ has_parent_clearance: boolean;
56684
+ can_view_artifacts: boolean;
56717
56685
  is_guest: boolean;
56718
56686
  can_create_requirement: boolean;
56719
56687
  can_edit_requirement: boolean;
@@ -56863,6 +56831,8 @@ declare const query$Z: {
56863
56831
  can_set_plan: boolean;
56864
56832
  has_clearance: boolean;
56865
56833
  pending_clearance: boolean;
56834
+ has_parent_clearance: boolean;
56835
+ can_view_artifacts: boolean;
56866
56836
  is_guest: boolean;
56867
56837
  can_create_requirement: boolean;
56868
56838
  can_edit_requirement: boolean;
@@ -56983,6 +56953,8 @@ declare const query$Z: {
56983
56953
  can_set_plan: boolean;
56984
56954
  has_clearance: boolean;
56985
56955
  pending_clearance: boolean;
56956
+ has_parent_clearance: boolean;
56957
+ can_view_artifacts: boolean;
56986
56958
  is_guest: boolean;
56987
56959
  can_create_requirement: boolean;
56988
56960
  can_edit_requirement: boolean;
@@ -63844,6 +63816,8 @@ declare const rawCommitSelector: {
63844
63816
  can_set_plan: boolean;
63845
63817
  has_clearance: boolean;
63846
63818
  pending_clearance: boolean;
63819
+ has_parent_clearance: boolean;
63820
+ can_view_artifacts: boolean;
63847
63821
  is_guest: boolean;
63848
63822
  can_create_requirement: boolean;
63849
63823
  can_edit_requirement: boolean;
@@ -63996,6 +63970,8 @@ declare const commitSelector: {
63996
63970
  can_set_plan: boolean;
63997
63971
  has_clearance: boolean;
63998
63972
  pending_clearance: boolean;
63973
+ has_parent_clearance: boolean;
63974
+ can_view_artifacts: boolean;
63999
63975
  is_guest: boolean;
64000
63976
  can_create_requirement: boolean;
64001
63977
  can_edit_requirement: boolean;
@@ -65592,6 +65568,8 @@ declare const projectsPaginationSelector: {
65592
65568
  can_set_plan: boolean;
65593
65569
  has_clearance: boolean;
65594
65570
  pending_clearance: boolean;
65571
+ has_parent_clearance: boolean;
65572
+ can_view_artifacts: boolean;
65595
65573
  is_guest: boolean;
65596
65574
  can_create_requirement: boolean;
65597
65575
  can_edit_requirement: boolean;
@@ -65712,6 +65690,8 @@ declare const projectsPaginationSelector: {
65712
65690
  can_set_plan: boolean;
65713
65691
  has_clearance: boolean;
65714
65692
  pending_clearance: boolean;
65693
+ has_parent_clearance: boolean;
65694
+ can_view_artifacts: boolean;
65715
65695
  is_guest: boolean;
65716
65696
  can_create_requirement: boolean;
65717
65697
  can_edit_requirement: boolean;
@@ -66507,6 +66487,8 @@ declare const commitsPaginationSelector: {
66507
66487
  can_set_plan: boolean;
66508
66488
  has_clearance: boolean;
66509
66489
  pending_clearance: boolean;
66490
+ has_parent_clearance: boolean;
66491
+ can_view_artifacts: boolean;
66510
66492
  is_guest: boolean;
66511
66493
  can_create_requirement: boolean;
66512
66494
  can_edit_requirement: boolean;
@@ -66960,6 +66942,8 @@ declare const rawProjectPermissionsSelector: {
66960
66942
  can_set_plan: boolean;
66961
66943
  has_clearance: boolean;
66962
66944
  pending_clearance: boolean;
66945
+ has_parent_clearance: boolean;
66946
+ can_view_artifacts: boolean;
66963
66947
  is_guest: boolean;
66964
66948
  can_create_requirement: boolean;
66965
66949
  can_edit_requirement: boolean;
@@ -67076,6 +67060,8 @@ declare const rawBaseProjectSelector: {
67076
67060
  can_set_plan: boolean;
67077
67061
  has_clearance: boolean;
67078
67062
  pending_clearance: boolean;
67063
+ has_parent_clearance: boolean;
67064
+ can_view_artifacts: boolean;
67079
67065
  is_guest: boolean;
67080
67066
  can_create_requirement: boolean;
67081
67067
  can_edit_requirement: boolean;
@@ -67199,6 +67185,8 @@ declare const rawProjectSelector: {
67199
67185
  can_set_plan: boolean;
67200
67186
  has_clearance: boolean;
67201
67187
  pending_clearance: boolean;
67188
+ has_parent_clearance: boolean;
67189
+ can_view_artifacts: boolean;
67202
67190
  is_guest: boolean;
67203
67191
  can_create_requirement: boolean;
67204
67192
  can_edit_requirement: boolean;
@@ -67320,6 +67308,8 @@ declare const rawProjectSelector: {
67320
67308
  can_set_plan: boolean;
67321
67309
  has_clearance: boolean;
67322
67310
  pending_clearance: boolean;
67311
+ has_parent_clearance: boolean;
67312
+ can_view_artifacts: boolean;
67323
67313
  is_guest: boolean;
67324
67314
  can_create_requirement: boolean;
67325
67315
  can_edit_requirement: boolean;
@@ -67450,6 +67440,8 @@ declare const projectSelector: {
67450
67440
  can_set_plan: boolean;
67451
67441
  has_clearance: boolean;
67452
67442
  pending_clearance: boolean;
67443
+ has_parent_clearance: boolean;
67444
+ can_view_artifacts: boolean;
67453
67445
  is_guest: boolean;
67454
67446
  can_create_requirement: boolean;
67455
67447
  can_edit_requirement: boolean;
@@ -67571,6 +67563,8 @@ declare const projectSelector: {
67571
67563
  can_set_plan: boolean;
67572
67564
  has_clearance: boolean;
67573
67565
  pending_clearance: boolean;
67566
+ has_parent_clearance: boolean;
67567
+ can_view_artifacts: boolean;
67574
67568
  is_guest: boolean;
67575
67569
  can_create_requirement: boolean;
67576
67570
  can_edit_requirement: boolean;
@@ -75165,7 +75159,7 @@ declare class Client {
75165
75159
  * @param wif Приватный ключ в формате WIF.
75166
75160
  * @returns Результат логина.
75167
75161
  */
75168
- login(email: string, wif: string): Promise<IOutput$43['login']>;
75162
+ login(email: string, wif: string): Promise<IOutput$41['login']>;
75169
75163
  /**
75170
75164
  * Установка токена авторизации.
75171
75165
  * @param token Токен для заголовков Authorization.
@@ -75778,6 +75772,10 @@ declare class Client {
75778
75772
  data: ValueTypes["GenerationContractGenerateDocumentInput"] | Variable<any, string>;
75779
75773
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
75780
75774
  }, ValueTypes["GeneratedDocument"]];
75775
+ capitalGenerateGenerationConvertStatement?: [{
75776
+ data: ValueTypes["GenerationConvertStatementGenerateDocumentInput"] | Variable<any, string>;
75777
+ options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
75778
+ }, ValueTypes["GeneratedDocument"]];
75781
75779
  capitalGenerateGenerationMoneyInvestStatement?: [{
75782
75780
  data: ValueTypes["GenerationMoneyInvestStatementGenerateDocumentInput"] | Variable<any, string>;
75783
75781
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
@@ -75794,18 +75792,6 @@ declare class Client {
75794
75792
  data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
75795
75793
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
75796
75794
  }, ValueTypes["GeneratedDocument"]];
75797
- capitalGenerateGenerationToCapitalizationConvertStatement?: [{
75798
- data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
75799
- options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
75800
- }, ValueTypes["GeneratedDocument"]];
75801
- capitalGenerateGenerationToMainWalletConvertStatement?: [{
75802
- data: ValueTypes["GenerationToMainWalletConvertStatementGenerateDocumentInput"] | Variable<any, string>;
75803
- options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
75804
- }, ValueTypes["GeneratedDocument"]];
75805
- capitalGenerateGenerationToProjectConvertStatement?: [{
75806
- data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
75807
- options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
75808
- }, ValueTypes["GeneratedDocument"]];
75809
75795
  capitalGenerateGetLoanDecision?: [{
75810
75796
  data: ValueTypes["GenerateDocumentInput"] | Variable<any, string>;
75811
75797
  options?: ValueTypes["GenerateDocumentOptionsInput"] | undefined | null | Variable<any, string>;
@@ -76235,7 +76221,7 @@ declare class Client {
76235
76221
  }, ValueTypes["Ledger2AdjustmentResult"]];
76236
76222
  __typename?: boolean | `@${string}`;
76237
76223
  "...on Mutation"?: Omit<ValueTypes["Mutation"], "...on Mutation">;
76238
- }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "...on Mutation" | "acceptChildOrder" | "addParticipant" | "addPaymentMethod" | "addTrustedAccount" | "cancelRequest" | "capitalAddAuthor" | "capitalApproveCommit" | "capitalCalculateVotes" | "capitalCloseProject" | "capitalCompleteProcessStep" | "capitalCompleteRegistration" | "capitalCompleteVoting" | "capitalConvertSegment" | "capitalCreateCommit" | "capitalCreateCycle" | "capitalCreateDebt" | "capitalCreateExpense" | "capitalCreateIssue" | "capitalCreateProcessTemplate" | "capitalCreateProgramInvest" | "capitalCreateProgramProperty" | "capitalCreateProject" | "capitalCreateProjectInvest" | "capitalCreateProjectProperty" | "capitalCreateStory" | "capitalDeclineCommit" | "capitalDeleteIssue" | "capitalDeleteProcessTemplate" | "capitalDeleteProject" | "capitalDeleteStory" | "capitalEditContributor" | "capitalEditProject" | "capitalFinalizeProject" | "capitalFundProgram" | "capitalGenerateCapitalizationAgreement" | "capitalGenerateCapitalizationMoneyInvestStatement" | "capitalGenerateCapitalizationPropertyInvestAct" | "capitalGenerateCapitalizationPropertyInvestDecision" | "capitalGenerateCapitalizationPropertyInvestStatement" | "capitalGenerateCapitalizationToMainWalletConvertStatement" | "capitalGenerateComponentGenerationContract" | "capitalGenerateExpenseDecision" | "capitalGenerateExpenseStatement" | "capitalGenerateGenerationContract" | "capitalGenerateGenerationMoneyInvestStatement" | "capitalGenerateGenerationPropertyInvestAct" | "capitalGenerateGenerationPropertyInvestDecision" | "capitalGenerateGenerationPropertyInvestStatement" | "capitalGenerateGenerationToCapitalizationConvertStatement" | "capitalGenerateGenerationToMainWalletConvertStatement" | "capitalGenerateGenerationToProjectConvertStatement" | "capitalGenerateGetLoanDecision" | "capitalGenerateGetLoanStatement" | "capitalGenerateProgramMoneyInvestStatement" | "capitalGenerateProjectGenerationContract" | "capitalGenerateRegistrationDocuments" | "capitalGenerateResultContributionAct" | "capitalGenerateResultContributionDecision" | "capitalGenerateResultContributionStatement" | "capitalImportContributor" | "capitalMakeClearance" | "capitalMoveIssueToComponent" | "capitalOpenProject" | "capitalPushResult" | "capitalRefreshProgram" | "capitalRefreshSegment" | "capitalRegisterContributor" | "capitalSetConfig" | "capitalSetMaster" | "capitalSetPlan" | "capitalSetProjectDevelopmentRepositoryUrl" | "capitalSignActAsChairman" | "capitalSignActAsContributor" | "capitalStartProcess" | "capitalStartProject" | "capitalStartVoting" | "capitalStopProject" | "capitalSubmitVote" | "capitalUpdateIssue" | "capitalUpdateProcessTemplate" | "capitalUpdateStory" | "chairmanConfirmApprove" | "chairmanDeclineApprove" | "chatcoopCreateAccount" | "chatcoopCreateCalendarEvent" | "chatcoopCreateCalendarIcsSubscription" | "chatcoopDeleteCalendarEvent" | "chatcoopUpdateCalendarEvent" | "chatcoopUpdateTranscriptionMemo" | "completeCapitalOnboardingStep" | "completeChairmanAgendaStep" | "completeChairmanGeneralMeetStep" | "completeExtensionOnboardingStep" | "completeRequest" | "confirmAgreement" | "confirmReceiveOnRequest" | "confirmSupplyOnRequest" | "createAnnualGeneralMeet" | "createBranch" | "createChildOrder" | "createDepositPayment" | "createInitialPayment" | "createParentOffer" | "createProjectOfFreeDecision" | "createWebPushSubscription" | "createWithdraw" | "deactivateWebPushSubscriptionById" | "declineAgreement" | "declineRequest" | "deleteBranch" | "deletePaymentMethod" | "deleteReportDraft" | "deleteTrustedAccount" | "deliverOnRequest" | "disputeOnRequest" | "editBranch" | "generateAnnualGeneralMeetAgendaDocument" | "generateAnnualGeneralMeetDecisionDocument" | "generateAnnualGeneralMeetNotificationDocument" | "generateAssetContributionAct" | "generateAssetContributionDecision" | "generateAssetContributionStatement" | "generateBallotForAnnualGeneralMeetDocument" | "generateConvertToAxonStatement" | "generateDocument" | "generateFreeDecision" | "generateParticipantApplication" | "generateParticipantApplicationDecision" | "generatePrivacyAgreement" | "generateProjectOfFreeDecision" | "generateRegistrationDocuments" | "generateReportFromEdits" | "generateReturnByAssetAct" | "generateReturnByAssetDecision" | "generateReturnByAssetStatement" | "generateReturnByMoneyDecisionDocument" | "generateReturnByMoneyStatementDocument" | "generateSelectBranchDocument" | "generateSignatureAgreement" | "generateSovietDecisionOnAnnualMeetDocument" | "generateUserAgreement" | "generateWalletAgreement" | "initSystem" | "installExtension" | "installSystem" | "login" | "logout" | "markReportPeriod" | "moderateRequest" | "notifyOnAnnualGeneralMeet" | "processConvertToAxonStatement" | "prohibitRequest" | "publishProjectOfFreeDecision" | "publishRequest" | "receiveOnRequest" | "refresh" | "registerAccount" | "registerParticipant" | "resetKey" | "restartAnnualGeneralMeet" | "saveReportDraft" | "selectBranch" | "sendAgreement" | "setPaymentStatus" | "setWif" | "signByPresiderOnAnnualGeneralMeet" | "signBySecretaryOnAnnualGeneralMeet" | "startInstall" | "startResetKey" | "supplyOnRequest" | "triggerNotificationWorkflow" | "uninstallExtension" | "unpublishRequest" | "updateAccount" | "updateBankAccount" | "updateExtension" | "updateReportRequisites" | "updateRequest" | "updateSettings" | "updateSystem" | "verifyEmail" | "voteOnAnnualGeneralMeet" | "walmoveWallets" ? Z[P] : never; }, ops?: OperationOptions & {
76224
+ }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "__directives" | "...on Mutation" | "acceptChildOrder" | "addParticipant" | "addPaymentMethod" | "addTrustedAccount" | "cancelRequest" | "capitalAddAuthor" | "capitalApproveCommit" | "capitalCalculateVotes" | "capitalCloseProject" | "capitalCompleteProcessStep" | "capitalCompleteRegistration" | "capitalCompleteVoting" | "capitalConvertSegment" | "capitalCreateCommit" | "capitalCreateCycle" | "capitalCreateDebt" | "capitalCreateExpense" | "capitalCreateIssue" | "capitalCreateProcessTemplate" | "capitalCreateProgramInvest" | "capitalCreateProgramProperty" | "capitalCreateProject" | "capitalCreateProjectInvest" | "capitalCreateProjectProperty" | "capitalCreateStory" | "capitalDeclineCommit" | "capitalDeleteIssue" | "capitalDeleteProcessTemplate" | "capitalDeleteProject" | "capitalDeleteStory" | "capitalEditContributor" | "capitalEditProject" | "capitalFinalizeProject" | "capitalFundProgram" | "capitalGenerateCapitalizationAgreement" | "capitalGenerateCapitalizationMoneyInvestStatement" | "capitalGenerateCapitalizationPropertyInvestAct" | "capitalGenerateCapitalizationPropertyInvestDecision" | "capitalGenerateCapitalizationPropertyInvestStatement" | "capitalGenerateCapitalizationToMainWalletConvertStatement" | "capitalGenerateComponentGenerationContract" | "capitalGenerateExpenseDecision" | "capitalGenerateExpenseStatement" | "capitalGenerateGenerationContract" | "capitalGenerateGenerationConvertStatement" | "capitalGenerateGenerationMoneyInvestStatement" | "capitalGenerateGenerationPropertyInvestAct" | "capitalGenerateGenerationPropertyInvestDecision" | "capitalGenerateGenerationPropertyInvestStatement" | "capitalGenerateGetLoanDecision" | "capitalGenerateGetLoanStatement" | "capitalGenerateProgramMoneyInvestStatement" | "capitalGenerateProjectGenerationContract" | "capitalGenerateRegistrationDocuments" | "capitalGenerateResultContributionAct" | "capitalGenerateResultContributionDecision" | "capitalGenerateResultContributionStatement" | "capitalImportContributor" | "capitalMakeClearance" | "capitalMoveIssueToComponent" | "capitalOpenProject" | "capitalPushResult" | "capitalRefreshProgram" | "capitalRefreshSegment" | "capitalRegisterContributor" | "capitalSetConfig" | "capitalSetMaster" | "capitalSetPlan" | "capitalSetProjectDevelopmentRepositoryUrl" | "capitalSignActAsChairman" | "capitalSignActAsContributor" | "capitalStartProcess" | "capitalStartProject" | "capitalStartVoting" | "capitalStopProject" | "capitalSubmitVote" | "capitalUpdateIssue" | "capitalUpdateProcessTemplate" | "capitalUpdateStory" | "chairmanConfirmApprove" | "chairmanDeclineApprove" | "chatcoopCreateAccount" | "chatcoopCreateCalendarEvent" | "chatcoopCreateCalendarIcsSubscription" | "chatcoopDeleteCalendarEvent" | "chatcoopUpdateCalendarEvent" | "chatcoopUpdateTranscriptionMemo" | "completeCapitalOnboardingStep" | "completeChairmanAgendaStep" | "completeChairmanGeneralMeetStep" | "completeExtensionOnboardingStep" | "completeRequest" | "confirmAgreement" | "confirmReceiveOnRequest" | "confirmSupplyOnRequest" | "createAnnualGeneralMeet" | "createBranch" | "createChildOrder" | "createDepositPayment" | "createInitialPayment" | "createParentOffer" | "createProjectOfFreeDecision" | "createWebPushSubscription" | "createWithdraw" | "deactivateWebPushSubscriptionById" | "declineAgreement" | "declineRequest" | "deleteBranch" | "deletePaymentMethod" | "deleteReportDraft" | "deleteTrustedAccount" | "deliverOnRequest" | "disputeOnRequest" | "editBranch" | "generateAnnualGeneralMeetAgendaDocument" | "generateAnnualGeneralMeetDecisionDocument" | "generateAnnualGeneralMeetNotificationDocument" | "generateAssetContributionAct" | "generateAssetContributionDecision" | "generateAssetContributionStatement" | "generateBallotForAnnualGeneralMeetDocument" | "generateConvertToAxonStatement" | "generateDocument" | "generateFreeDecision" | "generateParticipantApplication" | "generateParticipantApplicationDecision" | "generatePrivacyAgreement" | "generateProjectOfFreeDecision" | "generateRegistrationDocuments" | "generateReportFromEdits" | "generateReturnByAssetAct" | "generateReturnByAssetDecision" | "generateReturnByAssetStatement" | "generateReturnByMoneyDecisionDocument" | "generateReturnByMoneyStatementDocument" | "generateSelectBranchDocument" | "generateSignatureAgreement" | "generateSovietDecisionOnAnnualMeetDocument" | "generateUserAgreement" | "generateWalletAgreement" | "initSystem" | "installExtension" | "installSystem" | "login" | "logout" | "markReportPeriod" | "moderateRequest" | "notifyOnAnnualGeneralMeet" | "processConvertToAxonStatement" | "prohibitRequest" | "publishProjectOfFreeDecision" | "publishRequest" | "receiveOnRequest" | "refresh" | "registerAccount" | "registerParticipant" | "resetKey" | "restartAnnualGeneralMeet" | "saveReportDraft" | "selectBranch" | "sendAgreement" | "setPaymentStatus" | "setWif" | "signByPresiderOnAnnualGeneralMeet" | "signBySecretaryOnAnnualGeneralMeet" | "startInstall" | "startResetKey" | "supplyOnRequest" | "triggerNotificationWorkflow" | "uninstallExtension" | "unpublishRequest" | "updateAccount" | "updateBankAccount" | "updateExtension" | "updateReportRequisites" | "updateRequest" | "updateSettings" | "updateSystem" | "verifyEmail" | "voteOnAnnualGeneralMeet" | "walmoveWallets" ? Z[P] : never; }, ops?: OperationOptions & {
76239
76225
  variables?: Record<string, unknown>;
76240
76226
  }) => Promise<InputType<{
76241
76227
  __typename: "Mutation";
@@ -76283,13 +76269,11 @@ declare class Client {
76283
76269
  capitalGenerateExpenseDecision: GraphQLTypes["GeneratedDocument"];
76284
76270
  capitalGenerateExpenseStatement: GraphQLTypes["GeneratedDocument"];
76285
76271
  capitalGenerateGenerationContract: GraphQLTypes["GeneratedDocument"];
76272
+ capitalGenerateGenerationConvertStatement: GraphQLTypes["GeneratedDocument"];
76286
76273
  capitalGenerateGenerationMoneyInvestStatement: GraphQLTypes["GeneratedDocument"];
76287
76274
  capitalGenerateGenerationPropertyInvestAct: GraphQLTypes["GeneratedDocument"];
76288
76275
  capitalGenerateGenerationPropertyInvestDecision: GraphQLTypes["GeneratedDocument"];
76289
76276
  capitalGenerateGenerationPropertyInvestStatement: GraphQLTypes["GeneratedDocument"];
76290
- capitalGenerateGenerationToCapitalizationConvertStatement: GraphQLTypes["GeneratedDocument"];
76291
- capitalGenerateGenerationToMainWalletConvertStatement: GraphQLTypes["GeneratedDocument"];
76292
- capitalGenerateGenerationToProjectConvertStatement: GraphQLTypes["GeneratedDocument"];
76293
76277
  capitalGenerateGetLoanDecision: GraphQLTypes["GeneratedDocument"];
76294
76278
  capitalGenerateGetLoanStatement: GraphQLTypes["GeneratedDocument"];
76295
76279
  capitalGenerateProgramMoneyInvestStatement: GraphQLTypes["GeneratedDocument"];