@coopenomics/sdk 2025.11.6 → 2025.11.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -4734,6 +4734,9 @@ type ValueTypes = {
4734
4734
  supplyOnRequest?: [{
4735
4735
  data: ValueTypes["SupplyOnRequestInput"] | Variable<any, string>;
4736
4736
  }, ValueTypes["Transaction"]];
4737
+ triggerNotificationWorkflow?: [{
4738
+ data: ValueTypes["TriggerNotificationWorkflowInput"] | Variable<any, string>;
4739
+ }, ValueTypes["TriggerNotificationWorkflowResult"]];
4737
4740
  uninstallExtension?: [{
4738
4741
  data: ValueTypes["UninstallExtensionInput"] | Variable<any, string>;
4739
4742
  }, boolean | `@${string}`];
@@ -4763,6 +4766,10 @@ type ValueTypes = {
4763
4766
  }, ValueTypes["MeetAggregate"]];
4764
4767
  __typename?: boolean | `@${string}`;
4765
4768
  }>;
4769
+ ["NotificationWorkflowRecipientInput"]: {
4770
+ /** Username получателя */
4771
+ username: string | Variable<any, string>;
4772
+ };
4766
4773
  ["NotifyOnAnnualGeneralMeetInput"]: {
4767
4774
  coopname: string | Variable<any, string>;
4768
4775
  meet_hash: string | Variable<any, string>;
@@ -6582,6 +6589,25 @@ type ValueTypes = {
6582
6589
  transaction?: boolean | `@${string}`;
6583
6590
  __typename?: boolean | `@${string}`;
6584
6591
  }>;
6592
+ ["TriggerNotificationWorkflowInput"]: {
6593
+ /** Имя воркфлоу для запуска */
6594
+ name: string | Variable<any, string>;
6595
+ /** Данные для шаблона уведомления */
6596
+ payload?: ValueTypes["JSONObject"] | undefined | null | Variable<any, string>;
6597
+ /** Получатели уведомления */
6598
+ to: Array<ValueTypes["NotificationWorkflowRecipientInput"]> | Variable<any, string>;
6599
+ };
6600
+ ["TriggerNotificationWorkflowResult"]: AliasType<{
6601
+ /** Статус подтверждения обработки */
6602
+ acknowledged?: boolean | `@${string}`;
6603
+ /** Список ошибок (если есть) */
6604
+ error?: boolean | `@${string}`;
6605
+ /** Статус операции */
6606
+ status?: boolean | `@${string}`;
6607
+ /** ID транзакции */
6608
+ transactionId?: boolean | `@${string}`;
6609
+ __typename?: boolean | `@${string}`;
6610
+ }>;
6585
6611
  ["UninstallExtensionInput"]: {
6586
6612
  /** Фильтр по имени */
6587
6613
  name: string | Variable<any, string>;
@@ -11399,6 +11425,9 @@ type ResolverInputTypes = {
11399
11425
  supplyOnRequest?: [{
11400
11426
  data: ResolverInputTypes["SupplyOnRequestInput"];
11401
11427
  }, ResolverInputTypes["Transaction"]];
11428
+ triggerNotificationWorkflow?: [{
11429
+ data: ResolverInputTypes["TriggerNotificationWorkflowInput"];
11430
+ }, ResolverInputTypes["TriggerNotificationWorkflowResult"]];
11402
11431
  uninstallExtension?: [{
11403
11432
  data: ResolverInputTypes["UninstallExtensionInput"];
11404
11433
  }, boolean | `@${string}`];
@@ -11428,6 +11457,10 @@ type ResolverInputTypes = {
11428
11457
  }, ResolverInputTypes["MeetAggregate"]];
11429
11458
  __typename?: boolean | `@${string}`;
11430
11459
  }>;
11460
+ ["NotificationWorkflowRecipientInput"]: {
11461
+ /** Username получателя */
11462
+ username: string;
11463
+ };
11431
11464
  ["NotifyOnAnnualGeneralMeetInput"]: {
11432
11465
  coopname: string;
11433
11466
  meet_hash: string;
@@ -13247,6 +13280,25 @@ type ResolverInputTypes = {
13247
13280
  transaction?: boolean | `@${string}`;
13248
13281
  __typename?: boolean | `@${string}`;
13249
13282
  }>;
13283
+ ["TriggerNotificationWorkflowInput"]: {
13284
+ /** Имя воркфлоу для запуска */
13285
+ name: string;
13286
+ /** Данные для шаблона уведомления */
13287
+ payload?: ResolverInputTypes["JSONObject"] | undefined | null;
13288
+ /** Получатели уведомления */
13289
+ to: Array<ResolverInputTypes["NotificationWorkflowRecipientInput"]>;
13290
+ };
13291
+ ["TriggerNotificationWorkflowResult"]: AliasType<{
13292
+ /** Статус подтверждения обработки */
13293
+ acknowledged?: boolean | `@${string}`;
13294
+ /** Список ошибок (если есть) */
13295
+ error?: boolean | `@${string}`;
13296
+ /** Статус операции */
13297
+ status?: boolean | `@${string}`;
13298
+ /** ID транзакции */
13299
+ transactionId?: boolean | `@${string}`;
13300
+ __typename?: boolean | `@${string}`;
13301
+ }>;
13250
13302
  ["UninstallExtensionInput"]: {
13251
13303
  /** Фильтр по имени */
13252
13304
  name: string;
@@ -17780,6 +17832,8 @@ type ModelTypes = {
17780
17832
  startResetKey: boolean;
17781
17833
  /** Подтвердить поставку имущества Поставщиком по заявке Заказчика и акту приёма-передачи */
17782
17834
  supplyOnRequest: ModelTypes["Transaction"];
17835
+ /** Запустить воркфлоу уведомлений (только для председателя или server-secret) */
17836
+ triggerNotificationWorkflow: ModelTypes["TriggerNotificationWorkflowResult"];
17783
17837
  /** Удалить расширение */
17784
17838
  uninstallExtension: boolean;
17785
17839
  /** Снять с публикации заявку */
@@ -17799,6 +17853,10 @@ type ModelTypes = {
17799
17853
  /** Голосование на общем собрании пайщиков */
17800
17854
  voteOnAnnualGeneralMeet: ModelTypes["MeetAggregate"];
17801
17855
  };
17856
+ ["NotificationWorkflowRecipientInput"]: {
17857
+ /** Username получателя */
17858
+ username: string;
17859
+ };
17802
17860
  ["NotifyOnAnnualGeneralMeetInput"]: {
17803
17861
  coopname: string;
17804
17862
  meet_hash: string;
@@ -19468,6 +19526,24 @@ type ModelTypes = {
19468
19526
  /** Итоговая транзакция */
19469
19527
  transaction?: ModelTypes["JSON"] | undefined | null;
19470
19528
  };
19529
+ ["TriggerNotificationWorkflowInput"]: {
19530
+ /** Имя воркфлоу для запуска */
19531
+ name: string;
19532
+ /** Данные для шаблона уведомления */
19533
+ payload?: ModelTypes["JSONObject"] | undefined | null;
19534
+ /** Получатели уведомления */
19535
+ to: Array<ModelTypes["NotificationWorkflowRecipientInput"]>;
19536
+ };
19537
+ ["TriggerNotificationWorkflowResult"]: {
19538
+ /** Статус подтверждения обработки */
19539
+ acknowledged: boolean;
19540
+ /** Список ошибок (если есть) */
19541
+ error?: Array<string> | undefined | null;
19542
+ /** Статус операции */
19543
+ status: string;
19544
+ /** ID транзакции */
19545
+ transactionId: string;
19546
+ };
19471
19547
  ["UninstallExtensionInput"]: {
19472
19548
  /** Фильтр по имени */
19473
19549
  name: string;
@@ -24098,6 +24174,8 @@ type GraphQLTypes = {
24098
24174
  startResetKey: boolean;
24099
24175
  /** Подтвердить поставку имущества Поставщиком по заявке Заказчика и акту приёма-передачи */
24100
24176
  supplyOnRequest: GraphQLTypes["Transaction"];
24177
+ /** Запустить воркфлоу уведомлений (только для председателя или server-secret) */
24178
+ triggerNotificationWorkflow: GraphQLTypes["TriggerNotificationWorkflowResult"];
24101
24179
  /** Удалить расширение */
24102
24180
  uninstallExtension: boolean;
24103
24181
  /** Снять с публикации заявку */
@@ -24117,6 +24195,10 @@ type GraphQLTypes = {
24117
24195
  /** Голосование на общем собрании пайщиков */
24118
24196
  voteOnAnnualGeneralMeet: GraphQLTypes["MeetAggregate"];
24119
24197
  };
24198
+ ["NotificationWorkflowRecipientInput"]: {
24199
+ /** Username получателя */
24200
+ username: string;
24201
+ };
24120
24202
  ["NotifyOnAnnualGeneralMeetInput"]: {
24121
24203
  coopname: string;
24122
24204
  meet_hash: string;
@@ -25862,6 +25944,25 @@ type GraphQLTypes = {
25862
25944
  /** Итоговая транзакция */
25863
25945
  transaction?: GraphQLTypes["JSON"] | undefined | null;
25864
25946
  };
25947
+ ["TriggerNotificationWorkflowInput"]: {
25948
+ /** Имя воркфлоу для запуска */
25949
+ name: string;
25950
+ /** Данные для шаблона уведомления */
25951
+ payload?: GraphQLTypes["JSONObject"] | undefined | null;
25952
+ /** Получатели уведомления */
25953
+ to: Array<GraphQLTypes["NotificationWorkflowRecipientInput"]>;
25954
+ };
25955
+ ["TriggerNotificationWorkflowResult"]: {
25956
+ __typename: "TriggerNotificationWorkflowResult";
25957
+ /** Статус подтверждения обработки */
25958
+ acknowledged: boolean;
25959
+ /** Список ошибок (если есть) */
25960
+ error?: Array<string> | undefined | null;
25961
+ /** Статус операции */
25962
+ status: string;
25963
+ /** ID транзакции */
25964
+ transactionId: string;
25965
+ };
25865
25966
  ["UninstallExtensionInput"]: {
25866
25967
  /** Фильтр по имени */
25867
25968
  name: string;
@@ -26553,6 +26654,7 @@ type ZEUS_VARIABLES = {
26553
26654
  ["MakeClearanceInput"]: ValueTypes["MakeClearanceInput"];
26554
26655
  ["MetaDocumentInput"]: ValueTypes["MetaDocumentInput"];
26555
26656
  ["ModerateRequestInput"]: ValueTypes["ModerateRequestInput"];
26657
+ ["NotificationWorkflowRecipientInput"]: ValueTypes["NotificationWorkflowRecipientInput"];
26556
26658
  ["NotifyOnAnnualGeneralMeetInput"]: ValueTypes["NotifyOnAnnualGeneralMeetInput"];
26557
26659
  ["OpenProjectInput"]: ValueTypes["OpenProjectInput"];
26558
26660
  ["OrganizationDetailsInput"]: ValueTypes["OrganizationDetailsInput"];
@@ -26629,6 +26731,7 @@ type ZEUS_VARIABLES = {
26629
26731
  ["SubmitVoteInput"]: ValueTypes["SubmitVoteInput"];
26630
26732
  ["SupplyOnRequestInput"]: ValueTypes["SupplyOnRequestInput"];
26631
26733
  ["SystemStatus"]: ValueTypes["SystemStatus"];
26734
+ ["TriggerNotificationWorkflowInput"]: ValueTypes["TriggerNotificationWorkflowInput"];
26632
26735
  ["UninstallExtensionInput"]: ValueTypes["UninstallExtensionInput"];
26633
26736
  ["UnpublishRequestInput"]: ValueTypes["UnpublishRequestInput"];
26634
26737
  ["Update"]: ValueTypes["Update"];
@@ -27248,8 +27351,8 @@ declare namespace Classes {
27248
27351
  export { Classes_Account as Account, Classes_Blockchain as Blockchain, Classes_Canvas as Canvas, Classes_Crypto as Crypto, Classes_Document as Document, type Classes_IVoteData as IVoteData, Classes_Vote as Vote };
27249
27352
  }
27250
27353
 
27251
- declare const name$3e = "registerAccount";
27252
- declare const mutation$2o: {
27354
+ declare const name$3f = "registerAccount";
27355
+ declare const mutation$2p: {
27253
27356
  registerAccount: [{
27254
27357
  data: Variable<"RegisterAccountInput!", "data">;
27255
27358
  }, {
@@ -27445,59 +27548,59 @@ declare const mutation$2o: {
27445
27548
  };
27446
27549
  }];
27447
27550
  };
27448
- interface IInput$3f {
27551
+ interface IInput$3g {
27449
27552
  /**
27450
27553
  * @private
27451
27554
  */
27452
27555
  [key: string]: unknown;
27453
27556
  data: ModelTypes['RegisterAccountInput'];
27454
27557
  }
27455
- type IOutput$3f = InputType<GraphQLTypes['Mutation'], typeof mutation$2o>;
27558
+ type IOutput$3g = InputType<GraphQLTypes['Mutation'], typeof mutation$2p>;
27456
27559
 
27457
27560
  declare namespace registerAccount {
27458
- export { type IInput$3f as IInput, type IOutput$3f as IOutput, mutation$2o as mutation, name$3e as name };
27561
+ export { type IInput$3g as IInput, type IOutput$3g as IOutput, mutation$2p as mutation, name$3f as name };
27459
27562
  }
27460
27563
 
27461
- declare const name$3d = "resetKey";
27462
- declare const mutation$2n: {
27564
+ declare const name$3e = "resetKey";
27565
+ declare const mutation$2o: {
27463
27566
  resetKey: [{
27464
27567
  data: Variable<"ResetKeyInput!", "data">;
27465
27568
  }, true];
27466
27569
  };
27467
- interface IInput$3e {
27570
+ interface IInput$3f {
27468
27571
  /**
27469
27572
  * @private
27470
27573
  */
27471
27574
  [key: string]: unknown;
27472
27575
  data: ModelTypes['ResetKeyInput'];
27473
27576
  }
27474
- type IOutput$3e = InputType<GraphQLTypes['Mutation'], typeof mutation$2n>;
27577
+ type IOutput$3f = InputType<GraphQLTypes['Mutation'], typeof mutation$2o>;
27475
27578
 
27476
27579
  declare namespace resetKey {
27477
- export { type IInput$3e as IInput, type IOutput$3e as IOutput, mutation$2n as mutation, name$3d as name };
27580
+ export { type IInput$3f as IInput, type IOutput$3f as IOutput, mutation$2o as mutation, name$3e as name };
27478
27581
  }
27479
27582
 
27480
- declare const name$3c = "startResetKey";
27481
- declare const mutation$2m: {
27583
+ declare const name$3d = "startResetKey";
27584
+ declare const mutation$2n: {
27482
27585
  startResetKey: [{
27483
27586
  data: Variable<"StartResetKeyInput!", "data">;
27484
27587
  }, true];
27485
27588
  };
27486
- interface IInput$3d {
27589
+ interface IInput$3e {
27487
27590
  /**
27488
27591
  * @private
27489
27592
  */
27490
27593
  [key: string]: unknown;
27491
27594
  data: ModelTypes['StartResetKeyInput'];
27492
27595
  }
27493
- type IOutput$3d = InputType<GraphQLTypes['Mutation'], typeof mutation$2m>;
27596
+ type IOutput$3e = InputType<GraphQLTypes['Mutation'], typeof mutation$2n>;
27494
27597
 
27495
27598
  declare namespace startResetKey {
27496
- export { type IInput$3d as IInput, type IOutput$3d as IOutput, mutation$2m as mutation, name$3c as name };
27599
+ export { type IInput$3e as IInput, type IOutput$3e as IOutput, mutation$2n as mutation, name$3d as name };
27497
27600
  }
27498
27601
 
27499
- declare const name$3b = "updateAccount";
27500
- declare const mutation$2l: {
27602
+ declare const name$3c = "updateAccount";
27603
+ declare const mutation$2m: {
27501
27604
  updateAccount: [{
27502
27605
  data: Variable<"UpdateAccountInput!", "data">;
27503
27606
  }, {
@@ -27681,17 +27784,17 @@ declare const mutation$2l: {
27681
27784
  };
27682
27785
  }];
27683
27786
  };
27684
- interface IInput$3c {
27787
+ interface IInput$3d {
27685
27788
  /**
27686
27789
  * @private
27687
27790
  */
27688
27791
  [key: string]: unknown;
27689
27792
  data: ModelTypes['UpdateAccountInput'];
27690
27793
  }
27691
- type IOutput$3c = InputType<GraphQLTypes['Mutation'], typeof mutation$2l>;
27794
+ type IOutput$3d = InputType<GraphQLTypes['Mutation'], typeof mutation$2m>;
27692
27795
 
27693
27796
  declare namespace updateAccount {
27694
- export { type IInput$3c as IInput, type IOutput$3c as IOutput, mutation$2l as mutation, name$3b as name };
27797
+ export { type IInput$3d as IInput, type IOutput$3d as IOutput, mutation$2m as mutation, name$3c as name };
27695
27798
  }
27696
27799
 
27697
27800
  /** Зарегистрировать аккаунт пользователя в системе */
@@ -27700,8 +27803,8 @@ declare namespace index$z {
27700
27803
  export { registerAccount as RegisterAccount, resetKey as ResetKey, startResetKey as StartResetKey, updateAccount as UpdateAccount };
27701
27804
  }
27702
27805
 
27703
- declare const name$3a = "generatePrivacyAgreement";
27704
- declare const mutation$2k: {
27806
+ declare const name$3b = "generatePrivacyAgreement";
27807
+ declare const mutation$2l: {
27705
27808
  generatePrivacyAgreement: [{
27706
27809
  data: Variable<"GenerateDocumentInput!", "data">;
27707
27810
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -27713,7 +27816,7 @@ declare const mutation$2k: {
27713
27816
  meta: boolean;
27714
27817
  }];
27715
27818
  };
27716
- interface IInput$3b {
27819
+ interface IInput$3c {
27717
27820
  /**
27718
27821
  * @private
27719
27822
  */
@@ -27721,14 +27824,14 @@ interface IInput$3b {
27721
27824
  data: ModelTypes['GenerateDocumentInput'];
27722
27825
  options?: ModelTypes['GenerateDocumentOptionsInput'];
27723
27826
  }
27724
- type IOutput$3b = InputType<GraphQLTypes['Mutation'], typeof mutation$2k>;
27827
+ type IOutput$3c = InputType<GraphQLTypes['Mutation'], typeof mutation$2l>;
27725
27828
 
27726
27829
  declare namespace generatePrivacyAgreement {
27727
- export { type IInput$3b as IInput, type IOutput$3b as IOutput, mutation$2k as mutation, name$3a as name };
27830
+ export { type IInput$3c as IInput, type IOutput$3c as IOutput, mutation$2l as mutation, name$3b as name };
27728
27831
  }
27729
27832
 
27730
- declare const name$39 = "generateSignatureAgreement";
27731
- declare const mutation$2j: {
27833
+ declare const name$3a = "generateSignatureAgreement";
27834
+ declare const mutation$2k: {
27732
27835
  generateSignatureAgreement: [{
27733
27836
  data: Variable<"GenerateDocumentInput!", "data">;
27734
27837
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -27740,7 +27843,7 @@ declare const mutation$2j: {
27740
27843
  meta: boolean;
27741
27844
  }];
27742
27845
  };
27743
- interface IInput$3a {
27846
+ interface IInput$3b {
27744
27847
  /**
27745
27848
  * @private
27746
27849
  */
@@ -27748,14 +27851,14 @@ interface IInput$3a {
27748
27851
  data: ModelTypes['GenerateDocumentInput'];
27749
27852
  options?: ModelTypes['GenerateDocumentOptionsInput'];
27750
27853
  }
27751
- type IOutput$3a = InputType<GraphQLTypes['Mutation'], typeof mutation$2j>;
27854
+ type IOutput$3b = InputType<GraphQLTypes['Mutation'], typeof mutation$2k>;
27752
27855
 
27753
27856
  declare namespace generateSignatureAgreement {
27754
- export { type IInput$3a as IInput, type IOutput$3a as IOutput, mutation$2j as mutation, name$39 as name };
27857
+ export { type IInput$3b as IInput, type IOutput$3b as IOutput, mutation$2k as mutation, name$3a as name };
27755
27858
  }
27756
27859
 
27757
- declare const name$38 = "generateWalletAgreement";
27758
- declare const mutation$2i: {
27860
+ declare const name$39 = "generateWalletAgreement";
27861
+ declare const mutation$2j: {
27759
27862
  generateWalletAgreement: [{
27760
27863
  data: Variable<"GenerateDocumentInput!", "data">;
27761
27864
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -27767,7 +27870,7 @@ declare const mutation$2i: {
27767
27870
  meta: boolean;
27768
27871
  }];
27769
27872
  };
27770
- interface IInput$39 {
27873
+ interface IInput$3a {
27771
27874
  /**
27772
27875
  * @private
27773
27876
  */
@@ -27775,14 +27878,14 @@ interface IInput$39 {
27775
27878
  data: ModelTypes['GenerateDocumentInput'];
27776
27879
  options?: ModelTypes['GenerateDocumentOptionsInput'];
27777
27880
  }
27778
- type IOutput$39 = InputType<GraphQLTypes['Mutation'], typeof mutation$2i>;
27881
+ type IOutput$3a = InputType<GraphQLTypes['Mutation'], typeof mutation$2j>;
27779
27882
 
27780
27883
  declare namespace generateWalletAgreement {
27781
- export { type IInput$39 as IInput, type IOutput$39 as IOutput, mutation$2i as mutation, name$38 as name };
27884
+ export { type IInput$3a as IInput, type IOutput$3a as IOutput, mutation$2j as mutation, name$39 as name };
27782
27885
  }
27783
27886
 
27784
- declare const name$37 = "generateUserAgreement";
27785
- declare const mutation$2h: {
27887
+ declare const name$38 = "generateUserAgreement";
27888
+ declare const mutation$2i: {
27786
27889
  generateUserAgreement: [{
27787
27890
  data: Variable<"GenerateDocumentInput!", "data">;
27788
27891
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -27794,7 +27897,7 @@ declare const mutation$2h: {
27794
27897
  meta: boolean;
27795
27898
  }];
27796
27899
  };
27797
- interface IInput$38 {
27900
+ interface IInput$39 {
27798
27901
  /**
27799
27902
  * @private
27800
27903
  */
@@ -27802,14 +27905,14 @@ interface IInput$38 {
27802
27905
  data: ModelTypes['GenerateDocumentInput'];
27803
27906
  options?: ModelTypes['GenerateDocumentOptionsInput'];
27804
27907
  }
27805
- type IOutput$38 = InputType<GraphQLTypes['Mutation'], typeof mutation$2h>;
27908
+ type IOutput$39 = InputType<GraphQLTypes['Mutation'], typeof mutation$2i>;
27806
27909
 
27807
27910
  declare namespace generateUserAgreement {
27808
- export { type IInput$38 as IInput, type IOutput$38 as IOutput, mutation$2h as mutation, name$37 as name };
27911
+ export { type IInput$39 as IInput, type IOutput$39 as IOutput, mutation$2i as mutation, name$38 as name };
27809
27912
  }
27810
27913
 
27811
- declare const name$36 = "sendAgreement";
27812
- declare const mutation$2g: {
27914
+ declare const name$37 = "sendAgreement";
27915
+ declare const mutation$2h: {
27813
27916
  sendAgreement: [{
27814
27917
  data: Variable<"SendAgreementInput!", "data">;
27815
27918
  }, {
@@ -27824,21 +27927,21 @@ declare const mutation$2g: {
27824
27927
  transaction: boolean;
27825
27928
  }];
27826
27929
  };
27827
- interface IInput$37 {
27930
+ interface IInput$38 {
27828
27931
  /**
27829
27932
  * @private
27830
27933
  */
27831
27934
  [key: string]: unknown;
27832
27935
  data: ModelTypes['SendAgreementInput'];
27833
27936
  }
27834
- type IOutput$37 = InputType<GraphQLTypes['Mutation'], typeof mutation$2g>;
27937
+ type IOutput$38 = InputType<GraphQLTypes['Mutation'], typeof mutation$2h>;
27835
27938
 
27836
27939
  declare namespace sendAgreement {
27837
- export { type IInput$37 as IInput, type IOutput$37 as IOutput, mutation$2g as mutation, name$36 as name };
27940
+ export { type IInput$38 as IInput, type IOutput$38 as IOutput, mutation$2h as mutation, name$37 as name };
27838
27941
  }
27839
27942
 
27840
- declare const name$35 = "confirmAgreement";
27841
- declare const mutation$2f: {
27943
+ declare const name$36 = "confirmAgreement";
27944
+ declare const mutation$2g: {
27842
27945
  confirmAgreement: [{
27843
27946
  data: Variable<"ConfirmAgreementInput!", "data">;
27844
27947
  }, {
@@ -27853,21 +27956,21 @@ declare const mutation$2f: {
27853
27956
  transaction: boolean;
27854
27957
  }];
27855
27958
  };
27856
- interface IInput$36 {
27959
+ interface IInput$37 {
27857
27960
  /**
27858
27961
  * @private
27859
27962
  */
27860
27963
  [key: string]: unknown;
27861
27964
  data: ModelTypes['ConfirmAgreementInput'];
27862
27965
  }
27863
- type IOutput$36 = InputType<GraphQLTypes['Mutation'], typeof mutation$2f>;
27966
+ type IOutput$37 = InputType<GraphQLTypes['Mutation'], typeof mutation$2g>;
27864
27967
 
27865
27968
  declare namespace confirmAgreement {
27866
- export { type IInput$36 as IInput, type IOutput$36 as IOutput, mutation$2f as mutation, name$35 as name };
27969
+ export { type IInput$37 as IInput, type IOutput$37 as IOutput, mutation$2g as mutation, name$36 as name };
27867
27970
  }
27868
27971
 
27869
- declare const name$34 = "declineAgreement";
27870
- declare const mutation$2e: {
27972
+ declare const name$35 = "declineAgreement";
27973
+ declare const mutation$2f: {
27871
27974
  declineAgreement: [{
27872
27975
  data: Variable<"DeclineAgreementInput!", "data">;
27873
27976
  }, {
@@ -27882,17 +27985,17 @@ declare const mutation$2e: {
27882
27985
  transaction: boolean;
27883
27986
  }];
27884
27987
  };
27885
- interface IInput$35 {
27988
+ interface IInput$36 {
27886
27989
  /**
27887
27990
  * @private
27888
27991
  */
27889
27992
  [key: string]: unknown;
27890
27993
  data: ModelTypes['DeclineAgreementInput'];
27891
27994
  }
27892
- type IOutput$35 = InputType<GraphQLTypes['Mutation'], typeof mutation$2e>;
27995
+ type IOutput$36 = InputType<GraphQLTypes['Mutation'], typeof mutation$2f>;
27893
27996
 
27894
27997
  declare namespace declineAgreement {
27895
- export { type IInput$35 as IInput, type IOutput$35 as IOutput, mutation$2e as mutation, name$34 as name };
27998
+ export { type IInput$36 as IInput, type IOutput$36 as IOutput, mutation$2f as mutation, name$35 as name };
27896
27999
  }
27897
28000
 
27898
28001
  /** Сгенерировать документ согласия с политикой конфиденциальности. */
@@ -27901,8 +28004,8 @@ declare namespace index$y {
27901
28004
  export { confirmAgreement as ConfirmAgreement, declineAgreement as DeclineAgreement, generatePrivacyAgreement as GeneratePrivacyAgreement, generateSignatureAgreement as GenerateSignatureAgreement, generateUserAgreement as GenerateUserAgreement, generateWalletAgreement as GenerateWalletAgreement, sendAgreement as SendAgreement };
27902
28005
  }
27903
28006
 
27904
- declare const name$33 = "refresh";
27905
- declare const mutation$2d: {
28007
+ declare const name$34 = "refresh";
28008
+ declare const mutation$2e: {
27906
28009
  refresh: [{
27907
28010
  data: Variable<"RefreshInput!", "data">;
27908
28011
  }, {
@@ -28098,40 +28201,40 @@ declare const mutation$2d: {
28098
28201
  };
28099
28202
  }];
28100
28203
  };
28101
- interface IInput$34 {
28204
+ interface IInput$35 {
28102
28205
  /**
28103
28206
  * @private
28104
28207
  */
28105
28208
  [key: string]: unknown;
28106
28209
  data: ModelTypes['RefreshInput'];
28107
28210
  }
28108
- type IOutput$34 = InputType<GraphQLTypes['Mutation'], typeof mutation$2d>;
28211
+ type IOutput$35 = InputType<GraphQLTypes['Mutation'], typeof mutation$2e>;
28109
28212
 
28110
28213
  declare namespace refresh {
28111
- export { type IInput$34 as IInput, type IOutput$34 as IOutput, mutation$2d as mutation, name$33 as name };
28214
+ export { type IInput$35 as IInput, type IOutput$35 as IOutput, mutation$2e as mutation, name$34 as name };
28112
28215
  }
28113
28216
 
28114
- declare const name$32 = "logout";
28115
- declare const mutation$2c: {
28217
+ declare const name$33 = "logout";
28218
+ declare const mutation$2d: {
28116
28219
  logout: [{
28117
28220
  data: Variable<"LogoutInput!", "data">;
28118
28221
  }, true];
28119
28222
  };
28120
- interface IInput$33 {
28223
+ interface IInput$34 {
28121
28224
  /**
28122
28225
  * @private
28123
28226
  */
28124
28227
  [key: string]: unknown;
28125
28228
  data: ModelTypes['LogoutInput'];
28126
28229
  }
28127
- type IOutput$33 = InputType<GraphQLTypes['Mutation'], typeof mutation$2c>;
28230
+ type IOutput$34 = InputType<GraphQLTypes['Mutation'], typeof mutation$2d>;
28128
28231
 
28129
28232
  declare namespace logout {
28130
- export { type IInput$33 as IInput, type IOutput$33 as IOutput, mutation$2c as mutation, name$32 as name };
28233
+ export { type IInput$34 as IInput, type IOutput$34 as IOutput, mutation$2d as mutation, name$33 as name };
28131
28234
  }
28132
28235
 
28133
- declare const name$31 = "login";
28134
- declare const mutation$2b: {
28236
+ declare const name$32 = "login";
28237
+ declare const mutation$2c: {
28135
28238
  login: [{
28136
28239
  data: Variable<"LoginInput!", "data">;
28137
28240
  }, {
@@ -28327,17 +28430,17 @@ declare const mutation$2b: {
28327
28430
  };
28328
28431
  }];
28329
28432
  };
28330
- interface IInput$32 {
28433
+ interface IInput$33 {
28331
28434
  /**
28332
28435
  * @private
28333
28436
  */
28334
28437
  [key: string]: unknown;
28335
28438
  data: ModelTypes['LoginInput'];
28336
28439
  }
28337
- type IOutput$32 = InputType<GraphQLTypes['Mutation'], typeof mutation$2b>;
28440
+ type IOutput$33 = InputType<GraphQLTypes['Mutation'], typeof mutation$2c>;
28338
28441
 
28339
28442
  declare namespace login {
28340
- export { type IInput$32 as IInput, type IOutput$32 as IOutput, mutation$2b as mutation, name$31 as name };
28443
+ export { type IInput$33 as IInput, type IOutput$33 as IOutput, mutation$2c as mutation, name$32 as name };
28341
28444
  }
28342
28445
 
28343
28446
  /** Обновить токен доступа аккаунта */
@@ -28346,8 +28449,8 @@ declare namespace index$x {
28346
28449
  export { login as Login, logout as Logout, refresh as Refresh };
28347
28450
  }
28348
28451
 
28349
- declare const name$30 = "addTrustedAccount";
28350
- declare const mutation$2a: {
28452
+ declare const name$31 = "addTrustedAccount";
28453
+ declare const mutation$2b: {
28351
28454
  addTrustedAccount: [{
28352
28455
  data: Variable<"AddTrustedAccountInput!", "data">;
28353
28456
  }, {
@@ -28429,21 +28532,21 @@ declare const mutation$2a: {
28429
28532
  type: boolean;
28430
28533
  }];
28431
28534
  };
28432
- interface IInput$31 {
28535
+ interface IInput$32 {
28433
28536
  /**
28434
28537
  * @private
28435
28538
  */
28436
28539
  [key: string]: unknown;
28437
28540
  data: ModelTypes['AddTrustedAccountInput'];
28438
28541
  }
28439
- type IOutput$31 = InputType<GraphQLTypes['Mutation'], typeof mutation$2a>;
28542
+ type IOutput$32 = InputType<GraphQLTypes['Mutation'], typeof mutation$2b>;
28440
28543
 
28441
28544
  declare namespace addTrustedAccount {
28442
- export { type IInput$31 as IInput, type IOutput$31 as IOutput, mutation$2a as mutation, name$30 as name };
28545
+ export { type IInput$32 as IInput, type IOutput$32 as IOutput, mutation$2b as mutation, name$31 as name };
28443
28546
  }
28444
28547
 
28445
- declare const name$2$ = "createBranch";
28446
- declare const mutation$29: {
28548
+ declare const name$30 = "createBranch";
28549
+ declare const mutation$2a: {
28447
28550
  createBranch: [{
28448
28551
  data: Variable<"CreateBranchInput!", "data">;
28449
28552
  }, {
@@ -28525,40 +28628,40 @@ declare const mutation$29: {
28525
28628
  type: boolean;
28526
28629
  }];
28527
28630
  };
28528
- interface IInput$30 {
28631
+ interface IInput$31 {
28529
28632
  /**
28530
28633
  * @private
28531
28634
  */
28532
28635
  [key: string]: unknown;
28533
28636
  data: ModelTypes['CreateBranchInput'];
28534
28637
  }
28535
- type IOutput$30 = InputType<GraphQLTypes['Mutation'], typeof mutation$29>;
28638
+ type IOutput$31 = InputType<GraphQLTypes['Mutation'], typeof mutation$2a>;
28536
28639
 
28537
28640
  declare namespace createBranch {
28538
- export { type IInput$30 as IInput, type IOutput$30 as IOutput, mutation$29 as mutation, name$2$ as name };
28641
+ export { type IInput$31 as IInput, type IOutput$31 as IOutput, mutation$2a as mutation, name$30 as name };
28539
28642
  }
28540
28643
 
28541
- declare const name$2_ = "deleteBranch";
28542
- declare const mutation$28: {
28644
+ declare const name$2$ = "deleteBranch";
28645
+ declare const mutation$29: {
28543
28646
  deleteBranch: [{
28544
28647
  data: Variable<"DeleteBranchInput!", "data">;
28545
28648
  }, true];
28546
28649
  };
28547
- interface IInput$2$ {
28650
+ interface IInput$30 {
28548
28651
  /**
28549
28652
  * @private
28550
28653
  */
28551
28654
  [key: string]: unknown;
28552
28655
  data: ModelTypes['DeleteBranchInput'];
28553
28656
  }
28554
- type IOutput$2$ = InputType<GraphQLTypes['Mutation'], typeof mutation$28>;
28657
+ type IOutput$30 = InputType<GraphQLTypes['Mutation'], typeof mutation$29>;
28555
28658
 
28556
28659
  declare namespace deleteBranch {
28557
- export { type IInput$2$ as IInput, type IOutput$2$ as IOutput, mutation$28 as mutation, name$2_ as name };
28660
+ export { type IInput$30 as IInput, type IOutput$30 as IOutput, mutation$29 as mutation, name$2$ as name };
28558
28661
  }
28559
28662
 
28560
- declare const name$2Z = "deleteTrustedAccount";
28561
- declare const mutation$27: {
28663
+ declare const name$2_ = "deleteTrustedAccount";
28664
+ declare const mutation$28: {
28562
28665
  deleteTrustedAccount: [{
28563
28666
  data: Variable<"DeleteTrustedAccountInput!", "data">;
28564
28667
  }, {
@@ -28640,21 +28743,21 @@ declare const mutation$27: {
28640
28743
  type: boolean;
28641
28744
  }];
28642
28745
  };
28643
- interface IInput$2_ {
28746
+ interface IInput$2$ {
28644
28747
  /**
28645
28748
  * @private
28646
28749
  */
28647
28750
  [key: string]: unknown;
28648
28751
  data: ModelTypes['DeleteTrustedAccountInput'];
28649
28752
  }
28650
- type IOutput$2_ = InputType<GraphQLTypes['Mutation'], typeof mutation$27>;
28753
+ type IOutput$2$ = InputType<GraphQLTypes['Mutation'], typeof mutation$28>;
28651
28754
 
28652
28755
  declare namespace deleteTrustedAccount {
28653
- export { type IInput$2_ as IInput, type IOutput$2_ as IOutput, mutation$27 as mutation, name$2Z as name };
28756
+ export { type IInput$2$ as IInput, type IOutput$2$ as IOutput, mutation$28 as mutation, name$2_ as name };
28654
28757
  }
28655
28758
 
28656
- declare const name$2Y = "editBranch";
28657
- declare const mutation$26: {
28759
+ declare const name$2Z = "editBranch";
28760
+ declare const mutation$27: {
28658
28761
  editBranch: [{
28659
28762
  data: Variable<"EditBranchInput!", "data">;
28660
28763
  }, {
@@ -28736,21 +28839,21 @@ declare const mutation$26: {
28736
28839
  type: boolean;
28737
28840
  }];
28738
28841
  };
28739
- interface IInput$2Z {
28842
+ interface IInput$2_ {
28740
28843
  /**
28741
28844
  * @private
28742
28845
  */
28743
28846
  [key: string]: unknown;
28744
28847
  data: ModelTypes['EditBranchInput'];
28745
28848
  }
28746
- type IOutput$2Z = InputType<GraphQLTypes['Mutation'], typeof mutation$26>;
28849
+ type IOutput$2_ = InputType<GraphQLTypes['Mutation'], typeof mutation$27>;
28747
28850
 
28748
28851
  declare namespace editBranch {
28749
- export { type IInput$2Z as IInput, type IOutput$2Z as IOutput, mutation$26 as mutation, name$2Y as name };
28852
+ export { type IInput$2_ as IInput, type IOutput$2_ as IOutput, mutation$27 as mutation, name$2Z as name };
28750
28853
  }
28751
28854
 
28752
- declare const name$2X = "generateSelectBranchDocument";
28753
- declare const mutation$25: {
28855
+ declare const name$2Y = "generateSelectBranchDocument";
28856
+ declare const mutation$26: {
28754
28857
  generateSelectBranchDocument: [{
28755
28858
  data: Variable<"SelectBranchGenerateDocumentInput!", "data">;
28756
28859
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -28762,7 +28865,7 @@ declare const mutation$25: {
28762
28865
  meta: boolean;
28763
28866
  }];
28764
28867
  };
28765
- interface IInput$2Y {
28868
+ interface IInput$2Z {
28766
28869
  /**
28767
28870
  * @private
28768
28871
  */
@@ -28770,29 +28873,29 @@ interface IInput$2Y {
28770
28873
  data: ModelTypes['SelectBranchGenerateDocumentInput'];
28771
28874
  options?: ModelTypes['GenerateDocumentOptionsInput'];
28772
28875
  }
28773
- type IOutput$2Y = InputType<GraphQLTypes['Mutation'], typeof mutation$25>;
28876
+ type IOutput$2Z = InputType<GraphQLTypes['Mutation'], typeof mutation$26>;
28774
28877
 
28775
28878
  declare namespace generateSelectBranchDocument {
28776
- export { type IInput$2Y as IInput, type IOutput$2Y as IOutput, mutation$25 as mutation, name$2X as name };
28879
+ export { type IInput$2Z as IInput, type IOutput$2Z as IOutput, mutation$26 as mutation, name$2Y as name };
28777
28880
  }
28778
28881
 
28779
- declare const name$2W = "selectBranch";
28780
- declare const mutation$24: {
28882
+ declare const name$2X = "selectBranch";
28883
+ declare const mutation$25: {
28781
28884
  selectBranch: [{
28782
28885
  data: Variable<"SelectBranchInput!", "data">;
28783
28886
  }, true];
28784
28887
  };
28785
- interface IInput$2X {
28888
+ interface IInput$2Y {
28786
28889
  /**
28787
28890
  * @private
28788
28891
  */
28789
28892
  [key: string]: unknown;
28790
28893
  data: ModelTypes['SelectBranchInput'];
28791
28894
  }
28792
- type IOutput$2X = InputType<GraphQLTypes['Mutation'], typeof mutation$24>;
28895
+ type IOutput$2Y = InputType<GraphQLTypes['Mutation'], typeof mutation$25>;
28793
28896
 
28794
28897
  declare namespace selectBranch {
28795
- export { type IInput$2X as IInput, type IOutput$2X as IOutput, mutation$24 as mutation, name$2W as name };
28898
+ export { type IInput$2Y as IInput, type IOutput$2Y as IOutput, mutation$25 as mutation, name$2X as name };
28796
28899
  }
28797
28900
 
28798
28901
  /** Добавить доверенное лицо кооперативного участка */
@@ -28801,8 +28904,8 @@ declare namespace index$w {
28801
28904
  export { addTrustedAccount as AddTrustedAccount, createBranch as CreateBranch, deleteBranch as DeleteBranch, deleteTrustedAccount as DeleteTrustedAccount, editBranch as EditBranch, generateSelectBranchDocument as GenerateSelectBranchDocument, selectBranch as SelectBranch };
28802
28905
  }
28803
28906
 
28804
- declare const name$2V = "capitalSetConfig";
28805
- declare const mutation$23: {
28907
+ declare const name$2W = "capitalSetConfig";
28908
+ declare const mutation$24: {
28806
28909
  capitalSetConfig: [{
28807
28910
  data: Variable<"SetConfigInput!", "data">;
28808
28911
  }, {
@@ -28817,21 +28920,21 @@ declare const mutation$23: {
28817
28920
  transaction: boolean;
28818
28921
  }];
28819
28922
  };
28820
- interface IInput$2W {
28923
+ interface IInput$2X {
28821
28924
  /**
28822
28925
  * @private
28823
28926
  */
28824
28927
  [key: string]: unknown;
28825
28928
  data: ModelTypes['SetConfigInput'];
28826
28929
  }
28827
- type IOutput$2W = InputType<GraphQLTypes['Mutation'], typeof mutation$23>;
28930
+ type IOutput$2X = InputType<GraphQLTypes['Mutation'], typeof mutation$24>;
28828
28931
 
28829
28932
  declare namespace setConfig {
28830
- export { type IInput$2W as IInput, type IOutput$2W as IOutput, mutation$23 as mutation, name$2V as name };
28933
+ export { type IInput$2X as IInput, type IOutput$2X as IOutput, mutation$24 as mutation, name$2W as name };
28831
28934
  }
28832
28935
 
28833
- declare const name$2U = "capitalCreateProject";
28834
- declare const mutation$22: {
28936
+ declare const name$2V = "capitalCreateProject";
28937
+ declare const mutation$23: {
28835
28938
  capitalCreateProject: [{
28836
28939
  data: Variable<"CreateProjectInput!", "data">;
28837
28940
  }, {
@@ -28846,21 +28949,21 @@ declare const mutation$22: {
28846
28949
  transaction: boolean;
28847
28950
  }];
28848
28951
  };
28849
- interface IInput$2V {
28952
+ interface IInput$2W {
28850
28953
  /**
28851
28954
  * @private
28852
28955
  */
28853
28956
  [key: string]: unknown;
28854
28957
  data: ModelTypes['CreateProjectInput'];
28855
28958
  }
28856
- type IOutput$2V = InputType<GraphQLTypes['Mutation'], typeof mutation$22>;
28959
+ type IOutput$2W = InputType<GraphQLTypes['Mutation'], typeof mutation$23>;
28857
28960
 
28858
28961
  declare namespace createProject {
28859
- export { type IInput$2V as IInput, type IOutput$2V as IOutput, mutation$22 as mutation, name$2U as name };
28962
+ export { type IInput$2W as IInput, type IOutput$2W as IOutput, mutation$23 as mutation, name$2V as name };
28860
28963
  }
28861
28964
 
28862
- declare const name$2T = "capitalCreateDebt";
28863
- declare const mutation$21: {
28965
+ declare const name$2U = "capitalCreateDebt";
28966
+ declare const mutation$22: {
28864
28967
  capitalCreateDebt: [{
28865
28968
  data: Variable<"CreateDebtInput!", "data">;
28866
28969
  }, {
@@ -28875,21 +28978,21 @@ declare const mutation$21: {
28875
28978
  transaction: boolean;
28876
28979
  }];
28877
28980
  };
28878
- interface IInput$2U {
28981
+ interface IInput$2V {
28879
28982
  /**
28880
28983
  * @private
28881
28984
  */
28882
28985
  [key: string]: unknown;
28883
28986
  data: ModelTypes['CreateDebtInput'];
28884
28987
  }
28885
- type IOutput$2U = InputType<GraphQLTypes['Mutation'], typeof mutation$21>;
28988
+ type IOutput$2V = InputType<GraphQLTypes['Mutation'], typeof mutation$22>;
28886
28989
 
28887
28990
  declare namespace createDebt {
28888
- export { type IInput$2U as IInput, type IOutput$2U as IOutput, mutation$21 as mutation, name$2T as name };
28991
+ export { type IInput$2V as IInput, type IOutput$2V as IOutput, mutation$22 as mutation, name$2U as name };
28889
28992
  }
28890
28993
 
28891
- declare const name$2S = "capitalFundProgram";
28892
- declare const mutation$20: {
28994
+ declare const name$2T = "capitalFundProgram";
28995
+ declare const mutation$21: {
28893
28996
  capitalFundProgram: [{
28894
28997
  data: Variable<"FundProgramInput!", "data">;
28895
28998
  }, {
@@ -28904,21 +29007,21 @@ declare const mutation$20: {
28904
29007
  transaction: boolean;
28905
29008
  }];
28906
29009
  };
28907
- interface IInput$2T {
29010
+ interface IInput$2U {
28908
29011
  /**
28909
29012
  * @private
28910
29013
  */
28911
29014
  [key: string]: unknown;
28912
29015
  data: ModelTypes['FundProgramInput'];
28913
29016
  }
28914
- type IOutput$2T = InputType<GraphQLTypes['Mutation'], typeof mutation$20>;
29017
+ type IOutput$2U = InputType<GraphQLTypes['Mutation'], typeof mutation$21>;
28915
29018
 
28916
29019
  declare namespace fundProgram {
28917
- export { type IInput$2T as IInput, type IOutput$2T as IOutput, mutation$20 as mutation, name$2S as name };
29020
+ export { type IInput$2U as IInput, type IOutput$2U as IOutput, mutation$21 as mutation, name$2T as name };
28918
29021
  }
28919
29022
 
28920
- declare const name$2R = "capitalFundProject";
28921
- declare const mutation$1$: {
29023
+ declare const name$2S = "capitalFundProject";
29024
+ declare const mutation$20: {
28922
29025
  capitalFundProject: [{
28923
29026
  data: Variable<"FundProjectInput!", "data">;
28924
29027
  }, {
@@ -28933,21 +29036,21 @@ declare const mutation$1$: {
28933
29036
  transaction: boolean;
28934
29037
  }];
28935
29038
  };
28936
- interface IInput$2S {
29039
+ interface IInput$2T {
28937
29040
  /**
28938
29041
  * @private
28939
29042
  */
28940
29043
  [key: string]: unknown;
28941
29044
  data: ModelTypes['FundProjectInput'];
28942
29045
  }
28943
- type IOutput$2S = InputType<GraphQLTypes['Mutation'], typeof mutation$1$>;
29046
+ type IOutput$2T = InputType<GraphQLTypes['Mutation'], typeof mutation$20>;
28944
29047
 
28945
29048
  declare namespace fundProject {
28946
- export { type IInput$2S as IInput, type IOutput$2S as IOutput, mutation$1$ as mutation, name$2R as name };
29049
+ export { type IInput$2T as IInput, type IOutput$2T as IOutput, mutation$20 as mutation, name$2S as name };
28947
29050
  }
28948
29051
 
28949
- declare const name$2Q = "capitalRefreshProgram";
28950
- declare const mutation$1_: {
29052
+ declare const name$2R = "capitalRefreshProgram";
29053
+ declare const mutation$1$: {
28951
29054
  capitalRefreshProgram: [{
28952
29055
  data: Variable<"RefreshProgramInput!", "data">;
28953
29056
  }, {
@@ -28962,21 +29065,21 @@ declare const mutation$1_: {
28962
29065
  transaction: boolean;
28963
29066
  }];
28964
29067
  };
28965
- interface IInput$2R {
29068
+ interface IInput$2S {
28966
29069
  /**
28967
29070
  * @private
28968
29071
  */
28969
29072
  [key: string]: unknown;
28970
29073
  data: ModelTypes['RefreshProgramInput'];
28971
29074
  }
28972
- type IOutput$2R = InputType<GraphQLTypes['Mutation'], typeof mutation$1_>;
29075
+ type IOutput$2S = InputType<GraphQLTypes['Mutation'], typeof mutation$1$>;
28973
29076
 
28974
29077
  declare namespace refreshProgram {
28975
- export { type IInput$2R as IInput, type IOutput$2R as IOutput, mutation$1_ as mutation, name$2Q as name };
29078
+ export { type IInput$2S as IInput, type IOutput$2S as IOutput, mutation$1$ as mutation, name$2R as name };
28976
29079
  }
28977
29080
 
28978
- declare const name$2P = "capitalRefreshProject";
28979
- declare const mutation$1Z: {
29081
+ declare const name$2Q = "capitalRefreshProject";
29082
+ declare const mutation$1_: {
28980
29083
  capitalRefreshProject: [{
28981
29084
  data: Variable<"RefreshProjectInput!", "data">;
28982
29085
  }, {
@@ -28991,21 +29094,21 @@ declare const mutation$1Z: {
28991
29094
  transaction: boolean;
28992
29095
  }];
28993
29096
  };
28994
- interface IInput$2Q {
29097
+ interface IInput$2R {
28995
29098
  /**
28996
29099
  * @private
28997
29100
  */
28998
29101
  [key: string]: unknown;
28999
29102
  data: ModelTypes['RefreshProjectInput'];
29000
29103
  }
29001
- type IOutput$2Q = InputType<GraphQLTypes['Mutation'], typeof mutation$1Z>;
29104
+ type IOutput$2R = InputType<GraphQLTypes['Mutation'], typeof mutation$1_>;
29002
29105
 
29003
29106
  declare namespace refreshProject {
29004
- export { type IInput$2Q as IInput, type IOutput$2Q as IOutput, mutation$1Z as mutation, name$2P as name };
29107
+ export { type IInput$2R as IInput, type IOutput$2R as IOutput, mutation$1_ as mutation, name$2Q as name };
29005
29108
  }
29006
29109
 
29007
- declare const name$2O = "capitalCreateCommit";
29008
- declare const mutation$1Y: {
29110
+ declare const name$2P = "capitalCreateCommit";
29111
+ declare const mutation$1Z: {
29009
29112
  capitalCreateCommit: [{
29010
29113
  data: Variable<"CreateCommitInput!", "data">;
29011
29114
  }, {
@@ -29020,21 +29123,21 @@ declare const mutation$1Y: {
29020
29123
  transaction: boolean;
29021
29124
  }];
29022
29125
  };
29023
- interface IInput$2P {
29126
+ interface IInput$2Q {
29024
29127
  /**
29025
29128
  * @private
29026
29129
  */
29027
29130
  [key: string]: unknown;
29028
29131
  data: ModelTypes['CreateCommitInput'];
29029
29132
  }
29030
- type IOutput$2P = InputType<GraphQLTypes['Mutation'], typeof mutation$1Y>;
29133
+ type IOutput$2Q = InputType<GraphQLTypes['Mutation'], typeof mutation$1Z>;
29031
29134
 
29032
29135
  declare namespace createCommit {
29033
- export { type IInput$2P as IInput, type IOutput$2P as IOutput, mutation$1Y as mutation, name$2O as name };
29136
+ export { type IInput$2Q as IInput, type IOutput$2Q as IOutput, mutation$1Z as mutation, name$2P as name };
29034
29137
  }
29035
29138
 
29036
- declare const name$2N = "capitalApproveCommit";
29037
- declare const mutation$1X: {
29139
+ declare const name$2O = "capitalApproveCommit";
29140
+ declare const mutation$1Y: {
29038
29141
  capitalApproveCommit: [{
29039
29142
  data: Variable<"CommitApproveInput!", "data">;
29040
29143
  }, {
@@ -29189,21 +29292,21 @@ declare const mutation$1X: {
29189
29292
  _updated_at: boolean;
29190
29293
  }];
29191
29294
  };
29192
- interface IInput$2O {
29295
+ interface IInput$2P {
29193
29296
  /**
29194
29297
  * @private
29195
29298
  */
29196
29299
  [key: string]: unknown;
29197
29300
  data: ModelTypes['CommitApproveInput'];
29198
29301
  }
29199
- type IOutput$2O = InputType<GraphQLTypes['Mutation'], typeof mutation$1X>;
29302
+ type IOutput$2P = InputType<GraphQLTypes['Mutation'], typeof mutation$1Y>;
29200
29303
 
29201
29304
  declare namespace approveCommit {
29202
- export { type IInput$2O as IInput, type IOutput$2O as IOutput, mutation$1X as mutation, name$2N as name };
29305
+ export { type IInput$2P as IInput, type IOutput$2P as IOutput, mutation$1Y as mutation, name$2O as name };
29203
29306
  }
29204
29307
 
29205
- declare const name$2M = "capitalDeclineCommit";
29206
- declare const mutation$1W: {
29308
+ declare const name$2N = "capitalDeclineCommit";
29309
+ declare const mutation$1X: {
29207
29310
  capitalDeclineCommit: [{
29208
29311
  data: Variable<"CommitDeclineInput!", "data">;
29209
29312
  }, {
@@ -29358,21 +29461,21 @@ declare const mutation$1W: {
29358
29461
  _updated_at: boolean;
29359
29462
  }];
29360
29463
  };
29361
- interface IInput$2N {
29464
+ interface IInput$2O {
29362
29465
  /**
29363
29466
  * @private
29364
29467
  */
29365
29468
  [key: string]: unknown;
29366
29469
  data: ModelTypes['CommitDeclineInput'];
29367
29470
  }
29368
- type IOutput$2N = InputType<GraphQLTypes['Mutation'], typeof mutation$1W>;
29471
+ type IOutput$2O = InputType<GraphQLTypes['Mutation'], typeof mutation$1X>;
29369
29472
 
29370
29473
  declare namespace declineCommit {
29371
- export { type IInput$2N as IInput, type IOutput$2N as IOutput, mutation$1W as mutation, name$2M as name };
29474
+ export { type IInput$2O as IInput, type IOutput$2O as IOutput, mutation$1X as mutation, name$2N as name };
29372
29475
  }
29373
29476
 
29374
- declare const name$2L = "capitalRefreshSegment";
29375
- declare const mutation$1V: {
29477
+ declare const name$2M = "capitalRefreshSegment";
29478
+ declare const mutation$1W: {
29376
29479
  capitalRefreshSegment: [{
29377
29480
  data: Variable<"RefreshSegmentInput!", "data">;
29378
29481
  }, {
@@ -29612,21 +29715,21 @@ declare const mutation$1V: {
29612
29715
  _updated_at: boolean;
29613
29716
  }];
29614
29717
  };
29615
- interface IInput$2M {
29718
+ interface IInput$2N {
29616
29719
  /**
29617
29720
  * @private
29618
29721
  */
29619
29722
  [key: string]: unknown;
29620
29723
  data: ModelTypes['RefreshSegmentInput'];
29621
29724
  }
29622
- type IOutput$2M = InputType<GraphQLTypes['Mutation'], typeof mutation$1V>;
29725
+ type IOutput$2N = InputType<GraphQLTypes['Mutation'], typeof mutation$1W>;
29623
29726
 
29624
29727
  declare namespace refreshSegment {
29625
- export { type IInput$2M as IInput, type IOutput$2M as IOutput, mutation$1V as mutation, name$2L as name };
29728
+ export { type IInput$2N as IInput, type IOutput$2N as IOutput, mutation$1W as mutation, name$2M as name };
29626
29729
  }
29627
29730
 
29628
- declare const name$2K = "capitalCreateProjectInvest";
29629
- declare const mutation$1U: {
29731
+ declare const name$2L = "capitalCreateProjectInvest";
29732
+ declare const mutation$1V: {
29630
29733
  capitalCreateProjectInvest: [{
29631
29734
  data: Variable<"CreateProjectInvestInput!", "data">;
29632
29735
  }, {
@@ -29641,21 +29744,21 @@ declare const mutation$1U: {
29641
29744
  transaction: boolean;
29642
29745
  }];
29643
29746
  };
29644
- interface IInput$2L {
29747
+ interface IInput$2M {
29645
29748
  /**
29646
29749
  * @private
29647
29750
  */
29648
29751
  [key: string]: unknown;
29649
29752
  data: ModelTypes['CreateProjectInvestInput'];
29650
29753
  }
29651
- type IOutput$2L = InputType<GraphQLTypes['Mutation'], typeof mutation$1U>;
29754
+ type IOutput$2M = InputType<GraphQLTypes['Mutation'], typeof mutation$1V>;
29652
29755
 
29653
29756
  declare namespace createProjectInvest {
29654
- export { type IInput$2L as IInput, type IOutput$2L as IOutput, mutation$1U as mutation, name$2K as name };
29757
+ export { type IInput$2M as IInput, type IOutput$2M as IOutput, mutation$1V as mutation, name$2L as name };
29655
29758
  }
29656
29759
 
29657
- declare const name$2J = "capitalRegisterContributor";
29658
- declare const mutation$1T: {
29760
+ declare const name$2K = "capitalRegisterContributor";
29761
+ declare const mutation$1U: {
29659
29762
  capitalRegisterContributor: [{
29660
29763
  data: Variable<"RegisterContributorInput!", "data">;
29661
29764
  }, {
@@ -29670,21 +29773,21 @@ declare const mutation$1T: {
29670
29773
  transaction: boolean;
29671
29774
  }];
29672
29775
  };
29673
- interface IInput$2K {
29776
+ interface IInput$2L {
29674
29777
  /**
29675
29778
  * @private
29676
29779
  */
29677
29780
  [key: string]: unknown;
29678
29781
  data: ModelTypes['RegisterContributorInput'];
29679
29782
  }
29680
- type IOutput$2K = InputType<GraphQLTypes['Mutation'], typeof mutation$1T>;
29783
+ type IOutput$2L = InputType<GraphQLTypes['Mutation'], typeof mutation$1U>;
29681
29784
 
29682
29785
  declare namespace registerContributor {
29683
- export { type IInput$2K as IInput, type IOutput$2K as IOutput, mutation$1T as mutation, name$2J as name };
29786
+ export { type IInput$2L as IInput, type IOutput$2L as IOutput, mutation$1U as mutation, name$2K as name };
29684
29787
  }
29685
29788
 
29686
- declare const name$2I = "capitalImportContributor";
29687
- declare const mutation$1S: {
29789
+ declare const name$2J = "capitalImportContributor";
29790
+ declare const mutation$1T: {
29688
29791
  capitalImportContributor: [{
29689
29792
  data: Variable<"ImportContributorInput!", "data">;
29690
29793
  }, {
@@ -29699,21 +29802,21 @@ declare const mutation$1S: {
29699
29802
  transaction: boolean;
29700
29803
  }];
29701
29804
  };
29702
- interface IInput$2J {
29805
+ interface IInput$2K {
29703
29806
  /**
29704
29807
  * @private
29705
29808
  */
29706
29809
  [key: string]: unknown;
29707
29810
  data: ModelTypes['ImportContributorInput'];
29708
29811
  }
29709
- type IOutput$2J = InputType<GraphQLTypes['Mutation'], typeof mutation$1S>;
29812
+ type IOutput$2K = InputType<GraphQLTypes['Mutation'], typeof mutation$1T>;
29710
29813
 
29711
29814
  declare namespace importContributor {
29712
- export { type IInput$2J as IInput, type IOutput$2J as IOutput, mutation$1S as mutation, name$2I as name };
29815
+ export { type IInput$2K as IInput, type IOutput$2K as IOutput, mutation$1T as mutation, name$2J as name };
29713
29816
  }
29714
29817
 
29715
- declare const name$2H = "capitalMakeClearance";
29716
- declare const mutation$1R: {
29818
+ declare const name$2I = "capitalMakeClearance";
29819
+ declare const mutation$1S: {
29717
29820
  capitalMakeClearance: [{
29718
29821
  data: Variable<"MakeClearanceInput!", "data">;
29719
29822
  }, {
@@ -29728,21 +29831,21 @@ declare const mutation$1R: {
29728
29831
  transaction: boolean;
29729
29832
  }];
29730
29833
  };
29731
- interface IInput$2I {
29834
+ interface IInput$2J {
29732
29835
  /**
29733
29836
  * @private
29734
29837
  */
29735
29838
  [key: string]: unknown;
29736
29839
  data: ModelTypes['MakeClearanceInput'];
29737
29840
  }
29738
- type IOutput$2I = InputType<GraphQLTypes['Mutation'], typeof mutation$1R>;
29841
+ type IOutput$2J = InputType<GraphQLTypes['Mutation'], typeof mutation$1S>;
29739
29842
 
29740
29843
  declare namespace makeClearance {
29741
- export { type IInput$2I as IInput, type IOutput$2I as IOutput, mutation$1R as mutation, name$2H as name };
29844
+ export { type IInput$2J as IInput, type IOutput$2J as IOutput, mutation$1S as mutation, name$2I as name };
29742
29845
  }
29743
29846
 
29744
- declare const name$2G = "capitalSetMaster";
29745
- declare const mutation$1Q: {
29847
+ declare const name$2H = "capitalSetMaster";
29848
+ declare const mutation$1R: {
29746
29849
  capitalSetMaster: [{
29747
29850
  data: Variable<"SetMasterInput!", "data">;
29748
29851
  }, {
@@ -29757,21 +29860,21 @@ declare const mutation$1Q: {
29757
29860
  transaction: boolean;
29758
29861
  }];
29759
29862
  };
29760
- interface IInput$2H {
29863
+ interface IInput$2I {
29761
29864
  /**
29762
29865
  * @private
29763
29866
  */
29764
29867
  [key: string]: unknown;
29765
29868
  data: ModelTypes['SetMasterInput'];
29766
29869
  }
29767
- type IOutput$2H = InputType<GraphQLTypes['Mutation'], typeof mutation$1Q>;
29870
+ type IOutput$2I = InputType<GraphQLTypes['Mutation'], typeof mutation$1R>;
29768
29871
 
29769
29872
  declare namespace setMaster {
29770
- export { type IInput$2H as IInput, type IOutput$2H as IOutput, mutation$1Q as mutation, name$2G as name };
29873
+ export { type IInput$2I as IInput, type IOutput$2I as IOutput, mutation$1R as mutation, name$2H as name };
29771
29874
  }
29772
29875
 
29773
- declare const name$2F = "capitalAddAuthor";
29774
- declare const mutation$1P: {
29876
+ declare const name$2G = "capitalAddAuthor";
29877
+ declare const mutation$1Q: {
29775
29878
  capitalAddAuthor: [{
29776
29879
  data: Variable<"AddAuthorInput!", "data">;
29777
29880
  }, {
@@ -30019,21 +30122,21 @@ declare const mutation$1P: {
30019
30122
  _updated_at: boolean;
30020
30123
  }];
30021
30124
  };
30022
- interface IInput$2G {
30125
+ interface IInput$2H {
30023
30126
  /**
30024
30127
  * @private
30025
30128
  */
30026
30129
  [key: string]: unknown;
30027
30130
  data: ModelTypes['AddAuthorInput'];
30028
30131
  }
30029
- type IOutput$2G = InputType<GraphQLTypes['Mutation'], typeof mutation$1P>;
30132
+ type IOutput$2H = InputType<GraphQLTypes['Mutation'], typeof mutation$1Q>;
30030
30133
 
30031
30134
  declare namespace addAuthor {
30032
- export { type IInput$2G as IInput, type IOutput$2G as IOutput, mutation$1P as mutation, name$2F as name };
30135
+ export { type IInput$2H as IInput, type IOutput$2H as IOutput, mutation$1Q as mutation, name$2G as name };
30033
30136
  }
30034
30137
 
30035
- declare const name$2E = "capitalSetPlan";
30036
- declare const mutation$1O: {
30138
+ declare const name$2F = "capitalSetPlan";
30139
+ declare const mutation$1P: {
30037
30140
  capitalSetPlan: [{
30038
30141
  data: Variable<"SetPlanInput!", "data">;
30039
30142
  }, {
@@ -30281,21 +30384,21 @@ declare const mutation$1O: {
30281
30384
  _updated_at: boolean;
30282
30385
  }];
30283
30386
  };
30284
- interface IInput$2F {
30387
+ interface IInput$2G {
30285
30388
  /**
30286
30389
  * @private
30287
30390
  */
30288
30391
  [key: string]: unknown;
30289
30392
  data: ModelTypes['SetPlanInput'];
30290
30393
  }
30291
- type IOutput$2F = InputType<GraphQLTypes['Mutation'], typeof mutation$1O>;
30394
+ type IOutput$2G = InputType<GraphQLTypes['Mutation'], typeof mutation$1P>;
30292
30395
 
30293
30396
  declare namespace setPlan {
30294
- export { type IInput$2F as IInput, type IOutput$2F as IOutput, mutation$1O as mutation, name$2E as name };
30397
+ export { type IInput$2G as IInput, type IOutput$2G as IOutput, mutation$1P as mutation, name$2F as name };
30295
30398
  }
30296
30399
 
30297
- declare const name$2D = "capitalStartProject";
30298
- declare const mutation$1N: {
30400
+ declare const name$2E = "capitalStartProject";
30401
+ declare const mutation$1O: {
30299
30402
  capitalStartProject: [{
30300
30403
  data: Variable<"StartProjectInput!", "data">;
30301
30404
  }, {
@@ -30543,21 +30646,21 @@ declare const mutation$1N: {
30543
30646
  _updated_at: boolean;
30544
30647
  }];
30545
30648
  };
30546
- interface IInput$2E {
30649
+ interface IInput$2F {
30547
30650
  /**
30548
30651
  * @private
30549
30652
  */
30550
30653
  [key: string]: unknown;
30551
30654
  data: ModelTypes['StartProjectInput'];
30552
30655
  }
30553
- type IOutput$2E = InputType<GraphQLTypes['Mutation'], typeof mutation$1N>;
30656
+ type IOutput$2F = InputType<GraphQLTypes['Mutation'], typeof mutation$1O>;
30554
30657
 
30555
30658
  declare namespace startProject {
30556
- export { type IInput$2E as IInput, type IOutput$2E as IOutput, mutation$1N as mutation, name$2D as name };
30659
+ export { type IInput$2F as IInput, type IOutput$2F as IOutput, mutation$1O as mutation, name$2E as name };
30557
30660
  }
30558
30661
 
30559
- declare const name$2C = "capitalOpenProject";
30560
- declare const mutation$1M: {
30662
+ declare const name$2D = "capitalOpenProject";
30663
+ declare const mutation$1N: {
30561
30664
  capitalOpenProject: [{
30562
30665
  data: Variable<"OpenProjectInput!", "data">;
30563
30666
  }, {
@@ -30805,21 +30908,21 @@ declare const mutation$1M: {
30805
30908
  _updated_at: boolean;
30806
30909
  }];
30807
30910
  };
30808
- interface IInput$2D {
30911
+ interface IInput$2E {
30809
30912
  /**
30810
30913
  * @private
30811
30914
  */
30812
30915
  [key: string]: unknown;
30813
30916
  data: ModelTypes['OpenProjectInput'];
30814
30917
  }
30815
- type IOutput$2D = InputType<GraphQLTypes['Mutation'], typeof mutation$1M>;
30918
+ type IOutput$2E = InputType<GraphQLTypes['Mutation'], typeof mutation$1N>;
30816
30919
 
30817
30920
  declare namespace openProject {
30818
- export { type IInput$2D as IInput, type IOutput$2D as IOutput, mutation$1M as mutation, name$2C as name };
30921
+ export { type IInput$2E as IInput, type IOutput$2E as IOutput, mutation$1N as mutation, name$2D as name };
30819
30922
  }
30820
30923
 
30821
- declare const name$2B = "capitalCloseProject";
30822
- declare const mutation$1L: {
30924
+ declare const name$2C = "capitalCloseProject";
30925
+ declare const mutation$1M: {
30823
30926
  capitalCloseProject: [{
30824
30927
  data: Variable<"CloseProjectInput!", "data">;
30825
30928
  }, {
@@ -31067,21 +31170,21 @@ declare const mutation$1L: {
31067
31170
  _updated_at: boolean;
31068
31171
  }];
31069
31172
  };
31070
- interface IInput$2C {
31173
+ interface IInput$2D {
31071
31174
  /**
31072
31175
  * @private
31073
31176
  */
31074
31177
  [key: string]: unknown;
31075
31178
  data: ModelTypes['CloseProjectInput'];
31076
31179
  }
31077
- type IOutput$2C = InputType<GraphQLTypes['Mutation'], typeof mutation$1L>;
31180
+ type IOutput$2D = InputType<GraphQLTypes['Mutation'], typeof mutation$1M>;
31078
31181
 
31079
31182
  declare namespace closeProject {
31080
- export { type IInput$2C as IInput, type IOutput$2C as IOutput, mutation$1L as mutation, name$2B as name };
31183
+ export { type IInput$2D as IInput, type IOutput$2D as IOutput, mutation$1M as mutation, name$2C as name };
31081
31184
  }
31082
31185
 
31083
- declare const name$2A = "capitalStopProject";
31084
- declare const mutation$1K: {
31186
+ declare const name$2B = "capitalStopProject";
31187
+ declare const mutation$1L: {
31085
31188
  capitalStopProject: [{
31086
31189
  data: Variable<"StopProjectInput!", "data">;
31087
31190
  }, {
@@ -31329,21 +31432,21 @@ declare const mutation$1K: {
31329
31432
  _updated_at: boolean;
31330
31433
  }];
31331
31434
  };
31332
- interface IInput$2B {
31435
+ interface IInput$2C {
31333
31436
  /**
31334
31437
  * @private
31335
31438
  */
31336
31439
  [key: string]: unknown;
31337
31440
  data: ModelTypes['StopProjectInput'];
31338
31441
  }
31339
- type IOutput$2B = InputType<GraphQLTypes['Mutation'], typeof mutation$1K>;
31442
+ type IOutput$2C = InputType<GraphQLTypes['Mutation'], typeof mutation$1L>;
31340
31443
 
31341
31444
  declare namespace stopProject {
31342
- export { type IInput$2B as IInput, type IOutput$2B as IOutput, mutation$1K as mutation, name$2A as name };
31445
+ export { type IInput$2C as IInput, type IOutput$2C as IOutput, mutation$1L as mutation, name$2B as name };
31343
31446
  }
31344
31447
 
31345
- declare const name$2z = "capitalDeleteProject";
31346
- declare const mutation$1J: {
31448
+ declare const name$2A = "capitalDeleteProject";
31449
+ declare const mutation$1K: {
31347
31450
  capitalDeleteProject: [{
31348
31451
  data: Variable<"DeleteProjectInput!", "data">;
31349
31452
  }, {
@@ -31358,21 +31461,21 @@ declare const mutation$1J: {
31358
31461
  transaction: boolean;
31359
31462
  }];
31360
31463
  };
31361
- interface IInput$2A {
31464
+ interface IInput$2B {
31362
31465
  /**
31363
31466
  * @private
31364
31467
  */
31365
31468
  [key: string]: unknown;
31366
31469
  data: ModelTypes['DeleteProjectInput'];
31367
31470
  }
31368
- type IOutput$2A = InputType<GraphQLTypes['Mutation'], typeof mutation$1J>;
31471
+ type IOutput$2B = InputType<GraphQLTypes['Mutation'], typeof mutation$1K>;
31369
31472
 
31370
31473
  declare namespace deleteProject {
31371
- export { type IInput$2A as IInput, type IOutput$2A as IOutput, mutation$1J as mutation, name$2z as name };
31474
+ export { type IInput$2B as IInput, type IOutput$2B as IOutput, mutation$1K as mutation, name$2A as name };
31372
31475
  }
31373
31476
 
31374
- declare const name$2y = "capitalEditProject";
31375
- declare const mutation$1I: {
31477
+ declare const name$2z = "capitalEditProject";
31478
+ declare const mutation$1J: {
31376
31479
  capitalEditProject: [{
31377
31480
  data: Variable<"EditProjectInput!", "data">;
31378
31481
  }, {
@@ -31387,21 +31490,21 @@ declare const mutation$1I: {
31387
31490
  transaction: boolean;
31388
31491
  }];
31389
31492
  };
31390
- interface IInput$2z {
31493
+ interface IInput$2A {
31391
31494
  /**
31392
31495
  * @private
31393
31496
  */
31394
31497
  [key: string]: unknown;
31395
31498
  data: ModelTypes['EditProjectInput'];
31396
31499
  }
31397
- type IOutput$2z = InputType<GraphQLTypes['Mutation'], typeof mutation$1I>;
31500
+ type IOutput$2A = InputType<GraphQLTypes['Mutation'], typeof mutation$1J>;
31398
31501
 
31399
31502
  declare namespace editProject {
31400
- export { type IInput$2z as IInput, type IOutput$2z as IOutput, mutation$1I as mutation, name$2y as name };
31503
+ export { type IInput$2A as IInput, type IOutput$2A as IOutput, mutation$1J as mutation, name$2z as name };
31401
31504
  }
31402
31505
 
31403
- declare const name$2x = "capitalCreateProjectProperty";
31404
- declare const mutation$1H: {
31506
+ declare const name$2y = "capitalCreateProjectProperty";
31507
+ declare const mutation$1I: {
31405
31508
  capitalCreateProjectProperty: [{
31406
31509
  data: Variable<"CreateProjectPropertyInput!", "data">;
31407
31510
  }, {
@@ -31416,21 +31519,21 @@ declare const mutation$1H: {
31416
31519
  transaction: boolean;
31417
31520
  }];
31418
31521
  };
31419
- interface IInput$2y {
31522
+ interface IInput$2z {
31420
31523
  /**
31421
31524
  * @private
31422
31525
  */
31423
31526
  [key: string]: unknown;
31424
31527
  data: ModelTypes['CreateProjectPropertyInput'];
31425
31528
  }
31426
- type IOutput$2y = InputType<GraphQLTypes['Mutation'], typeof mutation$1H>;
31529
+ type IOutput$2z = InputType<GraphQLTypes['Mutation'], typeof mutation$1I>;
31427
31530
 
31428
31531
  declare namespace createProjectProperty {
31429
- export { type IInput$2y as IInput, type IOutput$2y as IOutput, mutation$1H as mutation, name$2x as name };
31532
+ export { type IInput$2z as IInput, type IOutput$2z as IOutput, mutation$1I as mutation, name$2y as name };
31430
31533
  }
31431
31534
 
31432
- declare const name$2w = "capitalCreateProgramProperty";
31433
- declare const mutation$1G: {
31535
+ declare const name$2x = "capitalCreateProgramProperty";
31536
+ declare const mutation$1H: {
31434
31537
  capitalCreateProgramProperty: [{
31435
31538
  data: Variable<"CreateProgramPropertyInput!", "data">;
31436
31539
  }, {
@@ -31445,21 +31548,21 @@ declare const mutation$1G: {
31445
31548
  transaction: boolean;
31446
31549
  }];
31447
31550
  };
31448
- interface IInput$2x {
31551
+ interface IInput$2y {
31449
31552
  /**
31450
31553
  * @private
31451
31554
  */
31452
31555
  [key: string]: unknown;
31453
31556
  data: ModelTypes['CreateProgramPropertyInput'];
31454
31557
  }
31455
- type IOutput$2x = InputType<GraphQLTypes['Mutation'], typeof mutation$1G>;
31558
+ type IOutput$2y = InputType<GraphQLTypes['Mutation'], typeof mutation$1H>;
31456
31559
 
31457
31560
  declare namespace createProgramProperty {
31458
- export { type IInput$2x as IInput, type IOutput$2x as IOutput, mutation$1G as mutation, name$2w as name };
31561
+ export { type IInput$2y as IInput, type IOutput$2y as IOutput, mutation$1H as mutation, name$2x as name };
31459
31562
  }
31460
31563
 
31461
- declare const name$2v = "capitalPushResult";
31462
- declare const mutation$1F: {
31564
+ declare const name$2w = "capitalPushResult";
31565
+ declare const mutation$1G: {
31463
31566
  capitalPushResult: [{
31464
31567
  data: Variable<"PushResultInput!", "data">;
31465
31568
  }, {
@@ -31699,21 +31802,21 @@ declare const mutation$1F: {
31699
31802
  _updated_at: boolean;
31700
31803
  }];
31701
31804
  };
31702
- interface IInput$2w {
31805
+ interface IInput$2x {
31703
31806
  /**
31704
31807
  * @private
31705
31808
  */
31706
31809
  [key: string]: unknown;
31707
31810
  data: ModelTypes['PushResultInput'];
31708
31811
  }
31709
- type IOutput$2w = InputType<GraphQLTypes['Mutation'], typeof mutation$1F>;
31812
+ type IOutput$2x = InputType<GraphQLTypes['Mutation'], typeof mutation$1G>;
31710
31813
 
31711
31814
  declare namespace pushResult {
31712
- export { type IInput$2w as IInput, type IOutput$2w as IOutput, mutation$1F as mutation, name$2v as name };
31815
+ export { type IInput$2x as IInput, type IOutput$2x as IOutput, mutation$1G as mutation, name$2w as name };
31713
31816
  }
31714
31817
 
31715
- declare const name$2u = "capitalConvertSegment";
31716
- declare const mutation$1E: {
31818
+ declare const name$2v = "capitalConvertSegment";
31819
+ declare const mutation$1F: {
31717
31820
  capitalConvertSegment: [{
31718
31821
  data: Variable<"ConvertSegmentInput!", "data">;
31719
31822
  }, {
@@ -31953,21 +32056,21 @@ declare const mutation$1E: {
31953
32056
  _updated_at: boolean;
31954
32057
  }];
31955
32058
  };
31956
- interface IInput$2v {
32059
+ interface IInput$2w {
31957
32060
  /**
31958
32061
  * @private
31959
32062
  */
31960
32063
  [key: string]: unknown;
31961
32064
  data: ModelTypes['ConvertSegmentInput'];
31962
32065
  }
31963
- type IOutput$2v = InputType<GraphQLTypes['Mutation'], typeof mutation$1E>;
32066
+ type IOutput$2w = InputType<GraphQLTypes['Mutation'], typeof mutation$1F>;
31964
32067
 
31965
32068
  declare namespace convertSegment {
31966
- export { type IInput$2v as IInput, type IOutput$2v as IOutput, mutation$1E as mutation, name$2u as name };
32069
+ export { type IInput$2w as IInput, type IOutput$2w as IOutput, mutation$1F as mutation, name$2v as name };
31967
32070
  }
31968
32071
 
31969
- declare const name$2t = "capitalStartVoting";
31970
- declare const mutation$1D: {
32072
+ declare const name$2u = "capitalStartVoting";
32073
+ declare const mutation$1E: {
31971
32074
  capitalStartVoting: [{
31972
32075
  data: Variable<"StartVotingInput!", "data">;
31973
32076
  }, {
@@ -31982,21 +32085,21 @@ declare const mutation$1D: {
31982
32085
  transaction: boolean;
31983
32086
  }];
31984
32087
  };
31985
- interface IInput$2u {
32088
+ interface IInput$2v {
31986
32089
  /**
31987
32090
  * @private
31988
32091
  */
31989
32092
  [key: string]: unknown;
31990
32093
  data: ModelTypes['StartVotingInput'];
31991
32094
  }
31992
- type IOutput$2u = InputType<GraphQLTypes['Mutation'], typeof mutation$1D>;
32095
+ type IOutput$2v = InputType<GraphQLTypes['Mutation'], typeof mutation$1E>;
31993
32096
 
31994
32097
  declare namespace startVoting {
31995
- export { type IInput$2u as IInput, type IOutput$2u as IOutput, mutation$1D as mutation, name$2t as name };
32098
+ export { type IInput$2v as IInput, type IOutput$2v as IOutput, mutation$1E as mutation, name$2u as name };
31996
32099
  }
31997
32100
 
31998
- declare const name$2s = "capitalSubmitVote";
31999
- declare const mutation$1C: {
32101
+ declare const name$2t = "capitalSubmitVote";
32102
+ declare const mutation$1D: {
32000
32103
  capitalSubmitVote: [{
32001
32104
  data: Variable<"SubmitVoteInput!", "data">;
32002
32105
  }, {
@@ -32011,21 +32114,21 @@ declare const mutation$1C: {
32011
32114
  transaction: boolean;
32012
32115
  }];
32013
32116
  };
32014
- interface IInput$2t {
32117
+ interface IInput$2u {
32015
32118
  /**
32016
32119
  * @private
32017
32120
  */
32018
32121
  [key: string]: unknown;
32019
32122
  data: ModelTypes['SubmitVoteInput'];
32020
32123
  }
32021
- type IOutput$2t = InputType<GraphQLTypes['Mutation'], typeof mutation$1C>;
32124
+ type IOutput$2u = InputType<GraphQLTypes['Mutation'], typeof mutation$1D>;
32022
32125
 
32023
32126
  declare namespace submitVote {
32024
- export { type IInput$2t as IInput, type IOutput$2t as IOutput, mutation$1C as mutation, name$2s as name };
32127
+ export { type IInput$2u as IInput, type IOutput$2u as IOutput, mutation$1D as mutation, name$2t as name };
32025
32128
  }
32026
32129
 
32027
- declare const name$2r = "capitalCompleteVoting";
32028
- declare const mutation$1B: {
32130
+ declare const name$2s = "capitalCompleteVoting";
32131
+ declare const mutation$1C: {
32029
32132
  capitalCompleteVoting: [{
32030
32133
  data: Variable<"CompleteVotingInput!", "data">;
32031
32134
  }, {
@@ -32040,21 +32143,21 @@ declare const mutation$1B: {
32040
32143
  transaction: boolean;
32041
32144
  }];
32042
32145
  };
32043
- interface IInput$2s {
32146
+ interface IInput$2t {
32044
32147
  /**
32045
32148
  * @private
32046
32149
  */
32047
32150
  [key: string]: unknown;
32048
32151
  data: ModelTypes['CompleteVotingInput'];
32049
32152
  }
32050
- type IOutput$2s = InputType<GraphQLTypes['Mutation'], typeof mutation$1B>;
32153
+ type IOutput$2t = InputType<GraphQLTypes['Mutation'], typeof mutation$1C>;
32051
32154
 
32052
32155
  declare namespace completeVoting {
32053
- export { type IInput$2s as IInput, type IOutput$2s as IOutput, mutation$1B as mutation, name$2r as name };
32156
+ export { type IInput$2t as IInput, type IOutput$2t as IOutput, mutation$1C as mutation, name$2s as name };
32054
32157
  }
32055
32158
 
32056
- declare const name$2q = "capitalCalculateVotes";
32057
- declare const mutation$1A: {
32159
+ declare const name$2r = "capitalCalculateVotes";
32160
+ declare const mutation$1B: {
32058
32161
  capitalCalculateVotes: [{
32059
32162
  data: Variable<"CalculateVotesInput!", "data">;
32060
32163
  }, {
@@ -32294,21 +32397,21 @@ declare const mutation$1A: {
32294
32397
  _updated_at: boolean;
32295
32398
  }];
32296
32399
  };
32297
- interface IInput$2r {
32400
+ interface IInput$2s {
32298
32401
  /**
32299
32402
  * @private
32300
32403
  */
32301
32404
  [key: string]: unknown;
32302
32405
  data: ModelTypes['CalculateVotesInput'];
32303
32406
  }
32304
- type IOutput$2r = InputType<GraphQLTypes['Mutation'], typeof mutation$1A>;
32407
+ type IOutput$2s = InputType<GraphQLTypes['Mutation'], typeof mutation$1B>;
32305
32408
 
32306
32409
  declare namespace calculateVotes {
32307
- export { type IInput$2r as IInput, type IOutput$2r as IOutput, mutation$1A as mutation, name$2q as name };
32410
+ export { type IInput$2s as IInput, type IOutput$2s as IOutput, mutation$1B as mutation, name$2r as name };
32308
32411
  }
32309
32412
 
32310
- declare const name$2p = "capitalCreateStory";
32311
- declare const mutation$1z: {
32413
+ declare const name$2q = "capitalCreateStory";
32414
+ declare const mutation$1A: {
32312
32415
  capitalCreateStory: [{
32313
32416
  data: Variable<"CreateStoryInput!", "data">;
32314
32417
  }, {
@@ -32328,21 +32431,21 @@ declare const mutation$1z: {
32328
32431
  _updated_at: boolean;
32329
32432
  }];
32330
32433
  };
32331
- interface IInput$2q {
32434
+ interface IInput$2r {
32332
32435
  /**
32333
32436
  * @private
32334
32437
  */
32335
32438
  [key: string]: unknown;
32336
32439
  data: ModelTypes['CreateStoryInput'];
32337
32440
  }
32338
- type IOutput$2q = InputType<GraphQLTypes['Mutation'], typeof mutation$1z>;
32441
+ type IOutput$2r = InputType<GraphQLTypes['Mutation'], typeof mutation$1A>;
32339
32442
 
32340
32443
  declare namespace createStory {
32341
- export { type IInput$2q as IInput, type IOutput$2q as IOutput, mutation$1z as mutation, name$2p as name };
32444
+ export { type IInput$2r as IInput, type IOutput$2r as IOutput, mutation$1A as mutation, name$2q as name };
32342
32445
  }
32343
32446
 
32344
- declare const name$2o = "capitalUpdateStory";
32345
- declare const mutation$1y: {
32447
+ declare const name$2p = "capitalUpdateStory";
32448
+ declare const mutation$1z: {
32346
32449
  capitalUpdateStory: [{
32347
32450
  data: Variable<"UpdateStoryInput!", "data">;
32348
32451
  }, {
@@ -32362,40 +32465,40 @@ declare const mutation$1y: {
32362
32465
  _updated_at: boolean;
32363
32466
  }];
32364
32467
  };
32365
- interface IInput$2p {
32468
+ interface IInput$2q {
32366
32469
  /**
32367
32470
  * @private
32368
32471
  */
32369
32472
  [key: string]: unknown;
32370
32473
  data: ModelTypes['UpdateStoryInput'];
32371
32474
  }
32372
- type IOutput$2p = InputType<GraphQLTypes['Mutation'], typeof mutation$1y>;
32475
+ type IOutput$2q = InputType<GraphQLTypes['Mutation'], typeof mutation$1z>;
32373
32476
 
32374
32477
  declare namespace updateStory {
32375
- export { type IInput$2p as IInput, type IOutput$2p as IOutput, mutation$1y as mutation, name$2o as name };
32478
+ export { type IInput$2q as IInput, type IOutput$2q as IOutput, mutation$1z as mutation, name$2p as name };
32376
32479
  }
32377
32480
 
32378
- declare const name$2n = "capitalDeleteStory";
32379
- declare const mutation$1x: {
32481
+ declare const name$2o = "capitalDeleteStory";
32482
+ declare const mutation$1y: {
32380
32483
  capitalDeleteStory: [{
32381
32484
  data: Variable<"DeleteCapitalStoryByHashInput!", "data">;
32382
32485
  }, true];
32383
32486
  };
32384
- interface IInput$2o {
32487
+ interface IInput$2p {
32385
32488
  /**
32386
32489
  * @private
32387
32490
  */
32388
32491
  [key: string]: unknown;
32389
32492
  data: ModelTypes['DeleteCapitalStoryByHashInput'];
32390
32493
  }
32391
- type IOutput$2o = InputType<GraphQLTypes['Mutation'], typeof mutation$1x>;
32494
+ type IOutput$2p = InputType<GraphQLTypes['Mutation'], typeof mutation$1y>;
32392
32495
 
32393
32496
  declare namespace deleteStory {
32394
- export { type IInput$2o as IInput, type IOutput$2o as IOutput, mutation$1x as mutation, name$2n as name };
32497
+ export { type IInput$2p as IInput, type IOutput$2p as IOutput, mutation$1y as mutation, name$2o as name };
32395
32498
  }
32396
32499
 
32397
- declare const name$2m = "capitalCreateIssue";
32398
- declare const mutation$1w: {
32500
+ declare const name$2n = "capitalCreateIssue";
32501
+ declare const mutation$1x: {
32399
32502
  capitalCreateIssue: [{
32400
32503
  data: Variable<"CreateIssueInput!", "data">;
32401
32504
  }, {
@@ -32429,21 +32532,21 @@ declare const mutation$1w: {
32429
32532
  _updated_at: boolean;
32430
32533
  }];
32431
32534
  };
32432
- interface IInput$2n {
32535
+ interface IInput$2o {
32433
32536
  /**
32434
32537
  * @private
32435
32538
  */
32436
32539
  [key: string]: unknown;
32437
32540
  data: ModelTypes['CreateIssueInput'];
32438
32541
  }
32439
- type IOutput$2n = InputType<GraphQLTypes['Mutation'], typeof mutation$1w>;
32542
+ type IOutput$2o = InputType<GraphQLTypes['Mutation'], typeof mutation$1x>;
32440
32543
 
32441
32544
  declare namespace createIssue {
32442
- export { type IInput$2n as IInput, type IOutput$2n as IOutput, mutation$1w as mutation, name$2m as name };
32545
+ export { type IInput$2o as IInput, type IOutput$2o as IOutput, mutation$1x as mutation, name$2n as name };
32443
32546
  }
32444
32547
 
32445
- declare const name$2l = "capitalUpdateIssue";
32446
- declare const mutation$1v: {
32548
+ declare const name$2m = "capitalUpdateIssue";
32549
+ declare const mutation$1w: {
32447
32550
  capitalUpdateIssue: [{
32448
32551
  data: Variable<"UpdateIssueInput!", "data">;
32449
32552
  }, {
@@ -32477,40 +32580,40 @@ declare const mutation$1v: {
32477
32580
  _updated_at: boolean;
32478
32581
  }];
32479
32582
  };
32480
- interface IInput$2m {
32583
+ interface IInput$2n {
32481
32584
  /**
32482
32585
  * @private
32483
32586
  */
32484
32587
  [key: string]: unknown;
32485
32588
  data: ModelTypes['UpdateIssueInput'];
32486
32589
  }
32487
- type IOutput$2m = InputType<GraphQLTypes['Mutation'], typeof mutation$1v>;
32590
+ type IOutput$2n = InputType<GraphQLTypes['Mutation'], typeof mutation$1w>;
32488
32591
 
32489
32592
  declare namespace updateIssue {
32490
- export { type IInput$2m as IInput, type IOutput$2m as IOutput, mutation$1v as mutation, name$2l as name };
32593
+ export { type IInput$2n as IInput, type IOutput$2n as IOutput, mutation$1w as mutation, name$2m as name };
32491
32594
  }
32492
32595
 
32493
- declare const name$2k = "capitalDeleteIssue";
32494
- declare const mutation$1u: {
32596
+ declare const name$2l = "capitalDeleteIssue";
32597
+ declare const mutation$1v: {
32495
32598
  capitalDeleteIssue: [{
32496
32599
  data: Variable<"DeleteCapitalIssueByHashInput!", "data">;
32497
32600
  }, true];
32498
32601
  };
32499
- interface IInput$2l {
32602
+ interface IInput$2m {
32500
32603
  /**
32501
32604
  * @private
32502
32605
  */
32503
32606
  [key: string]: unknown;
32504
32607
  data: ModelTypes['DeleteCapitalIssueByHashInput'];
32505
32608
  }
32506
- type IOutput$2l = InputType<GraphQLTypes['Mutation'], typeof mutation$1u>;
32609
+ type IOutput$2m = InputType<GraphQLTypes['Mutation'], typeof mutation$1v>;
32507
32610
 
32508
32611
  declare namespace deleteIssue {
32509
- export { type IInput$2l as IInput, type IOutput$2l as IOutput, mutation$1u as mutation, name$2k as name };
32612
+ export { type IInput$2m as IInput, type IOutput$2m as IOutput, mutation$1v as mutation, name$2l as name };
32510
32613
  }
32511
32614
 
32512
- declare const name$2j = "capitalCreateCycle";
32513
- declare const mutation$1t: {
32615
+ declare const name$2k = "capitalCreateCycle";
32616
+ declare const mutation$1u: {
32514
32617
  capitalCreateCycle: [{
32515
32618
  data: Variable<"CreateCycleInput!", "data">;
32516
32619
  }, {
@@ -32525,21 +32628,21 @@ declare const mutation$1t: {
32525
32628
  _updated_at: boolean;
32526
32629
  }];
32527
32630
  };
32528
- interface IInput$2k {
32631
+ interface IInput$2l {
32529
32632
  /**
32530
32633
  * @private
32531
32634
  */
32532
32635
  [key: string]: unknown;
32533
32636
  data: ModelTypes['CreateCycleInput'];
32534
32637
  }
32535
- type IOutput$2k = InputType<GraphQLTypes['Mutation'], typeof mutation$1t>;
32638
+ type IOutput$2l = InputType<GraphQLTypes['Mutation'], typeof mutation$1u>;
32536
32639
 
32537
32640
  declare namespace createCycle {
32538
- export { type IInput$2k as IInput, type IOutput$2k as IOutput, mutation$1t as mutation, name$2j as name };
32641
+ export { type IInput$2l as IInput, type IOutput$2l as IOutput, mutation$1u as mutation, name$2k as name };
32539
32642
  }
32540
32643
 
32541
- declare const name$2i = "capitalCreateExpense";
32542
- declare const mutation$1s: {
32644
+ declare const name$2j = "capitalCreateExpense";
32645
+ declare const mutation$1t: {
32543
32646
  capitalCreateExpense: [{
32544
32647
  data: Variable<"CreateExpenseInput!", "data">;
32545
32648
  }, {
@@ -32554,22 +32657,49 @@ declare const mutation$1s: {
32554
32657
  transaction: boolean;
32555
32658
  }];
32556
32659
  };
32557
- interface IInput$2j {
32660
+ interface IInput$2k {
32558
32661
  /**
32559
32662
  * @private
32560
32663
  */
32561
32664
  [key: string]: unknown;
32562
32665
  data: ModelTypes['CreateExpenseInput'];
32563
32666
  }
32564
- type IOutput$2j = InputType<GraphQLTypes['Mutation'], typeof mutation$1s>;
32667
+ type IOutput$2k = InputType<GraphQLTypes['Mutation'], typeof mutation$1t>;
32565
32668
 
32566
32669
  declare namespace createExpense {
32670
+ export { type IInput$2k as IInput, type IOutput$2k as IOutput, mutation$1t as mutation, name$2j as name };
32671
+ }
32672
+
32673
+ declare const name$2i = "capitalGenerateCapitalizationAgreement";
32674
+ declare const mutation$1s: {
32675
+ capitalGenerateCapitalizationAgreement: [{
32676
+ data: Variable<"GenerateDocumentInput!", "data">;
32677
+ options: Variable<"GenerateDocumentOptionsInput", "options">;
32678
+ }, {
32679
+ binary: boolean;
32680
+ full_title: boolean;
32681
+ hash: boolean;
32682
+ html: boolean;
32683
+ meta: boolean;
32684
+ }];
32685
+ };
32686
+ interface IInput$2j {
32687
+ /**
32688
+ * @private
32689
+ */
32690
+ [key: string]: unknown;
32691
+ data: ModelTypes['GenerateDocumentInput'];
32692
+ options?: ModelTypes['GenerateDocumentOptionsInput'];
32693
+ }
32694
+ type IOutput$2j = InputType<GraphQLTypes['Mutation'], typeof mutation$1s>;
32695
+
32696
+ declare namespace generateCapitalizationAgreement {
32567
32697
  export { type IInput$2j as IInput, type IOutput$2j as IOutput, mutation$1s as mutation, name$2i as name };
32568
32698
  }
32569
32699
 
32570
- declare const name$2h = "capitalGenerateCapitalizationAgreement";
32700
+ declare const name$2h = "capitalGenerateGenerationAgreement";
32571
32701
  declare const mutation$1r: {
32572
- capitalGenerateCapitalizationAgreement: [{
32702
+ capitalGenerateGenerationAgreement: [{
32573
32703
  data: Variable<"GenerateDocumentInput!", "data">;
32574
32704
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32575
32705
  }, {
@@ -32590,13 +32720,13 @@ interface IInput$2i {
32590
32720
  }
32591
32721
  type IOutput$2i = InputType<GraphQLTypes['Mutation'], typeof mutation$1r>;
32592
32722
 
32593
- declare namespace generateCapitalizationAgreement {
32723
+ declare namespace generateGenerationAgreement {
32594
32724
  export { type IInput$2i as IInput, type IOutput$2i as IOutput, mutation$1r as mutation, name$2h as name };
32595
32725
  }
32596
32726
 
32597
- declare const name$2g = "capitalGenerateGenerationAgreement";
32727
+ declare const name$2g = "capitalGenerateAppendixGenerationAgreement";
32598
32728
  declare const mutation$1q: {
32599
- capitalGenerateGenerationAgreement: [{
32729
+ capitalGenerateAppendixGenerationAgreement: [{
32600
32730
  data: Variable<"GenerateDocumentInput!", "data">;
32601
32731
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32602
32732
  }, {
@@ -32617,13 +32747,13 @@ interface IInput$2h {
32617
32747
  }
32618
32748
  type IOutput$2h = InputType<GraphQLTypes['Mutation'], typeof mutation$1q>;
32619
32749
 
32620
- declare namespace generateGenerationAgreement {
32750
+ declare namespace generateAppendixGenerationAgreement {
32621
32751
  export { type IInput$2h as IInput, type IOutput$2h as IOutput, mutation$1q as mutation, name$2g as name };
32622
32752
  }
32623
32753
 
32624
- declare const name$2f = "capitalGenerateAppendixGenerationAgreement";
32754
+ declare const name$2f = "capitalGenerateExpenseStatement";
32625
32755
  declare const mutation$1p: {
32626
- capitalGenerateAppendixGenerationAgreement: [{
32756
+ capitalGenerateExpenseStatement: [{
32627
32757
  data: Variable<"GenerateDocumentInput!", "data">;
32628
32758
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32629
32759
  }, {
@@ -32644,13 +32774,13 @@ interface IInput$2g {
32644
32774
  }
32645
32775
  type IOutput$2g = InputType<GraphQLTypes['Mutation'], typeof mutation$1p>;
32646
32776
 
32647
- declare namespace generateAppendixGenerationAgreement {
32777
+ declare namespace generateExpenseStatement {
32648
32778
  export { type IInput$2g as IInput, type IOutput$2g as IOutput, mutation$1p as mutation, name$2f as name };
32649
32779
  }
32650
32780
 
32651
- declare const name$2e = "capitalGenerateExpenseStatement";
32781
+ declare const name$2e = "capitalGenerateExpenseDecision";
32652
32782
  declare const mutation$1o: {
32653
- capitalGenerateExpenseStatement: [{
32783
+ capitalGenerateExpenseDecision: [{
32654
32784
  data: Variable<"GenerateDocumentInput!", "data">;
32655
32785
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32656
32786
  }, {
@@ -32671,13 +32801,13 @@ interface IInput$2f {
32671
32801
  }
32672
32802
  type IOutput$2f = InputType<GraphQLTypes['Mutation'], typeof mutation$1o>;
32673
32803
 
32674
- declare namespace generateExpenseStatement {
32804
+ declare namespace generateExpenseDecision {
32675
32805
  export { type IInput$2f as IInput, type IOutput$2f as IOutput, mutation$1o as mutation, name$2e as name };
32676
32806
  }
32677
32807
 
32678
- declare const name$2d = "capitalGenerateExpenseDecision";
32808
+ declare const name$2d = "capitalGenerateGenerationMoneyInvestStatement";
32679
32809
  declare const mutation$1n: {
32680
- capitalGenerateExpenseDecision: [{
32810
+ capitalGenerateGenerationMoneyInvestStatement: [{
32681
32811
  data: Variable<"GenerateDocumentInput!", "data">;
32682
32812
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32683
32813
  }, {
@@ -32698,13 +32828,13 @@ interface IInput$2e {
32698
32828
  }
32699
32829
  type IOutput$2e = InputType<GraphQLTypes['Mutation'], typeof mutation$1n>;
32700
32830
 
32701
- declare namespace generateExpenseDecision {
32831
+ declare namespace generateGenerationMoneyInvestStatement {
32702
32832
  export { type IInput$2e as IInput, type IOutput$2e as IOutput, mutation$1n as mutation, name$2d as name };
32703
32833
  }
32704
32834
 
32705
- declare const name$2c = "capitalGenerateGenerationMoneyInvestStatement";
32835
+ declare const name$2c = "capitalGenerateGenerationMoneyReturnUnusedStatement";
32706
32836
  declare const mutation$1m: {
32707
- capitalGenerateGenerationMoneyInvestStatement: [{
32837
+ capitalGenerateGenerationMoneyReturnUnusedStatement: [{
32708
32838
  data: Variable<"GenerateDocumentInput!", "data">;
32709
32839
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32710
32840
  }, {
@@ -32725,13 +32855,13 @@ interface IInput$2d {
32725
32855
  }
32726
32856
  type IOutput$2d = InputType<GraphQLTypes['Mutation'], typeof mutation$1m>;
32727
32857
 
32728
- declare namespace generateGenerationMoneyInvestStatement {
32858
+ declare namespace generateGenerationMoneyReturnUnusedStatement {
32729
32859
  export { type IInput$2d as IInput, type IOutput$2d as IOutput, mutation$1m as mutation, name$2c as name };
32730
32860
  }
32731
32861
 
32732
- declare const name$2b = "capitalGenerateGenerationMoneyReturnUnusedStatement";
32862
+ declare const name$2b = "capitalGenerateCapitalizationMoneyInvestStatement";
32733
32863
  declare const mutation$1l: {
32734
- capitalGenerateGenerationMoneyReturnUnusedStatement: [{
32864
+ capitalGenerateCapitalizationMoneyInvestStatement: [{
32735
32865
  data: Variable<"GenerateDocumentInput!", "data">;
32736
32866
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32737
32867
  }, {
@@ -32752,13 +32882,13 @@ interface IInput$2c {
32752
32882
  }
32753
32883
  type IOutput$2c = InputType<GraphQLTypes['Mutation'], typeof mutation$1l>;
32754
32884
 
32755
- declare namespace generateGenerationMoneyReturnUnusedStatement {
32885
+ declare namespace generateCapitalizationMoneyInvestStatement {
32756
32886
  export { type IInput$2c as IInput, type IOutput$2c as IOutput, mutation$1l as mutation, name$2b as name };
32757
32887
  }
32758
32888
 
32759
- declare const name$2a = "capitalGenerateCapitalizationMoneyInvestStatement";
32889
+ declare const name$2a = "capitalGenerateResultContributionStatement";
32760
32890
  declare const mutation$1k: {
32761
- capitalGenerateCapitalizationMoneyInvestStatement: [{
32891
+ capitalGenerateResultContributionStatement: [{
32762
32892
  data: Variable<"GenerateDocumentInput!", "data">;
32763
32893
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32764
32894
  }, {
@@ -32779,13 +32909,13 @@ interface IInput$2b {
32779
32909
  }
32780
32910
  type IOutput$2b = InputType<GraphQLTypes['Mutation'], typeof mutation$1k>;
32781
32911
 
32782
- declare namespace generateCapitalizationMoneyInvestStatement {
32912
+ declare namespace generateResultContributionStatement {
32783
32913
  export { type IInput$2b as IInput, type IOutput$2b as IOutput, mutation$1k as mutation, name$2a as name };
32784
32914
  }
32785
32915
 
32786
- declare const name$29 = "capitalGenerateResultContributionStatement";
32916
+ declare const name$29 = "capitalGenerateResultContributionDecision";
32787
32917
  declare const mutation$1j: {
32788
- capitalGenerateResultContributionStatement: [{
32918
+ capitalGenerateResultContributionDecision: [{
32789
32919
  data: Variable<"GenerateDocumentInput!", "data">;
32790
32920
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32791
32921
  }, {
@@ -32806,13 +32936,13 @@ interface IInput$2a {
32806
32936
  }
32807
32937
  type IOutput$2a = InputType<GraphQLTypes['Mutation'], typeof mutation$1j>;
32808
32938
 
32809
- declare namespace generateResultContributionStatement {
32939
+ declare namespace generateResultContributionDecision {
32810
32940
  export { type IInput$2a as IInput, type IOutput$2a as IOutput, mutation$1j as mutation, name$29 as name };
32811
32941
  }
32812
32942
 
32813
- declare const name$28 = "capitalGenerateResultContributionDecision";
32943
+ declare const name$28 = "capitalGenerateResultContributionAct";
32814
32944
  declare const mutation$1i: {
32815
- capitalGenerateResultContributionDecision: [{
32945
+ capitalGenerateResultContributionAct: [{
32816
32946
  data: Variable<"GenerateDocumentInput!", "data">;
32817
32947
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32818
32948
  }, {
@@ -32833,13 +32963,13 @@ interface IInput$29 {
32833
32963
  }
32834
32964
  type IOutput$29 = InputType<GraphQLTypes['Mutation'], typeof mutation$1i>;
32835
32965
 
32836
- declare namespace generateResultContributionDecision {
32966
+ declare namespace generateResultContributionAct {
32837
32967
  export { type IInput$29 as IInput, type IOutput$29 as IOutput, mutation$1i as mutation, name$28 as name };
32838
32968
  }
32839
32969
 
32840
- declare const name$27 = "capitalGenerateResultContributionAct";
32970
+ declare const name$27 = "capitalGenerateGetLoanStatement";
32841
32971
  declare const mutation$1h: {
32842
- capitalGenerateResultContributionAct: [{
32972
+ capitalGenerateGetLoanStatement: [{
32843
32973
  data: Variable<"GenerateDocumentInput!", "data">;
32844
32974
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32845
32975
  }, {
@@ -32860,13 +32990,13 @@ interface IInput$28 {
32860
32990
  }
32861
32991
  type IOutput$28 = InputType<GraphQLTypes['Mutation'], typeof mutation$1h>;
32862
32992
 
32863
- declare namespace generateResultContributionAct {
32993
+ declare namespace generateGetLoanStatement {
32864
32994
  export { type IInput$28 as IInput, type IOutput$28 as IOutput, mutation$1h as mutation, name$27 as name };
32865
32995
  }
32866
32996
 
32867
- declare const name$26 = "capitalGenerateGetLoanStatement";
32997
+ declare const name$26 = "capitalGenerateGetLoanDecision";
32868
32998
  declare const mutation$1g: {
32869
- capitalGenerateGetLoanStatement: [{
32999
+ capitalGenerateGetLoanDecision: [{
32870
33000
  data: Variable<"GenerateDocumentInput!", "data">;
32871
33001
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32872
33002
  }, {
@@ -32887,13 +33017,13 @@ interface IInput$27 {
32887
33017
  }
32888
33018
  type IOutput$27 = InputType<GraphQLTypes['Mutation'], typeof mutation$1g>;
32889
33019
 
32890
- declare namespace generateGetLoanStatement {
33020
+ declare namespace generateGetLoanDecision {
32891
33021
  export { type IInput$27 as IInput, type IOutput$27 as IOutput, mutation$1g as mutation, name$26 as name };
32892
33022
  }
32893
33023
 
32894
- declare const name$25 = "capitalGenerateGetLoanDecision";
33024
+ declare const name$25 = "capitalGenerateGenerationPropertyInvestStatement";
32895
33025
  declare const mutation$1f: {
32896
- capitalGenerateGetLoanDecision: [{
33026
+ capitalGenerateGenerationPropertyInvestStatement: [{
32897
33027
  data: Variable<"GenerateDocumentInput!", "data">;
32898
33028
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32899
33029
  }, {
@@ -32914,13 +33044,13 @@ interface IInput$26 {
32914
33044
  }
32915
33045
  type IOutput$26 = InputType<GraphQLTypes['Mutation'], typeof mutation$1f>;
32916
33046
 
32917
- declare namespace generateGetLoanDecision {
33047
+ declare namespace generateGenerationPropertyInvestStatement {
32918
33048
  export { type IInput$26 as IInput, type IOutput$26 as IOutput, mutation$1f as mutation, name$25 as name };
32919
33049
  }
32920
33050
 
32921
- declare const name$24 = "capitalGenerateGenerationPropertyInvestStatement";
33051
+ declare const name$24 = "capitalGenerateGenerationPropertyInvestDecision";
32922
33052
  declare const mutation$1e: {
32923
- capitalGenerateGenerationPropertyInvestStatement: [{
33053
+ capitalGenerateGenerationPropertyInvestDecision: [{
32924
33054
  data: Variable<"GenerateDocumentInput!", "data">;
32925
33055
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32926
33056
  }, {
@@ -32941,13 +33071,13 @@ interface IInput$25 {
32941
33071
  }
32942
33072
  type IOutput$25 = InputType<GraphQLTypes['Mutation'], typeof mutation$1e>;
32943
33073
 
32944
- declare namespace generateGenerationPropertyInvestStatement {
33074
+ declare namespace generateGenerationPropertyInvestDecision {
32945
33075
  export { type IInput$25 as IInput, type IOutput$25 as IOutput, mutation$1e as mutation, name$24 as name };
32946
33076
  }
32947
33077
 
32948
- declare const name$23 = "capitalGenerateGenerationPropertyInvestDecision";
33078
+ declare const name$23 = "capitalGenerateGenerationPropertyInvestAct";
32949
33079
  declare const mutation$1d: {
32950
- capitalGenerateGenerationPropertyInvestDecision: [{
33080
+ capitalGenerateGenerationPropertyInvestAct: [{
32951
33081
  data: Variable<"GenerateDocumentInput!", "data">;
32952
33082
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32953
33083
  }, {
@@ -32968,13 +33098,13 @@ interface IInput$24 {
32968
33098
  }
32969
33099
  type IOutput$24 = InputType<GraphQLTypes['Mutation'], typeof mutation$1d>;
32970
33100
 
32971
- declare namespace generateGenerationPropertyInvestDecision {
33101
+ declare namespace generateGenerationPropertyInvestAct {
32972
33102
  export { type IInput$24 as IInput, type IOutput$24 as IOutput, mutation$1d as mutation, name$23 as name };
32973
33103
  }
32974
33104
 
32975
- declare const name$22 = "capitalGenerateGenerationPropertyInvestAct";
33105
+ declare const name$22 = "capitalGenerateCapitalizationPropertyInvestStatement";
32976
33106
  declare const mutation$1c: {
32977
- capitalGenerateGenerationPropertyInvestAct: [{
33107
+ capitalGenerateCapitalizationPropertyInvestStatement: [{
32978
33108
  data: Variable<"GenerateDocumentInput!", "data">;
32979
33109
  options: Variable<"GenerateDocumentOptionsInput", "options">;
32980
33110
  }, {
@@ -32995,13 +33125,13 @@ interface IInput$23 {
32995
33125
  }
32996
33126
  type IOutput$23 = InputType<GraphQLTypes['Mutation'], typeof mutation$1c>;
32997
33127
 
32998
- declare namespace generateGenerationPropertyInvestAct {
33128
+ declare namespace generateCapitalizationPropertyInvestStatement {
32999
33129
  export { type IInput$23 as IInput, type IOutput$23 as IOutput, mutation$1c as mutation, name$22 as name };
33000
33130
  }
33001
33131
 
33002
- declare const name$21 = "capitalGenerateCapitalizationPropertyInvestStatement";
33132
+ declare const name$21 = "capitalGenerateCapitalizationPropertyInvestDecision";
33003
33133
  declare const mutation$1b: {
33004
- capitalGenerateCapitalizationPropertyInvestStatement: [{
33134
+ capitalGenerateCapitalizationPropertyInvestDecision: [{
33005
33135
  data: Variable<"GenerateDocumentInput!", "data">;
33006
33136
  options: Variable<"GenerateDocumentOptionsInput", "options">;
33007
33137
  }, {
@@ -33022,13 +33152,13 @@ interface IInput$22 {
33022
33152
  }
33023
33153
  type IOutput$22 = InputType<GraphQLTypes['Mutation'], typeof mutation$1b>;
33024
33154
 
33025
- declare namespace generateCapitalizationPropertyInvestStatement {
33155
+ declare namespace generateCapitalizationPropertyInvestDecision {
33026
33156
  export { type IInput$22 as IInput, type IOutput$22 as IOutput, mutation$1b as mutation, name$21 as name };
33027
33157
  }
33028
33158
 
33029
- declare const name$20 = "capitalGenerateCapitalizationPropertyInvestDecision";
33159
+ declare const name$20 = "capitalGenerateCapitalizationPropertyInvestAct";
33030
33160
  declare const mutation$1a: {
33031
- capitalGenerateCapitalizationPropertyInvestDecision: [{
33161
+ capitalGenerateCapitalizationPropertyInvestAct: [{
33032
33162
  data: Variable<"GenerateDocumentInput!", "data">;
33033
33163
  options: Variable<"GenerateDocumentOptionsInput", "options">;
33034
33164
  }, {
@@ -33049,13 +33179,13 @@ interface IInput$21 {
33049
33179
  }
33050
33180
  type IOutput$21 = InputType<GraphQLTypes['Mutation'], typeof mutation$1a>;
33051
33181
 
33052
- declare namespace generateCapitalizationPropertyInvestDecision {
33182
+ declare namespace generateCapitalizationPropertyInvestAct {
33053
33183
  export { type IInput$21 as IInput, type IOutput$21 as IOutput, mutation$1a as mutation, name$20 as name };
33054
33184
  }
33055
33185
 
33056
- declare const name$1$ = "capitalGenerateCapitalizationPropertyInvestAct";
33186
+ declare const name$1$ = "capitalGenerateGenerationToMainWalletConvertStatement";
33057
33187
  declare const mutation$19: {
33058
- capitalGenerateCapitalizationPropertyInvestAct: [{
33188
+ capitalGenerateGenerationToMainWalletConvertStatement: [{
33059
33189
  data: Variable<"GenerateDocumentInput!", "data">;
33060
33190
  options: Variable<"GenerateDocumentOptionsInput", "options">;
33061
33191
  }, {
@@ -33076,13 +33206,13 @@ interface IInput$20 {
33076
33206
  }
33077
33207
  type IOutput$20 = InputType<GraphQLTypes['Mutation'], typeof mutation$19>;
33078
33208
 
33079
- declare namespace generateCapitalizationPropertyInvestAct {
33209
+ declare namespace generateGenerationToMainWalletConvertStatement {
33080
33210
  export { type IInput$20 as IInput, type IOutput$20 as IOutput, mutation$19 as mutation, name$1$ as name };
33081
33211
  }
33082
33212
 
33083
- declare const name$1_ = "capitalGenerateGenerationToMainWalletConvertStatement";
33213
+ declare const name$1_ = "capitalGenerateGenerationToProjectConvertStatement";
33084
33214
  declare const mutation$18: {
33085
- capitalGenerateGenerationToMainWalletConvertStatement: [{
33215
+ capitalGenerateGenerationToProjectConvertStatement: [{
33086
33216
  data: Variable<"GenerateDocumentInput!", "data">;
33087
33217
  options: Variable<"GenerateDocumentOptionsInput", "options">;
33088
33218
  }, {
@@ -33103,13 +33233,13 @@ interface IInput$1$ {
33103
33233
  }
33104
33234
  type IOutput$1$ = InputType<GraphQLTypes['Mutation'], typeof mutation$18>;
33105
33235
 
33106
- declare namespace generateGenerationToMainWalletConvertStatement {
33236
+ declare namespace generateGenerationToProjectConvertStatement {
33107
33237
  export { type IInput$1$ as IInput, type IOutput$1$ as IOutput, mutation$18 as mutation, name$1_ as name };
33108
33238
  }
33109
33239
 
33110
- declare const name$1Z = "capitalGenerateGenerationToProjectConvertStatement";
33240
+ declare const name$1Z = "capitalGenerateGenerationToCapitalizationConvertStatement";
33111
33241
  declare const mutation$17: {
33112
- capitalGenerateGenerationToProjectConvertStatement: [{
33242
+ capitalGenerateGenerationToCapitalizationConvertStatement: [{
33113
33243
  data: Variable<"GenerateDocumentInput!", "data">;
33114
33244
  options: Variable<"GenerateDocumentOptionsInput", "options">;
33115
33245
  }, {
@@ -33130,13 +33260,13 @@ interface IInput$1_ {
33130
33260
  }
33131
33261
  type IOutput$1_ = InputType<GraphQLTypes['Mutation'], typeof mutation$17>;
33132
33262
 
33133
- declare namespace generateGenerationToProjectConvertStatement {
33263
+ declare namespace generateGenerationToCapitalizationConvertStatement {
33134
33264
  export { type IInput$1_ as IInput, type IOutput$1_ as IOutput, mutation$17 as mutation, name$1Z as name };
33135
33265
  }
33136
33266
 
33137
- declare const name$1Y = "capitalGenerateGenerationToCapitalizationConvertStatement";
33267
+ declare const name$1Y = "capitalGenerateCapitalizationToMainWalletConvertStatement";
33138
33268
  declare const mutation$16: {
33139
- capitalGenerateGenerationToCapitalizationConvertStatement: [{
33269
+ capitalGenerateCapitalizationToMainWalletConvertStatement: [{
33140
33270
  data: Variable<"GenerateDocumentInput!", "data">;
33141
33271
  options: Variable<"GenerateDocumentOptionsInput", "options">;
33142
33272
  }, {
@@ -33157,39 +33287,12 @@ interface IInput$1Z {
33157
33287
  }
33158
33288
  type IOutput$1Z = InputType<GraphQLTypes['Mutation'], typeof mutation$16>;
33159
33289
 
33160
- declare namespace generateGenerationToCapitalizationConvertStatement {
33290
+ declare namespace generateCapitalizationToMainWalletConvertStatement {
33161
33291
  export { type IInput$1Z as IInput, type IOutput$1Z as IOutput, mutation$16 as mutation, name$1Y as name };
33162
33292
  }
33163
33293
 
33164
- declare const name$1X = "capitalGenerateCapitalizationToMainWalletConvertStatement";
33294
+ declare const name$1X = "capitalSignActAsContributor";
33165
33295
  declare const mutation$15: {
33166
- capitalGenerateCapitalizationToMainWalletConvertStatement: [{
33167
- data: Variable<"GenerateDocumentInput!", "data">;
33168
- options: Variable<"GenerateDocumentOptionsInput", "options">;
33169
- }, {
33170
- binary: boolean;
33171
- full_title: boolean;
33172
- hash: boolean;
33173
- html: boolean;
33174
- meta: boolean;
33175
- }];
33176
- };
33177
- interface IInput$1Y {
33178
- /**
33179
- * @private
33180
- */
33181
- [key: string]: unknown;
33182
- data: ModelTypes['GenerateDocumentInput'];
33183
- options?: ModelTypes['GenerateDocumentOptionsInput'];
33184
- }
33185
- type IOutput$1Y = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
33186
-
33187
- declare namespace generateCapitalizationToMainWalletConvertStatement {
33188
- export { type IInput$1Y as IInput, type IOutput$1Y as IOutput, mutation$15 as mutation, name$1X as name };
33189
- }
33190
-
33191
- declare const name$1W = "capitalSignActAsContributor";
33192
- declare const mutation$14: {
33193
33296
  capitalSignActAsContributor: [{
33194
33297
  data: Variable<"SignActAsContributorInput!", "data">;
33195
33298
  }, {
@@ -33429,21 +33532,21 @@ declare const mutation$14: {
33429
33532
  _updated_at: boolean;
33430
33533
  }];
33431
33534
  };
33432
- interface IInput$1X {
33535
+ interface IInput$1Y {
33433
33536
  /**
33434
33537
  * @private
33435
33538
  */
33436
33539
  [key: string]: unknown;
33437
33540
  data: ModelTypes['SignActAsContributorInput'];
33438
33541
  }
33439
- type IOutput$1X = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
33542
+ type IOutput$1Y = InputType<GraphQLTypes['Mutation'], typeof mutation$15>;
33440
33543
 
33441
33544
  declare namespace signActAsContributor {
33442
- export { type IInput$1X as IInput, type IOutput$1X as IOutput, mutation$14 as mutation, name$1W as name };
33545
+ export { type IInput$1Y as IInput, type IOutput$1Y as IOutput, mutation$15 as mutation, name$1X as name };
33443
33546
  }
33444
33547
 
33445
- declare const name$1V = "capitalSignActAsChairman";
33446
- declare const mutation$13: {
33548
+ declare const name$1W = "capitalSignActAsChairman";
33549
+ declare const mutation$14: {
33447
33550
  capitalSignActAsChairman: [{
33448
33551
  data: Variable<"SignActAsChairmanInput!", "data">;
33449
33552
  }, {
@@ -33683,21 +33786,21 @@ declare const mutation$13: {
33683
33786
  _updated_at: boolean;
33684
33787
  }];
33685
33788
  };
33686
- interface IInput$1W {
33789
+ interface IInput$1X {
33687
33790
  /**
33688
33791
  * @private
33689
33792
  */
33690
33793
  [key: string]: unknown;
33691
33794
  data: ModelTypes['SignActAsChairmanInput'];
33692
33795
  }
33693
- type IOutput$1W = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
33796
+ type IOutput$1X = InputType<GraphQLTypes['Mutation'], typeof mutation$14>;
33694
33797
 
33695
33798
  declare namespace signActAsChairman {
33696
- export { type IInput$1W as IInput, type IOutput$1W as IOutput, mutation$13 as mutation, name$1V as name };
33799
+ export { type IInput$1X as IInput, type IOutput$1X as IOutput, mutation$14 as mutation, name$1W as name };
33697
33800
  }
33698
33801
 
33699
- declare const name$1U = "capitalEditContributor";
33700
- declare const mutation$12: {
33802
+ declare const name$1V = "capitalEditContributor";
33803
+ declare const mutation$13: {
33701
33804
  capitalEditContributor: [{
33702
33805
  data: Variable<"EditContributorInput!", "data">;
33703
33806
  }, {
@@ -33789,25 +33892,25 @@ declare const mutation$12: {
33789
33892
  _updated_at: boolean;
33790
33893
  }];
33791
33894
  };
33792
- interface IInput$1V {
33895
+ interface IInput$1W {
33793
33896
  /**
33794
33897
  * @private
33795
33898
  */
33796
33899
  [key: string]: unknown;
33797
33900
  data: ModelTypes['EditContributorInput'];
33798
33901
  }
33799
- type IOutput$1V = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
33902
+ type IOutput$1W = InputType<GraphQLTypes['Mutation'], typeof mutation$13>;
33800
33903
 
33801
33904
  declare namespace editContributor {
33802
- export { type IInput$1V as IInput, type IOutput$1V as IOutput, mutation$12 as mutation, name$1U as name };
33905
+ export { type IInput$1W as IInput, type IOutput$1W as IOutput, mutation$13 as mutation, name$1V as name };
33803
33906
  }
33804
33907
 
33805
33908
  declare namespace index$v {
33806
33909
  export { addAuthor as AddAuthor, approveCommit as ApproveCommit, calculateVotes as CalculateVotes, closeProject as CloseProject, completeVoting as CompleteVoting, convertSegment as ConvertSegment, createCommit as CreateCommit, createCycle as CreateCycle, createDebt as CreateDebt, createExpense as CreateExpense, createIssue as CreateIssue, createProgramProperty as CreateProgramProperty, createProject as CreateProject, createProjectInvest as CreateProjectInvest, createProjectProperty as CreateProjectProperty, createStory as CreateStory, declineCommit as DeclineCommit, deleteIssue as DeleteIssue, deleteProject as DeleteProject, deleteStory as DeleteStory, editContributor as EditContributor, editProject as EditProject, fundProgram as FundProgram, fundProject as FundProject, generateAppendixGenerationAgreement as GenerateAppendixGenerationAgreement, generateCapitalizationAgreement as GenerateCapitalizationAgreement, generateCapitalizationMoneyInvestStatement as GenerateCapitalizationMoneyInvestStatement, generateCapitalizationPropertyInvestAct as GenerateCapitalizationPropertyInvestAct, generateCapitalizationPropertyInvestDecision as GenerateCapitalizationPropertyInvestDecision, generateCapitalizationPropertyInvestStatement as GenerateCapitalizationPropertyInvestStatement, generateCapitalizationToMainWalletConvertStatement as GenerateCapitalizationToMainWalletConvertStatement, generateExpenseDecision as GenerateExpenseDecision, generateExpenseStatement as GenerateExpenseStatement, generateGenerationAgreement as GenerateGenerationAgreement, generateGenerationMoneyInvestStatement as GenerateGenerationMoneyInvestStatement, generateGenerationMoneyReturnUnusedStatement as GenerateGenerationMoneyReturnUnusedStatement, generateGenerationPropertyInvestAct as GenerateGenerationPropertyInvestAct, generateGenerationPropertyInvestDecision as GenerateGenerationPropertyInvestDecision, generateGenerationPropertyInvestStatement as GenerateGenerationPropertyInvestStatement, generateGenerationToCapitalizationConvertStatement as GenerateGenerationToCapitalizationConvertStatement, generateGenerationToMainWalletConvertStatement as GenerateGenerationToMainWalletConvertStatement, generateGenerationToProjectConvertStatement as GenerateGenerationToProjectConvertStatement, generateGetLoanDecision as GenerateGetLoanDecision, generateGetLoanStatement as GenerateGetLoanStatement, generateResultContributionAct as GenerateResultContributionAct, generateResultContributionDecision as GenerateResultContributionDecision, generateResultContributionStatement as GenerateResultContributionStatement, importContributor as ImportContributor, makeClearance as MakeClearance, openProject as OpenProject, pushResult as PushResult, refreshProgram as RefreshProgram, refreshProject as RefreshProject, refreshSegment as RefreshSegment, registerContributor as RegisterContributor, setConfig as SetConfig, setMaster as SetMaster, setPlan as SetPlan, signActAsChairman as SignActAsChairman, signActAsContributor as SignActAsContributor, startProject as StartProject, startVoting as StartVoting, stopProject as StopProject, submitVote as SubmitVote, updateIssue as UpdateIssue, updateStory as UpdateStory };
33807
33910
  }
33808
33911
 
33809
- declare const name$1T = "chairmanConfirmApprove";
33810
- declare const mutation$11: {
33912
+ declare const name$1U = "chairmanConfirmApprove";
33913
+ declare const mutation$12: {
33811
33914
  chairmanConfirmApprove: [{
33812
33915
  data: Variable<"ConfirmApproveInput!", "data">;
33813
33916
  }, {
@@ -33942,21 +34045,21 @@ declare const mutation$11: {
33942
34045
  created_at: boolean;
33943
34046
  }];
33944
34047
  };
33945
- interface IInput$1U {
34048
+ interface IInput$1V {
33946
34049
  /**
33947
34050
  * @private
33948
34051
  */
33949
34052
  [key: string]: unknown;
33950
34053
  data: ModelTypes['ConfirmApproveInput'];
33951
34054
  }
33952
- type IOutput$1U = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
34055
+ type IOutput$1V = InputType<GraphQLTypes['Mutation'], typeof mutation$12>;
33953
34056
 
33954
34057
  declare namespace confirmApprove {
33955
- export { type IInput$1U as IInput, type IOutput$1U as IOutput, mutation$11 as mutation, name$1T as name };
34058
+ export { type IInput$1V as IInput, type IOutput$1V as IOutput, mutation$12 as mutation, name$1U as name };
33956
34059
  }
33957
34060
 
33958
- declare const name$1S = "chairmanDeclineApprove";
33959
- declare const mutation$10: {
34061
+ declare const name$1T = "chairmanDeclineApprove";
34062
+ declare const mutation$11: {
33960
34063
  chairmanDeclineApprove: [{
33961
34064
  data: Variable<"DeclineApproveInput!", "data">;
33962
34065
  }, {
@@ -34091,25 +34194,25 @@ declare const mutation$10: {
34091
34194
  created_at: boolean;
34092
34195
  }];
34093
34196
  };
34094
- interface IInput$1T {
34197
+ interface IInput$1U {
34095
34198
  /**
34096
34199
  * @private
34097
34200
  */
34098
34201
  [key: string]: unknown;
34099
34202
  data: ModelTypes['DeclineApproveInput'];
34100
34203
  }
34101
- type IOutput$1T = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
34204
+ type IOutput$1U = InputType<GraphQLTypes['Mutation'], typeof mutation$11>;
34102
34205
 
34103
34206
  declare namespace declineApprove {
34104
- export { type IInput$1T as IInput, type IOutput$1T as IOutput, mutation$10 as mutation, name$1S as name };
34207
+ export { type IInput$1U as IInput, type IOutput$1U as IOutput, mutation$11 as mutation, name$1T as name };
34105
34208
  }
34106
34209
 
34107
34210
  declare namespace index$u {
34108
34211
  export { confirmApprove as ConfirmApprove, declineApprove as DeclineApprove };
34109
34212
  }
34110
34213
 
34111
- declare const name$1R = "acceptChildOrder";
34112
- declare const mutation$$: {
34214
+ declare const name$1S = "acceptChildOrder";
34215
+ declare const mutation$10: {
34113
34216
  acceptChildOrder: [{
34114
34217
  data: Variable<"AcceptChildOrderInput!", "data">;
34115
34218
  }, {
@@ -34124,21 +34227,21 @@ declare const mutation$$: {
34124
34227
  transaction: boolean;
34125
34228
  }];
34126
34229
  };
34127
- interface IInput$1S {
34230
+ interface IInput$1T {
34128
34231
  /**
34129
34232
  * @private
34130
34233
  */
34131
34234
  [key: string]: unknown;
34132
34235
  data: ModelTypes['AcceptChildOrderInput'];
34133
34236
  }
34134
- type IOutput$1S = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
34237
+ type IOutput$1T = InputType<GraphQLTypes['Mutation'], typeof mutation$10>;
34135
34238
 
34136
34239
  declare namespace acceptChildOrder {
34137
- export { type IInput$1S as IInput, type IOutput$1S as IOutput, mutation$$ as mutation, name$1R as name };
34240
+ export { type IInput$1T as IInput, type IOutput$1T as IOutput, mutation$10 as mutation, name$1S as name };
34138
34241
  }
34139
34242
 
34140
- declare const name$1Q = "cancelRequest";
34141
- declare const mutation$_: {
34243
+ declare const name$1R = "cancelRequest";
34244
+ declare const mutation$$: {
34142
34245
  cancelRequest: [{
34143
34246
  data: Variable<"CancelRequestInput!", "data">;
34144
34247
  }, {
@@ -34153,21 +34256,21 @@ declare const mutation$_: {
34153
34256
  transaction: boolean;
34154
34257
  }];
34155
34258
  };
34156
- interface IInput$1R {
34259
+ interface IInput$1S {
34157
34260
  /**
34158
34261
  * @private
34159
34262
  */
34160
34263
  [key: string]: unknown;
34161
34264
  data: ModelTypes['CancelRequestInput'];
34162
34265
  }
34163
- type IOutput$1R = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
34266
+ type IOutput$1S = InputType<GraphQLTypes['Mutation'], typeof mutation$$>;
34164
34267
 
34165
34268
  declare namespace cancelRequest {
34166
- export { type IInput$1R as IInput, type IOutput$1R as IOutput, mutation$_ as mutation, name$1Q as name };
34269
+ export { type IInput$1S as IInput, type IOutput$1S as IOutput, mutation$$ as mutation, name$1R as name };
34167
34270
  }
34168
34271
 
34169
- declare const name$1P = "confirmReceiveOnRequest";
34170
- declare const mutation$Z: {
34272
+ declare const name$1Q = "confirmReceiveOnRequest";
34273
+ declare const mutation$_: {
34171
34274
  confirmReceiveOnRequest: [{
34172
34275
  data: Variable<"ConfirmReceiveOnRequestInput!", "data">;
34173
34276
  }, {
@@ -34182,21 +34285,21 @@ declare const mutation$Z: {
34182
34285
  transaction: boolean;
34183
34286
  }];
34184
34287
  };
34185
- interface IInput$1Q {
34288
+ interface IInput$1R {
34186
34289
  /**
34187
34290
  * @private
34188
34291
  */
34189
34292
  [key: string]: unknown;
34190
34293
  data: ModelTypes['ConfirmReceiveOnRequestInput'];
34191
34294
  }
34192
- type IOutput$1Q = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
34295
+ type IOutput$1R = InputType<GraphQLTypes['Mutation'], typeof mutation$_>;
34193
34296
 
34194
34297
  declare namespace completeReceiveOnRequest {
34195
- export { type IInput$1Q as IInput, type IOutput$1Q as IOutput, mutation$Z as mutation, name$1P as name };
34298
+ export { type IInput$1R as IInput, type IOutput$1R as IOutput, mutation$_ as mutation, name$1Q as name };
34196
34299
  }
34197
34300
 
34198
- declare const name$1O = "completeRequest";
34199
- declare const mutation$Y: {
34301
+ declare const name$1P = "completeRequest";
34302
+ declare const mutation$Z: {
34200
34303
  completeRequest: [{
34201
34304
  data: Variable<"CompleteRequestInput!", "data">;
34202
34305
  }, {
@@ -34211,21 +34314,21 @@ declare const mutation$Y: {
34211
34314
  transaction: boolean;
34212
34315
  }];
34213
34316
  };
34214
- interface IInput$1P {
34317
+ interface IInput$1Q {
34215
34318
  /**
34216
34319
  * @private
34217
34320
  */
34218
34321
  [key: string]: unknown;
34219
34322
  data: ModelTypes['CompleteRequestInput'];
34220
34323
  }
34221
- type IOutput$1P = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
34324
+ type IOutput$1Q = InputType<GraphQLTypes['Mutation'], typeof mutation$Z>;
34222
34325
 
34223
34326
  declare namespace completeRequest {
34224
- export { type IInput$1P as IInput, type IOutput$1P as IOutput, mutation$Y as mutation, name$1O as name };
34327
+ export { type IInput$1Q as IInput, type IOutput$1Q as IOutput, mutation$Z as mutation, name$1P as name };
34225
34328
  }
34226
34329
 
34227
- declare const name$1N = "confirmSupplyOnRequest";
34228
- declare const mutation$X: {
34330
+ declare const name$1O = "confirmSupplyOnRequest";
34331
+ declare const mutation$Y: {
34229
34332
  confirmSupplyOnRequest: [{
34230
34333
  data: Variable<"ConfirmSupplyOnRequestInput!", "data">;
34231
34334
  }, {
@@ -34240,21 +34343,21 @@ declare const mutation$X: {
34240
34343
  transaction: boolean;
34241
34344
  }];
34242
34345
  };
34243
- interface IInput$1O {
34346
+ interface IInput$1P {
34244
34347
  /**
34245
34348
  * @private
34246
34349
  */
34247
34350
  [key: string]: unknown;
34248
34351
  data: ModelTypes['ConfirmSupplyOnRequestInput'];
34249
34352
  }
34250
- type IOutput$1O = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
34353
+ type IOutput$1P = InputType<GraphQLTypes['Mutation'], typeof mutation$Y>;
34251
34354
 
34252
34355
  declare namespace confirmSupplyOnRequest {
34253
- export { type IInput$1O as IInput, type IOutput$1O as IOutput, mutation$X as mutation, name$1N as name };
34356
+ export { type IInput$1P as IInput, type IOutput$1P as IOutput, mutation$Y as mutation, name$1O as name };
34254
34357
  }
34255
34358
 
34256
- declare const name$1M = "createChildOrder";
34257
- declare const mutation$W: {
34359
+ declare const name$1N = "createChildOrder";
34360
+ declare const mutation$X: {
34258
34361
  createChildOrder: [{
34259
34362
  data: Variable<"CreateChildOrderInput!", "data">;
34260
34363
  }, {
@@ -34269,21 +34372,21 @@ declare const mutation$W: {
34269
34372
  transaction: boolean;
34270
34373
  }];
34271
34374
  };
34272
- interface IInput$1N {
34375
+ interface IInput$1O {
34273
34376
  /**
34274
34377
  * @private
34275
34378
  */
34276
34379
  [key: string]: unknown;
34277
34380
  data: ModelTypes['CreateChildOrderInput'];
34278
34381
  }
34279
- type IOutput$1N = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
34382
+ type IOutput$1O = InputType<GraphQLTypes['Mutation'], typeof mutation$X>;
34280
34383
 
34281
34384
  declare namespace createChildOrder {
34282
- export { type IInput$1N as IInput, type IOutput$1N as IOutput, mutation$W as mutation, name$1M as name };
34385
+ export { type IInput$1O as IInput, type IOutput$1O as IOutput, mutation$X as mutation, name$1N as name };
34283
34386
  }
34284
34387
 
34285
- declare const name$1L = "createParentOffer";
34286
- declare const mutation$V: {
34388
+ declare const name$1M = "createParentOffer";
34389
+ declare const mutation$W: {
34287
34390
  createParentOffer: [{
34288
34391
  data: Variable<"CreateParentOfferInput!", "data">;
34289
34392
  }, {
@@ -34298,21 +34401,21 @@ declare const mutation$V: {
34298
34401
  transaction: boolean;
34299
34402
  }];
34300
34403
  };
34301
- interface IInput$1M {
34404
+ interface IInput$1N {
34302
34405
  /**
34303
34406
  * @private
34304
34407
  */
34305
34408
  [key: string]: unknown;
34306
34409
  data: ModelTypes['CreateParentOfferInput'];
34307
34410
  }
34308
- type IOutput$1M = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
34411
+ type IOutput$1N = InputType<GraphQLTypes['Mutation'], typeof mutation$W>;
34309
34412
 
34310
34413
  declare namespace createParentOffer {
34311
- export { type IInput$1M as IInput, type IOutput$1M as IOutput, mutation$V as mutation, name$1L as name };
34414
+ export { type IInput$1N as IInput, type IOutput$1N as IOutput, mutation$W as mutation, name$1M as name };
34312
34415
  }
34313
34416
 
34314
- declare const name$1K = "declineRequest";
34315
- declare const mutation$U: {
34417
+ declare const name$1L = "declineRequest";
34418
+ declare const mutation$V: {
34316
34419
  declineRequest: [{
34317
34420
  data: Variable<"DeclineRequestInput!", "data">;
34318
34421
  }, {
@@ -34327,21 +34430,21 @@ declare const mutation$U: {
34327
34430
  transaction: boolean;
34328
34431
  }];
34329
34432
  };
34330
- interface IInput$1L {
34433
+ interface IInput$1M {
34331
34434
  /**
34332
34435
  * @private
34333
34436
  */
34334
34437
  [key: string]: unknown;
34335
34438
  data: ModelTypes['DeclineRequestInput'];
34336
34439
  }
34337
- type IOutput$1L = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
34440
+ type IOutput$1M = InputType<GraphQLTypes['Mutation'], typeof mutation$V>;
34338
34441
 
34339
34442
  declare namespace declineRequest {
34340
- export { type IInput$1L as IInput, type IOutput$1L as IOutput, mutation$U as mutation, name$1K as name };
34443
+ export { type IInput$1M as IInput, type IOutput$1M as IOutput, mutation$V as mutation, name$1L as name };
34341
34444
  }
34342
34445
 
34343
- declare const name$1J = "deliverOnRequest";
34344
- declare const mutation$T: {
34446
+ declare const name$1K = "deliverOnRequest";
34447
+ declare const mutation$U: {
34345
34448
  deliverOnRequest: [{
34346
34449
  data: Variable<"DeliverOnRequestInput!", "data">;
34347
34450
  }, {
@@ -34356,21 +34459,21 @@ declare const mutation$T: {
34356
34459
  transaction: boolean;
34357
34460
  }];
34358
34461
  };
34359
- interface IInput$1K {
34462
+ interface IInput$1L {
34360
34463
  /**
34361
34464
  * @private
34362
34465
  */
34363
34466
  [key: string]: unknown;
34364
34467
  data: ModelTypes['DeliverOnRequestInput'];
34365
34468
  }
34366
- type IOutput$1K = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
34469
+ type IOutput$1L = InputType<GraphQLTypes['Mutation'], typeof mutation$U>;
34367
34470
 
34368
34471
  declare namespace deliverOnRequest {
34369
- export { type IInput$1K as IInput, type IOutput$1K as IOutput, mutation$T as mutation, name$1J as name };
34472
+ export { type IInput$1L as IInput, type IOutput$1L as IOutput, mutation$U as mutation, name$1K as name };
34370
34473
  }
34371
34474
 
34372
- declare const name$1I = "disputeOnRequest";
34373
- declare const mutation$S: {
34475
+ declare const name$1J = "disputeOnRequest";
34476
+ declare const mutation$T: {
34374
34477
  disputeOnRequest: [{
34375
34478
  data: Variable<"DisputeOnRequestInput!", "data">;
34376
34479
  }, {
@@ -34385,21 +34488,21 @@ declare const mutation$S: {
34385
34488
  transaction: boolean;
34386
34489
  }];
34387
34490
  };
34388
- interface IInput$1J {
34491
+ interface IInput$1K {
34389
34492
  /**
34390
34493
  * @private
34391
34494
  */
34392
34495
  [key: string]: unknown;
34393
34496
  data: ModelTypes['DisputeOnRequestInput'];
34394
34497
  }
34395
- type IOutput$1J = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
34498
+ type IOutput$1K = InputType<GraphQLTypes['Mutation'], typeof mutation$T>;
34396
34499
 
34397
34500
  declare namespace disputeOnRequest {
34398
- export { type IInput$1J as IInput, type IOutput$1J as IOutput, mutation$S as mutation, name$1I as name };
34501
+ export { type IInput$1K as IInput, type IOutput$1K as IOutput, mutation$T as mutation, name$1J as name };
34399
34502
  }
34400
34503
 
34401
- declare const name$1H = "generateAssetContributionAct";
34402
- declare const mutation$R: {
34504
+ declare const name$1I = "generateAssetContributionAct";
34505
+ declare const mutation$S: {
34403
34506
  generateAssetContributionAct: [{
34404
34507
  data: Variable<"AssetContributionActGenerateDocumentInput!", "data">;
34405
34508
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34411,7 +34514,7 @@ declare const mutation$R: {
34411
34514
  meta: boolean;
34412
34515
  }];
34413
34516
  };
34414
- interface IInput$1I {
34517
+ interface IInput$1J {
34415
34518
  /**
34416
34519
  * @private
34417
34520
  */
@@ -34419,14 +34522,14 @@ interface IInput$1I {
34419
34522
  data: ModelTypes['AssetContributionActGenerateDocumentInput'];
34420
34523
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34421
34524
  }
34422
- type IOutput$1I = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
34525
+ type IOutput$1J = InputType<GraphQLTypes['Mutation'], typeof mutation$S>;
34423
34526
 
34424
34527
  declare namespace generateAssetContributionAct {
34425
- export { type IInput$1I as IInput, type IOutput$1I as IOutput, mutation$R as mutation, name$1H as name };
34528
+ export { type IInput$1J as IInput, type IOutput$1J as IOutput, mutation$S as mutation, name$1I as name };
34426
34529
  }
34427
34530
 
34428
- declare const name$1G = "generateAssetContributionDecision";
34429
- declare const mutation$Q: {
34531
+ declare const name$1H = "generateAssetContributionDecision";
34532
+ declare const mutation$R: {
34430
34533
  generateAssetContributionDecision: [{
34431
34534
  data: Variable<"AssetContributionDecisionGenerateDocumentInput!", "data">;
34432
34535
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34438,7 +34541,7 @@ declare const mutation$Q: {
34438
34541
  meta: boolean;
34439
34542
  }];
34440
34543
  };
34441
- interface IInput$1H {
34544
+ interface IInput$1I {
34442
34545
  /**
34443
34546
  * @private
34444
34547
  */
@@ -34446,14 +34549,14 @@ interface IInput$1H {
34446
34549
  data: ModelTypes['AssetContributionDecisionGenerateDocumentInput'];
34447
34550
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34448
34551
  }
34449
- type IOutput$1H = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
34552
+ type IOutput$1I = InputType<GraphQLTypes['Mutation'], typeof mutation$R>;
34450
34553
 
34451
34554
  declare namespace generateAssetContributionDecision {
34452
- export { type IInput$1H as IInput, type IOutput$1H as IOutput, mutation$Q as mutation, name$1G as name };
34555
+ export { type IInput$1I as IInput, type IOutput$1I as IOutput, mutation$R as mutation, name$1H as name };
34453
34556
  }
34454
34557
 
34455
- declare const name$1F = "generateAssetContributionStatement";
34456
- declare const mutation$P: {
34558
+ declare const name$1G = "generateAssetContributionStatement";
34559
+ declare const mutation$Q: {
34457
34560
  generateAssetContributionStatement: [{
34458
34561
  data: Variable<"AssetContributionStatementGenerateDocumentInput!", "data">;
34459
34562
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34465,7 +34568,7 @@ declare const mutation$P: {
34465
34568
  meta: boolean;
34466
34569
  }];
34467
34570
  };
34468
- interface IInput$1G {
34571
+ interface IInput$1H {
34469
34572
  /**
34470
34573
  * @private
34471
34574
  */
@@ -34473,14 +34576,14 @@ interface IInput$1G {
34473
34576
  data: ModelTypes['AssetContributionStatementGenerateDocumentInput'];
34474
34577
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34475
34578
  }
34476
- type IOutput$1G = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
34579
+ type IOutput$1H = InputType<GraphQLTypes['Mutation'], typeof mutation$Q>;
34477
34580
 
34478
34581
  declare namespace generateAssetContributionStatement {
34479
- export { type IInput$1G as IInput, type IOutput$1G as IOutput, mutation$P as mutation, name$1F as name };
34582
+ export { type IInput$1H as IInput, type IOutput$1H as IOutput, mutation$Q as mutation, name$1G as name };
34480
34583
  }
34481
34584
 
34482
- declare const name$1E = "generateReturnByAssetAct";
34483
- declare const mutation$O: {
34585
+ declare const name$1F = "generateReturnByAssetAct";
34586
+ declare const mutation$P: {
34484
34587
  generateReturnByAssetAct: [{
34485
34588
  data: Variable<"ReturnByAssetActGenerateDocumentInput!", "data">;
34486
34589
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34492,7 +34595,7 @@ declare const mutation$O: {
34492
34595
  meta: boolean;
34493
34596
  }];
34494
34597
  };
34495
- interface IInput$1F {
34598
+ interface IInput$1G {
34496
34599
  /**
34497
34600
  * @private
34498
34601
  */
@@ -34500,14 +34603,14 @@ interface IInput$1F {
34500
34603
  data: ModelTypes['ReturnByAssetActGenerateDocumentInput'];
34501
34604
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34502
34605
  }
34503
- type IOutput$1F = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
34606
+ type IOutput$1G = InputType<GraphQLTypes['Mutation'], typeof mutation$P>;
34504
34607
 
34505
34608
  declare namespace generateReturnByAssetAct {
34506
- export { type IInput$1F as IInput, type IOutput$1F as IOutput, mutation$O as mutation, name$1E as name };
34609
+ export { type IInput$1G as IInput, type IOutput$1G as IOutput, mutation$P as mutation, name$1F as name };
34507
34610
  }
34508
34611
 
34509
- declare const name$1D = "generateReturnByAssetDecision";
34510
- declare const mutation$N: {
34612
+ declare const name$1E = "generateReturnByAssetDecision";
34613
+ declare const mutation$O: {
34511
34614
  generateReturnByAssetDecision: [{
34512
34615
  data: Variable<"ReturnByAssetDecisionGenerateDocumentInput!", "data">;
34513
34616
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34519,7 +34622,7 @@ declare const mutation$N: {
34519
34622
  meta: boolean;
34520
34623
  }];
34521
34624
  };
34522
- interface IInput$1E {
34625
+ interface IInput$1F {
34523
34626
  /**
34524
34627
  * @private
34525
34628
  */
@@ -34527,14 +34630,14 @@ interface IInput$1E {
34527
34630
  data: ModelTypes['ReturnByAssetDecisionGenerateDocumentInput'];
34528
34631
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34529
34632
  }
34530
- type IOutput$1E = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
34633
+ type IOutput$1F = InputType<GraphQLTypes['Mutation'], typeof mutation$O>;
34531
34634
 
34532
34635
  declare namespace generateReturnByAssetDecision {
34533
- export { type IInput$1E as IInput, type IOutput$1E as IOutput, mutation$N as mutation, name$1D as name };
34636
+ export { type IInput$1F as IInput, type IOutput$1F as IOutput, mutation$O as mutation, name$1E as name };
34534
34637
  }
34535
34638
 
34536
- declare const name$1C = "generateReturnByAssetStatement";
34537
- declare const mutation$M: {
34639
+ declare const name$1D = "generateReturnByAssetStatement";
34640
+ declare const mutation$N: {
34538
34641
  generateReturnByAssetStatement: [{
34539
34642
  data: Variable<"ReturnByAssetStatementGenerateDocumentInput!", "data">;
34540
34643
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34546,7 +34649,7 @@ declare const mutation$M: {
34546
34649
  meta: boolean;
34547
34650
  }];
34548
34651
  };
34549
- interface IInput$1D {
34652
+ interface IInput$1E {
34550
34653
  /**
34551
34654
  * @private
34552
34655
  */
@@ -34554,14 +34657,14 @@ interface IInput$1D {
34554
34657
  data: ModelTypes['ReturnByAssetStatementGenerateDocumentInput'];
34555
34658
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34556
34659
  }
34557
- type IOutput$1D = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
34660
+ type IOutput$1E = InputType<GraphQLTypes['Mutation'], typeof mutation$N>;
34558
34661
 
34559
34662
  declare namespace generateReturnByAssetStatement {
34560
- export { type IInput$1D as IInput, type IOutput$1D as IOutput, mutation$M as mutation, name$1C as name };
34663
+ export { type IInput$1E as IInput, type IOutput$1E as IOutput, mutation$N as mutation, name$1D as name };
34561
34664
  }
34562
34665
 
34563
- declare const name$1B = "moderateRequest";
34564
- declare const mutation$L: {
34666
+ declare const name$1C = "moderateRequest";
34667
+ declare const mutation$M: {
34565
34668
  moderateRequest: [{
34566
34669
  data: Variable<"ModerateRequestInput!", "data">;
34567
34670
  }, {
@@ -34576,21 +34679,21 @@ declare const mutation$L: {
34576
34679
  transaction: boolean;
34577
34680
  }];
34578
34681
  };
34579
- interface IInput$1C {
34682
+ interface IInput$1D {
34580
34683
  /**
34581
34684
  * @private
34582
34685
  */
34583
34686
  [key: string]: unknown;
34584
34687
  data: ModelTypes['ModerateRequestInput'];
34585
34688
  }
34586
- type IOutput$1C = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
34689
+ type IOutput$1D = InputType<GraphQLTypes['Mutation'], typeof mutation$M>;
34587
34690
 
34588
34691
  declare namespace moderateRequest {
34589
- export { type IInput$1C as IInput, type IOutput$1C as IOutput, mutation$L as mutation, name$1B as name };
34692
+ export { type IInput$1D as IInput, type IOutput$1D as IOutput, mutation$M as mutation, name$1C as name };
34590
34693
  }
34591
34694
 
34592
- declare const name$1A = "prohibitRequest";
34593
- declare const mutation$K: {
34695
+ declare const name$1B = "prohibitRequest";
34696
+ declare const mutation$L: {
34594
34697
  prohibitRequest: [{
34595
34698
  data: Variable<"ProhibitRequestInput!", "data">;
34596
34699
  }, {
@@ -34605,21 +34708,21 @@ declare const mutation$K: {
34605
34708
  transaction: boolean;
34606
34709
  }];
34607
34710
  };
34608
- interface IInput$1B {
34711
+ interface IInput$1C {
34609
34712
  /**
34610
34713
  * @private
34611
34714
  */
34612
34715
  [key: string]: unknown;
34613
34716
  data: ModelTypes['ProhibitRequestInput'];
34614
34717
  }
34615
- type IOutput$1B = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
34718
+ type IOutput$1C = InputType<GraphQLTypes['Mutation'], typeof mutation$L>;
34616
34719
 
34617
34720
  declare namespace prohibitRequest {
34618
- export { type IInput$1B as IInput, type IOutput$1B as IOutput, mutation$K as mutation, name$1A as name };
34721
+ export { type IInput$1C as IInput, type IOutput$1C as IOutput, mutation$L as mutation, name$1B as name };
34619
34722
  }
34620
34723
 
34621
- declare const name$1z = "publishRequest";
34622
- declare const mutation$J: {
34724
+ declare const name$1A = "publishRequest";
34725
+ declare const mutation$K: {
34623
34726
  publishRequest: [{
34624
34727
  data: Variable<"PublishRequestInput!", "data">;
34625
34728
  }, {
@@ -34634,21 +34737,21 @@ declare const mutation$J: {
34634
34737
  transaction: boolean;
34635
34738
  }];
34636
34739
  };
34637
- interface IInput$1A {
34740
+ interface IInput$1B {
34638
34741
  /**
34639
34742
  * @private
34640
34743
  */
34641
34744
  [key: string]: unknown;
34642
34745
  data: ModelTypes['PublishRequestInput'];
34643
34746
  }
34644
- type IOutput$1A = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
34747
+ type IOutput$1B = InputType<GraphQLTypes['Mutation'], typeof mutation$K>;
34645
34748
 
34646
34749
  declare namespace publishRequest {
34647
- export { type IInput$1A as IInput, type IOutput$1A as IOutput, mutation$J as mutation, name$1z as name };
34750
+ export { type IInput$1B as IInput, type IOutput$1B as IOutput, mutation$K as mutation, name$1A as name };
34648
34751
  }
34649
34752
 
34650
- declare const name$1y = "receiveOnRequest";
34651
- declare const mutation$I: {
34753
+ declare const name$1z = "receiveOnRequest";
34754
+ declare const mutation$J: {
34652
34755
  receiveOnRequest: [{
34653
34756
  data: Variable<"ReceiveOnRequestInput!", "data">;
34654
34757
  }, {
@@ -34663,21 +34766,21 @@ declare const mutation$I: {
34663
34766
  transaction: boolean;
34664
34767
  }];
34665
34768
  };
34666
- interface IInput$1z {
34769
+ interface IInput$1A {
34667
34770
  /**
34668
34771
  * @private
34669
34772
  */
34670
34773
  [key: string]: unknown;
34671
34774
  data: ModelTypes['ReceiveOnRequestInput'];
34672
34775
  }
34673
- type IOutput$1z = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
34776
+ type IOutput$1A = InputType<GraphQLTypes['Mutation'], typeof mutation$J>;
34674
34777
 
34675
34778
  declare namespace receiveOnRequest {
34676
- export { type IInput$1z as IInput, type IOutput$1z as IOutput, mutation$I as mutation, name$1y as name };
34779
+ export { type IInput$1A as IInput, type IOutput$1A as IOutput, mutation$J as mutation, name$1z as name };
34677
34780
  }
34678
34781
 
34679
- declare const name$1x = "supplyOnRequest";
34680
- declare const mutation$H: {
34782
+ declare const name$1y = "supplyOnRequest";
34783
+ declare const mutation$I: {
34681
34784
  supplyOnRequest: [{
34682
34785
  data: Variable<"SupplyOnRequestInput!", "data">;
34683
34786
  }, {
@@ -34692,21 +34795,21 @@ declare const mutation$H: {
34692
34795
  transaction: boolean;
34693
34796
  }];
34694
34797
  };
34695
- interface IInput$1y {
34798
+ interface IInput$1z {
34696
34799
  /**
34697
34800
  * @private
34698
34801
  */
34699
34802
  [key: string]: unknown;
34700
34803
  data: ModelTypes['SupplyOnRequestInput'];
34701
34804
  }
34702
- type IOutput$1y = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
34805
+ type IOutput$1z = InputType<GraphQLTypes['Mutation'], typeof mutation$I>;
34703
34806
 
34704
34807
  declare namespace supplyOnRequest {
34705
- export { type IInput$1y as IInput, type IOutput$1y as IOutput, mutation$H as mutation, name$1x as name };
34808
+ export { type IInput$1z as IInput, type IOutput$1z as IOutput, mutation$I as mutation, name$1y as name };
34706
34809
  }
34707
34810
 
34708
- declare const name$1w = "unpublishRequest";
34709
- declare const mutation$G: {
34811
+ declare const name$1x = "unpublishRequest";
34812
+ declare const mutation$H: {
34710
34813
  unpublishRequest: [{
34711
34814
  data: Variable<"UnpublishRequestInput!", "data">;
34712
34815
  }, {
@@ -34721,21 +34824,21 @@ declare const mutation$G: {
34721
34824
  transaction: boolean;
34722
34825
  }];
34723
34826
  };
34724
- interface IInput$1x {
34827
+ interface IInput$1y {
34725
34828
  /**
34726
34829
  * @private
34727
34830
  */
34728
34831
  [key: string]: unknown;
34729
34832
  data: ModelTypes['UnpublishRequestInput'];
34730
34833
  }
34731
- type IOutput$1x = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
34834
+ type IOutput$1y = InputType<GraphQLTypes['Mutation'], typeof mutation$H>;
34732
34835
 
34733
34836
  declare namespace unpublishRequest {
34734
- export { type IInput$1x as IInput, type IOutput$1x as IOutput, mutation$G as mutation, name$1w as name };
34837
+ export { type IInput$1y as IInput, type IOutput$1y as IOutput, mutation$H as mutation, name$1x as name };
34735
34838
  }
34736
34839
 
34737
- declare const name$1v = "updateRequest";
34738
- declare const mutation$F: {
34840
+ declare const name$1w = "updateRequest";
34841
+ declare const mutation$G: {
34739
34842
  updateRequest: [{
34740
34843
  data: Variable<"UpdateRequestInput!", "data">;
34741
34844
  }, {
@@ -34750,17 +34853,17 @@ declare const mutation$F: {
34750
34853
  transaction: boolean;
34751
34854
  }];
34752
34855
  };
34753
- interface IInput$1w {
34856
+ interface IInput$1x {
34754
34857
  /**
34755
34858
  * @private
34756
34859
  */
34757
34860
  [key: string]: unknown;
34758
34861
  data: ModelTypes['UpdateRequestInput'];
34759
34862
  }
34760
- type IOutput$1w = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
34863
+ type IOutput$1x = InputType<GraphQLTypes['Mutation'], typeof mutation$G>;
34761
34864
 
34762
34865
  declare namespace updateRequest {
34763
- export { type IInput$1w as IInput, type IOutput$1w as IOutput, mutation$F as mutation, name$1v as name };
34866
+ export { type IInput$1x as IInput, type IOutput$1x as IOutput, mutation$G as mutation, name$1w as name };
34764
34867
  }
34765
34868
 
34766
34869
  /** Подтвердить поставку имущества на заявку */
@@ -34769,8 +34872,8 @@ declare namespace index$t {
34769
34872
  export { acceptChildOrder as AcceptChildOrder, cancelRequest as CancelRequest, completeReceiveOnRequest as CompleteReceiveOnRequest, completeRequest as CompleteRequest, confirmSupplyOnRequest as ConfirmSupplyOnRequest, createChildOrder as CreateChildOrder, createParentOffer as CreateParentOffer, declineRequest as DeclineRequest, deliverOnRequest as DeliverOnRequest, disputeOnRequest as DisputeOnRequest, generateAssetContributionAct as GenerateAssetContributionAct, generateAssetContributionDecision as GenerateAssetContributionDecision, generateAssetContributionStatement as GenerateAssetContributionStatement, generateReturnByAssetAct as GenerateReturnByAssetAct, generateReturnByAssetDecision as GenerateReturnByAssetDecision, generateReturnByAssetStatement as GenerateReturnByAssetStatement, moderateRequest as ModerateRequest, prohibitRequest as ProhibitRequest, publishRequest as PublishRequest, receiveOnRequest as ReceiveOnRequest, supplyOnRequest as SupplyOnRequest, unpublishRequest as UnpublishRequest, updateRequest as UpdateRequest };
34770
34873
  }
34771
34874
 
34772
- declare const name$1u = "installExtension";
34773
- declare const mutation$E: {
34875
+ declare const name$1v = "installExtension";
34876
+ declare const mutation$F: {
34774
34877
  installExtension: [{
34775
34878
  data: Variable<"ExtensionInput!", "data">;
34776
34879
  }, {
@@ -34799,40 +34902,40 @@ declare const mutation$E: {
34799
34902
  instructions: boolean;
34800
34903
  }];
34801
34904
  };
34802
- interface IInput$1v {
34905
+ interface IInput$1w {
34803
34906
  /**
34804
34907
  * @private
34805
34908
  */
34806
34909
  [key: string]: unknown;
34807
34910
  data: ModelTypes['ExtensionInput'];
34808
34911
  }
34809
- type IOutput$1v = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
34912
+ type IOutput$1w = InputType<GraphQLTypes['Mutation'], typeof mutation$F>;
34810
34913
 
34811
34914
  declare namespace installExtension {
34812
- export { type IInput$1v as IInput, type IOutput$1v as IOutput, mutation$E as mutation, name$1u as name };
34915
+ export { type IInput$1w as IInput, type IOutput$1w as IOutput, mutation$F as mutation, name$1v as name };
34813
34916
  }
34814
34917
 
34815
- declare const name$1t = "uninstallExtension";
34816
- declare const mutation$D: {
34918
+ declare const name$1u = "uninstallExtension";
34919
+ declare const mutation$E: {
34817
34920
  uninstallExtension: [{
34818
34921
  data: Variable<"UninstallExtensionInput!", "data">;
34819
34922
  }, true];
34820
34923
  };
34821
- interface IInput$1u {
34924
+ interface IInput$1v {
34822
34925
  /**
34823
34926
  * @private
34824
34927
  */
34825
34928
  [key: string]: unknown;
34826
34929
  data: ModelTypes['UninstallExtensionInput'];
34827
34930
  }
34828
- type IOutput$1u = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
34931
+ type IOutput$1v = InputType<GraphQLTypes['Mutation'], typeof mutation$E>;
34829
34932
 
34830
34933
  declare namespace uninstallExtension {
34831
- export { type IInput$1u as IInput, type IOutput$1u as IOutput, mutation$D as mutation, name$1t as name };
34934
+ export { type IInput$1v as IInput, type IOutput$1v as IOutput, mutation$E as mutation, name$1u as name };
34832
34935
  }
34833
34936
 
34834
- declare const name$1s = "updateExtension";
34835
- declare const mutation$C: {
34937
+ declare const name$1t = "updateExtension";
34938
+ declare const mutation$D: {
34836
34939
  updateExtension: [{
34837
34940
  data: Variable<"ExtensionInput!", "data">;
34838
34941
  }, {
@@ -34861,17 +34964,17 @@ declare const mutation$C: {
34861
34964
  instructions: boolean;
34862
34965
  }];
34863
34966
  };
34864
- interface IInput$1t {
34967
+ interface IInput$1u {
34865
34968
  /**
34866
34969
  * @private
34867
34970
  */
34868
34971
  [key: string]: unknown;
34869
34972
  data: ModelTypes['ExtensionInput'];
34870
34973
  }
34871
- type IOutput$1t = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
34974
+ type IOutput$1u = InputType<GraphQLTypes['Mutation'], typeof mutation$D>;
34872
34975
 
34873
34976
  declare namespace updateExtension {
34874
- export { type IInput$1t as IInput, type IOutput$1t as IOutput, mutation$C as mutation, name$1s as name };
34977
+ export { type IInput$1u as IInput, type IOutput$1u as IOutput, mutation$D as mutation, name$1t as name };
34875
34978
  }
34876
34979
 
34877
34980
  /** Установить расширение */
@@ -34880,8 +34983,8 @@ declare namespace index$s {
34880
34983
  export { installExtension as InstallExtension, uninstallExtension as UninstallExtension, updateExtension as UpdateExtension };
34881
34984
  }
34882
34985
 
34883
- declare const name$1r = "generateProjectOfFreeDecision";
34884
- declare const mutation$B: {
34986
+ declare const name$1s = "generateProjectOfFreeDecision";
34987
+ declare const mutation$C: {
34885
34988
  generateProjectOfFreeDecision: [{
34886
34989
  data: Variable<"ProjectFreeDecisionGenerateDocumentInput!", "data">;
34887
34990
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34893,7 +34996,7 @@ declare const mutation$B: {
34893
34996
  meta: boolean;
34894
34997
  }];
34895
34998
  };
34896
- interface IInput$1s {
34999
+ interface IInput$1t {
34897
35000
  /**
34898
35001
  * @private
34899
35002
  */
@@ -34901,14 +35004,14 @@ interface IInput$1s {
34901
35004
  data: ModelTypes['ProjectFreeDecisionGenerateDocumentInput'];
34902
35005
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34903
35006
  }
34904
- type IOutput$1s = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
35007
+ type IOutput$1t = InputType<GraphQLTypes['Mutation'], typeof mutation$C>;
34905
35008
 
34906
35009
  declare namespace generateProjectOfFreeDecisionDocument {
34907
- export { type IInput$1s as IInput, type IOutput$1s as IOutput, mutation$B as mutation, name$1r as name };
35010
+ export { type IInput$1t as IInput, type IOutput$1t as IOutput, mutation$C as mutation, name$1s as name };
34908
35011
  }
34909
35012
 
34910
- declare const name$1q = "generateFreeDecision";
34911
- declare const mutation$A: {
35013
+ declare const name$1r = "generateFreeDecision";
35014
+ declare const mutation$B: {
34912
35015
  generateFreeDecision: [{
34913
35016
  data: Variable<"FreeDecisionGenerateDocumentInput!", "data">;
34914
35017
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -34920,7 +35023,7 @@ declare const mutation$A: {
34920
35023
  meta: boolean;
34921
35024
  }];
34922
35025
  };
34923
- interface IInput$1r {
35026
+ interface IInput$1s {
34924
35027
  /**
34925
35028
  * @private
34926
35029
  */
@@ -34928,33 +35031,33 @@ interface IInput$1r {
34928
35031
  data: ModelTypes['FreeDecisionGenerateDocumentInput'];
34929
35032
  options?: ModelTypes['GenerateDocumentOptionsInput'];
34930
35033
  }
34931
- type IOutput$1r = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
35034
+ type IOutput$1s = InputType<GraphQLTypes['Mutation'], typeof mutation$B>;
34932
35035
 
34933
35036
  declare namespace generateFreeDecision {
34934
- export { type IInput$1r as IInput, type IOutput$1r as IOutput, mutation$A as mutation, name$1q as name };
35037
+ export { type IInput$1s as IInput, type IOutput$1s as IOutput, mutation$B as mutation, name$1r as name };
34935
35038
  }
34936
35039
 
34937
- declare const name$1p = "publishProjectOfFreeDecision";
34938
- declare const mutation$z: {
35040
+ declare const name$1q = "publishProjectOfFreeDecision";
35041
+ declare const mutation$A: {
34939
35042
  publishProjectOfFreeDecision: [{
34940
35043
  data: Variable<"PublishProjectFreeDecisionInput!", "data">;
34941
35044
  }, true];
34942
35045
  };
34943
- interface IInput$1q {
35046
+ interface IInput$1r {
34944
35047
  /**
34945
35048
  * @private
34946
35049
  */
34947
35050
  [key: string]: unknown;
34948
35051
  data: ModelTypes['PublishProjectFreeDecisionInput'];
34949
35052
  }
34950
- type IOutput$1q = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
35053
+ type IOutput$1r = InputType<GraphQLTypes['Mutation'], typeof mutation$A>;
34951
35054
 
34952
35055
  declare namespace publishProjectOfFreeDecision {
34953
- export { type IInput$1q as IInput, type IOutput$1q as IOutput, mutation$z as mutation, name$1p as name };
35056
+ export { type IInput$1r as IInput, type IOutput$1r as IOutput, mutation$A as mutation, name$1q as name };
34954
35057
  }
34955
35058
 
34956
- declare const name$1o = "createProjectOfFreeDecision";
34957
- declare const mutation$y: {
35059
+ declare const name$1p = "createProjectOfFreeDecision";
35060
+ declare const mutation$z: {
34958
35061
  createProjectOfFreeDecision: [{
34959
35062
  data: Variable<"CreateProjectFreeDecisionInput!", "data">;
34960
35063
  }, {
@@ -34963,17 +35066,17 @@ declare const mutation$y: {
34963
35066
  question: boolean;
34964
35067
  }];
34965
35068
  };
34966
- interface IInput$1p {
35069
+ interface IInput$1q {
34967
35070
  /**
34968
35071
  * @private
34969
35072
  */
34970
35073
  [key: string]: unknown;
34971
35074
  data: ModelTypes['CreateProjectFreeDecisionInput'];
34972
35075
  }
34973
- type IOutput$1p = InputType<GraphQLTypes['Mutation'], typeof mutation$y>;
35076
+ type IOutput$1q = InputType<GraphQLTypes['Mutation'], typeof mutation$z>;
34974
35077
 
34975
35078
  declare namespace createProjectOfFreeDecision {
34976
- export { type IInput$1p as IInput, type IOutput$1p as IOutput, mutation$y as mutation, name$1o as name };
35079
+ export { type IInput$1q as IInput, type IOutput$1q as IOutput, mutation$z as mutation, name$1p as name };
34977
35080
  }
34978
35081
 
34979
35082
  /** Сгенерировать документ проекта свободного решения */
@@ -34982,8 +35085,8 @@ declare namespace index$r {
34982
35085
  export { createProjectOfFreeDecision as CreateProjectOfFreeDecision, generateFreeDecision as GenerateFreeDecision, generateProjectOfFreeDecisionDocument as GenerateProjectOfFreeDecision, publishProjectOfFreeDecision as PublishProjectOfFreeDecision };
34983
35086
  }
34984
35087
 
34985
- declare const name$1n = "setPaymentStatus";
34986
- declare const mutation$x: {
35088
+ declare const name$1o = "setPaymentStatus";
35089
+ declare const mutation$y: {
34987
35090
  setPaymentStatus: [{
34988
35091
  data: Variable<"SetPaymentStatusInput!", "data">;
34989
35092
  }, {
@@ -35054,19 +35157,19 @@ declare const mutation$x: {
35054
35157
  is_final: boolean;
35055
35158
  }];
35056
35159
  };
35057
- interface IInput$1o {
35160
+ interface IInput$1p {
35058
35161
  data: ModelTypes['SetPaymentStatusInput'];
35059
35162
  }
35060
- type IOutput$1o = {
35061
- [name$1n]: ModelTypes['GatewayPayment'];
35163
+ type IOutput$1p = {
35164
+ [name$1o]: ModelTypes['GatewayPayment'];
35062
35165
  };
35063
35166
 
35064
35167
  declare namespace updatePaymentStatus {
35065
- export { type IInput$1o as IInput, type IOutput$1o as IOutput, mutation$x as mutation, name$1n as name };
35168
+ export { type IInput$1p as IInput, type IOutput$1p as IOutput, mutation$y as mutation, name$1o as name };
35066
35169
  }
35067
35170
 
35068
- declare const name$1m = "createInitialPayment";
35069
- declare const mutation$w: {
35171
+ declare const name$1n = "createInitialPayment";
35172
+ declare const mutation$x: {
35070
35173
  createInitialPayment: [{
35071
35174
  data: Variable<"CreateInitialPaymentInput!", "data">;
35072
35175
  }, {
@@ -35137,17 +35240,17 @@ declare const mutation$w: {
35137
35240
  is_final: boolean;
35138
35241
  }];
35139
35242
  };
35140
- interface IInput$1n {
35243
+ interface IInput$1o {
35141
35244
  data: ModelTypes['CreateInitialPaymentInput'];
35142
35245
  }
35143
- type IOutput$1n = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
35246
+ type IOutput$1o = InputType<GraphQLTypes['Mutation'], typeof mutation$x>;
35144
35247
 
35145
35248
  declare namespace createInitialPayment$1 {
35146
- export { type IInput$1n as IInput, type IOutput$1n as IOutput, mutation$w as mutation, name$1m as name };
35249
+ export { type IInput$1o as IInput, type IOutput$1o as IOutput, mutation$x as mutation, name$1n as name };
35147
35250
  }
35148
35251
 
35149
- declare const name$1l = "createDepositPayment";
35150
- declare const mutation$v: {
35252
+ declare const name$1m = "createDepositPayment";
35253
+ declare const mutation$w: {
35151
35254
  createDepositPayment: [{
35152
35255
  data: Variable<"CreateDepositPaymentInput!", "data">;
35153
35256
  }, {
@@ -35218,13 +35321,13 @@ declare const mutation$v: {
35218
35321
  is_final: boolean;
35219
35322
  }];
35220
35323
  };
35221
- interface IInput$1m {
35324
+ interface IInput$1n {
35222
35325
  data: ModelTypes['CreateDepositPaymentInput'];
35223
35326
  }
35224
- type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$v>;
35327
+ type IOutput$1n = InputType<GraphQLTypes['Mutation'], typeof mutation$w>;
35225
35328
 
35226
35329
  declare namespace createDepositPayment$1 {
35227
- export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$v as mutation, name$1l as name };
35330
+ export { type IInput$1n as IInput, type IOutput$1n as IOutput, mutation$w as mutation, name$1m as name };
35228
35331
  }
35229
35332
 
35230
35333
  /** Управление статусом платежа осущствляется мутацией setPaymentStatus. При переходе платежа в статус PAID вызывается эффект в блокчейне, который завершает операцию автоматическим переводом платежа в статус COMPLETED. При установке статуса REFUNDED запускается процесс отмены платежа в блокчейне. Остальные статусы не приводят к эффектам в блокчейне. */
@@ -35233,11 +35336,11 @@ declare namespace index$q {
35233
35336
  export { createDepositPayment$1 as CreateDepositPayment, createInitialPayment$1 as CreateInitialPayment, updatePaymentStatus as SetPaymentStatus };
35234
35337
  }
35235
35338
 
35236
- declare const name$1k = "createAnnualGeneralMeet";
35339
+ declare const name$1l = "createAnnualGeneralMeet";
35237
35340
  /**
35238
35341
  * Сгенерировать документ предложения повестки очередного общего собрания пайщиков
35239
35342
  */
35240
- declare const mutation$u: {
35343
+ declare const mutation$v: {
35241
35344
  createAnnualGeneralMeet: [{
35242
35345
  data: Variable<"CreateAnnualGeneralMeetInput!", "data">;
35243
35346
  }, {
@@ -35947,24 +36050,24 @@ declare const mutation$u: {
35947
36050
  };
35948
36051
  }];
35949
36052
  };
35950
- interface IInput$1l {
36053
+ interface IInput$1m {
35951
36054
  /**
35952
36055
  * @private
35953
36056
  */
35954
36057
  [key: string]: unknown;
35955
36058
  data: ModelTypes['CreateAnnualGeneralMeetInput'];
35956
36059
  }
35957
- type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
36060
+ type IOutput$1m = InputType<GraphQLTypes['Mutation'], typeof mutation$v>;
35958
36061
 
35959
36062
  declare namespace createAnnualGeneralMeet {
35960
- export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$u as mutation, name$1k as name };
36063
+ export { type IInput$1m as IInput, type IOutput$1m as IOutput, mutation$v as mutation, name$1l as name };
35961
36064
  }
35962
36065
 
35963
- declare const name$1j = "generateAnnualGeneralMeetAgendaDocument";
36066
+ declare const name$1k = "generateAnnualGeneralMeetAgendaDocument";
35964
36067
  /**
35965
36068
  * Генерация документа повестки годового общего собрания пайщиков
35966
36069
  */
35967
- declare const mutation$t: {
36070
+ declare const mutation$u: {
35968
36071
  generateAnnualGeneralMeetAgendaDocument: [{
35969
36072
  data: Variable<"AnnualGeneralMeetingAgendaGenerateDocumentInput!", "data">;
35970
36073
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -35976,7 +36079,7 @@ declare const mutation$t: {
35976
36079
  meta: boolean;
35977
36080
  }];
35978
36081
  };
35979
- interface IInput$1k {
36082
+ interface IInput$1l {
35980
36083
  /**
35981
36084
  * @private
35982
36085
  */
@@ -35984,17 +36087,17 @@ interface IInput$1k {
35984
36087
  data: ModelTypes['AnnualGeneralMeetingAgendaGenerateDocumentInput'];
35985
36088
  options?: ModelTypes['GenerateDocumentOptionsInput'];
35986
36089
  }
35987
- type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
36090
+ type IOutput$1l = InputType<GraphQLTypes['Mutation'], typeof mutation$u>;
35988
36091
 
35989
36092
  declare namespace generateAnnualGeneralMeetAgendaDocument {
35990
- export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$t as mutation, name$1j as name };
36093
+ export { type IInput$1l as IInput, type IOutput$1l as IOutput, mutation$u as mutation, name$1k as name };
35991
36094
  }
35992
36095
 
35993
- declare const name$1i = "generateAnnualGeneralMeetDecisionDocument";
36096
+ declare const name$1j = "generateAnnualGeneralMeetDecisionDocument";
35994
36097
  /**
35995
36098
  * Генерация документа решения годового общего собрания пайщиков
35996
36099
  */
35997
- declare const mutation$s: {
36100
+ declare const mutation$t: {
35998
36101
  generateAnnualGeneralMeetDecisionDocument: [{
35999
36102
  data: Variable<"AnnualGeneralMeetingDecisionGenerateDocumentInput!", "data">;
36000
36103
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -36006,7 +36109,7 @@ declare const mutation$s: {
36006
36109
  meta: boolean;
36007
36110
  }];
36008
36111
  };
36009
- interface IInput$1j {
36112
+ interface IInput$1k {
36010
36113
  /**
36011
36114
  * @private
36012
36115
  */
@@ -36014,17 +36117,17 @@ interface IInput$1j {
36014
36117
  data: ModelTypes['AnnualGeneralMeetingDecisionGenerateDocumentInput'];
36015
36118
  options?: ModelTypes['GenerateDocumentOptionsInput'];
36016
36119
  }
36017
- type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
36120
+ type IOutput$1k = InputType<GraphQLTypes['Mutation'], typeof mutation$t>;
36018
36121
 
36019
36122
  declare namespace generateAnnualGeneralMeetDecisionDocument {
36020
- export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$s as mutation, name$1i as name };
36123
+ export { type IInput$1k as IInput, type IOutput$1k as IOutput, mutation$t as mutation, name$1j as name };
36021
36124
  }
36022
36125
 
36023
- declare const name$1h = "generateAnnualGeneralMeetNotificationDocument";
36126
+ declare const name$1i = "generateAnnualGeneralMeetNotificationDocument";
36024
36127
  /**
36025
36128
  * Генерация документа уведомления о проведении годового общего собрания пайщиков
36026
36129
  */
36027
- declare const mutation$r: {
36130
+ declare const mutation$s: {
36028
36131
  generateAnnualGeneralMeetNotificationDocument: [{
36029
36132
  data: Variable<"AnnualGeneralMeetingNotificationGenerateDocumentInput!", "data">;
36030
36133
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -36036,7 +36139,7 @@ declare const mutation$r: {
36036
36139
  meta: boolean;
36037
36140
  }];
36038
36141
  };
36039
- interface IInput$1i {
36142
+ interface IInput$1j {
36040
36143
  /**
36041
36144
  * @private
36042
36145
  */
@@ -36044,17 +36147,17 @@ interface IInput$1i {
36044
36147
  data: ModelTypes['AnnualGeneralMeetingNotificationGenerateDocumentInput'];
36045
36148
  options?: ModelTypes['GenerateDocumentOptionsInput'];
36046
36149
  }
36047
- type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
36150
+ type IOutput$1j = InputType<GraphQLTypes['Mutation'], typeof mutation$s>;
36048
36151
 
36049
36152
  declare namespace generateAnnualGeneralMeetNotificationDocument {
36050
- export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$r as mutation, name$1h as name };
36153
+ export { type IInput$1j as IInput, type IOutput$1j as IOutput, mutation$s as mutation, name$1i as name };
36051
36154
  }
36052
36155
 
36053
- declare const name$1g = "generateBallotForAnnualGeneralMeetDocument";
36156
+ declare const name$1h = "generateBallotForAnnualGeneralMeetDocument";
36054
36157
  /**
36055
36158
  * Генерация бюллетеня для голосования на общем собрании пайщиков
36056
36159
  */
36057
- declare const mutation$q: {
36160
+ declare const mutation$r: {
36058
36161
  generateBallotForAnnualGeneralMeetDocument: [{
36059
36162
  data: Variable<"AnnualGeneralMeetingVotingBallotGenerateDocumentInput!", "data">;
36060
36163
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -36066,7 +36169,7 @@ declare const mutation$q: {
36066
36169
  meta: boolean;
36067
36170
  }];
36068
36171
  };
36069
- interface IInput$1h {
36172
+ interface IInput$1i {
36070
36173
  /**
36071
36174
  * @private
36072
36175
  */
@@ -36074,17 +36177,17 @@ interface IInput$1h {
36074
36177
  data: ModelTypes['AnnualGeneralMeetingVotingBallotGenerateDocumentInput'];
36075
36178
  options?: ModelTypes['GenerateDocumentOptionsInput'];
36076
36179
  }
36077
- type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
36180
+ type IOutput$1i = InputType<GraphQLTypes['Mutation'], typeof mutation$r>;
36078
36181
 
36079
36182
  declare namespace generateBallotForAnnualGeneralMeetDocument {
36080
- export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$q as mutation, name$1g as name };
36183
+ export { type IInput$1i as IInput, type IOutput$1i as IOutput, mutation$r as mutation, name$1h as name };
36081
36184
  }
36082
36185
 
36083
- declare const name$1f = "generateSovietDecisionOnAnnualMeetDocument";
36186
+ declare const name$1g = "generateSovietDecisionOnAnnualMeetDocument";
36084
36187
  /**
36085
36188
  * Генерация документа решения совета о проведении годового общего собрания пайщиков
36086
36189
  */
36087
- declare const mutation$p: {
36190
+ declare const mutation$q: {
36088
36191
  generateSovietDecisionOnAnnualMeetDocument: [{
36089
36192
  data: Variable<"AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!", "data">;
36090
36193
  options: Variable<"GenerateDocumentOptionsInput", "options">;
@@ -36096,7 +36199,7 @@ declare const mutation$p: {
36096
36199
  meta: boolean;
36097
36200
  }];
36098
36201
  };
36099
- interface IInput$1g {
36202
+ interface IInput$1h {
36100
36203
  /**
36101
36204
  * @private
36102
36205
  */
@@ -36104,17 +36207,17 @@ interface IInput$1g {
36104
36207
  data: ModelTypes['AnnualGeneralMeetingSovietDecisionGenerateDocumentInput'];
36105
36208
  options?: ModelTypes['GenerateDocumentOptionsInput'];
36106
36209
  }
36107
- type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
36210
+ type IOutput$1h = InputType<GraphQLTypes['Mutation'], typeof mutation$q>;
36108
36211
 
36109
36212
  declare namespace generateSovietDecisionOnAnnualMeetDocument {
36110
- export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$p as mutation, name$1f as name };
36213
+ export { type IInput$1h as IInput, type IOutput$1h as IOutput, mutation$q as mutation, name$1g as name };
36111
36214
  }
36112
36215
 
36113
- declare const name$1e = "notifyOnAnnualGeneralMeet";
36216
+ declare const name$1f = "notifyOnAnnualGeneralMeet";
36114
36217
  /**
36115
36218
  * Уведомление о проведении общего собрания пайщиков
36116
36219
  */
36117
- declare const mutation$o: {
36220
+ declare const mutation$p: {
36118
36221
  notifyOnAnnualGeneralMeet: [{
36119
36222
  data: Variable<"NotifyOnAnnualGeneralMeetInput!", "data">;
36120
36223
  }, {
@@ -36824,24 +36927,24 @@ declare const mutation$o: {
36824
36927
  };
36825
36928
  }];
36826
36929
  };
36827
- interface IInput$1f {
36930
+ interface IInput$1g {
36828
36931
  /**
36829
36932
  * @private
36830
36933
  */
36831
36934
  [key: string]: unknown;
36832
36935
  data: ModelTypes['NotifyOnAnnualGeneralMeetInput'];
36833
36936
  }
36834
- type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
36937
+ type IOutput$1g = InputType<GraphQLTypes['Mutation'], typeof mutation$p>;
36835
36938
 
36836
36939
  declare namespace notifyOnAnnualGeneralMeet {
36837
- export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$o as mutation, name$1e as name };
36940
+ export { type IInput$1g as IInput, type IOutput$1g as IOutput, mutation$p as mutation, name$1f as name };
36838
36941
  }
36839
36942
 
36840
- declare const name$1d = "restartAnnualGeneralMeet";
36943
+ declare const name$1e = "restartAnnualGeneralMeet";
36841
36944
  /**
36842
36945
  * Перезапуск годового общего собрания пайщиков
36843
36946
  */
36844
- declare const mutation$n: {
36947
+ declare const mutation$o: {
36845
36948
  restartAnnualGeneralMeet: [{
36846
36949
  data: Variable<"RestartAnnualGeneralMeetInput!", "data">;
36847
36950
  }, {
@@ -37551,24 +37654,24 @@ declare const mutation$n: {
37551
37654
  };
37552
37655
  }];
37553
37656
  };
37554
- interface IInput$1e {
37657
+ interface IInput$1f {
37555
37658
  /**
37556
37659
  * @private
37557
37660
  */
37558
37661
  [key: string]: unknown;
37559
37662
  data: ModelTypes['RestartAnnualGeneralMeetInput'];
37560
37663
  }
37561
- type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
37664
+ type IOutput$1f = InputType<GraphQLTypes['Mutation'], typeof mutation$o>;
37562
37665
 
37563
37666
  declare namespace restartAnnualGeneralMeet {
37564
- export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$n as mutation, name$1d as name };
37667
+ export { type IInput$1f as IInput, type IOutput$1f as IOutput, mutation$o as mutation, name$1e as name };
37565
37668
  }
37566
37669
 
37567
- declare const name$1c = "signByPresiderOnAnnualGeneralMeet";
37670
+ declare const name$1d = "signByPresiderOnAnnualGeneralMeet";
37568
37671
  /**
37569
37672
  * Подписание решения председателем на годовом общем собрании пайщиков
37570
37673
  */
37571
- declare const mutation$m: {
37674
+ declare const mutation$n: {
37572
37675
  signByPresiderOnAnnualGeneralMeet: [{
37573
37676
  data: Variable<"SignByPresiderOnAnnualGeneralMeetInput!", "data">;
37574
37677
  }, {
@@ -38278,24 +38381,24 @@ declare const mutation$m: {
38278
38381
  };
38279
38382
  }];
38280
38383
  };
38281
- interface IInput$1d {
38384
+ interface IInput$1e {
38282
38385
  /**
38283
38386
  * @private
38284
38387
  */
38285
38388
  [key: string]: unknown;
38286
38389
  data: ModelTypes['SignByPresiderOnAnnualGeneralMeetInput'];
38287
38390
  }
38288
- type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
38391
+ type IOutput$1e = InputType<GraphQLTypes['Mutation'], typeof mutation$n>;
38289
38392
 
38290
38393
  declare namespace signByPresiderOnAnnualGeneralMeet {
38291
- export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$m as mutation, name$1c as name };
38394
+ export { type IInput$1e as IInput, type IOutput$1e as IOutput, mutation$n as mutation, name$1d as name };
38292
38395
  }
38293
38396
 
38294
- declare const name$1b = "signBySecretaryOnAnnualGeneralMeet";
38397
+ declare const name$1c = "signBySecretaryOnAnnualGeneralMeet";
38295
38398
  /**
38296
38399
  * Подписание решения секретарём на годовом общем собрании пайщиков
38297
38400
  */
38298
- declare const mutation$l: {
38401
+ declare const mutation$m: {
38299
38402
  signBySecretaryOnAnnualGeneralMeet: [{
38300
38403
  data: Variable<"SignBySecretaryOnAnnualGeneralMeetInput!", "data">;
38301
38404
  }, {
@@ -39005,24 +39108,24 @@ declare const mutation$l: {
39005
39108
  };
39006
39109
  }];
39007
39110
  };
39008
- interface IInput$1c {
39111
+ interface IInput$1d {
39009
39112
  /**
39010
39113
  * @private
39011
39114
  */
39012
39115
  [key: string]: unknown;
39013
39116
  data: ModelTypes['SignBySecretaryOnAnnualGeneralMeetInput'];
39014
39117
  }
39015
- type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
39118
+ type IOutput$1d = InputType<GraphQLTypes['Mutation'], typeof mutation$m>;
39016
39119
 
39017
39120
  declare namespace signBySecretaryOnAnnualGeneralMeet {
39018
- export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$l as mutation, name$1b as name };
39121
+ export { type IInput$1d as IInput, type IOutput$1d as IOutput, mutation$m as mutation, name$1c as name };
39019
39122
  }
39020
39123
 
39021
- declare const name$1a = "voteOnAnnualGeneralMeet";
39124
+ declare const name$1b = "voteOnAnnualGeneralMeet";
39022
39125
  /**
39023
39126
  * Голосование на общем собрании пайщиков
39024
39127
  */
39025
- declare const mutation$k: {
39128
+ declare const mutation$l: {
39026
39129
  voteOnAnnualGeneralMeet: [{
39027
39130
  data: Variable<"VoteOnAnnualGeneralMeetInput!", "data">;
39028
39131
  }, {
@@ -39732,17 +39835,17 @@ declare const mutation$k: {
39732
39835
  };
39733
39836
  }];
39734
39837
  };
39735
- interface IInput$1b {
39838
+ interface IInput$1c {
39736
39839
  /**
39737
39840
  * @private
39738
39841
  */
39739
39842
  [key: string]: unknown;
39740
39843
  data: ModelTypes['VoteOnAnnualGeneralMeetInput'];
39741
39844
  }
39742
- type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
39845
+ type IOutput$1c = InputType<GraphQLTypes['Mutation'], typeof mutation$l>;
39743
39846
 
39744
39847
  declare namespace voteOnAnnualGeneralMeet {
39745
- export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$k as mutation, name$1a as name };
39848
+ export { type IInput$1c as IInput, type IOutput$1c as IOutput, mutation$l as mutation, name$1b as name };
39746
39849
  }
39747
39850
 
39748
39851
  /** Сгенерировать документ предложения повестки очередного общего собрания пайщиков */
@@ -39751,11 +39854,11 @@ declare namespace index$p {
39751
39854
  export { createAnnualGeneralMeet as CreateAnnualGeneralMeet, generateAnnualGeneralMeetAgendaDocument as GenerateAnnualGeneralMeetAgendaDocument, generateAnnualGeneralMeetDecisionDocument as GenerateAnnualGeneralMeetDecisionDocument, generateAnnualGeneralMeetNotificationDocument as GenerateAnnualGeneralMeetNotificationDocument, generateBallotForAnnualGeneralMeetDocument as GenerateBallotForAnnualGeneralMeetDocument, generateSovietDecisionOnAnnualMeetDocument as GenerateSovietDecisionOnAnnualMeetDocument, notifyOnAnnualGeneralMeet as NotifyOnAnnualGeneralMeet, restartAnnualGeneralMeet as RestartAnnualGeneralMeet, signByPresiderOnAnnualGeneralMeet as SignByPresiderOnAnnualGeneralMeet, signBySecretaryOnAnnualGeneralMeet as SignBySecretaryOnAnnualGeneralMeet, voteOnAnnualGeneralMeet as VoteOnAnnualGeneralMeet };
39752
39855
  }
39753
39856
 
39754
- declare const name$19 = "createWebPushSubscription";
39857
+ declare const name$1a = "createWebPushSubscription";
39755
39858
  /**
39756
39859
  * Создать веб-пуш подписку для пользователя
39757
39860
  */
39758
- declare const mutation$j: {
39861
+ declare const mutation$k: {
39759
39862
  createWebPushSubscription: [{
39760
39863
  data: Variable<"CreateSubscriptionInput!", "data">;
39761
39864
  }, {
@@ -39774,45 +39877,72 @@ declare const mutation$j: {
39774
39877
  };
39775
39878
  }];
39776
39879
  };
39777
- interface IInput$1a {
39880
+ interface IInput$1b {
39778
39881
  /**
39779
39882
  * @private
39780
39883
  */
39781
39884
  [key: string]: unknown;
39782
39885
  data: ModelTypes['CreateSubscriptionInput'];
39783
39886
  }
39784
- type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
39887
+ type IOutput$1b = InputType<GraphQLTypes['Mutation'], typeof mutation$k>;
39785
39888
 
39786
39889
  declare namespace createWebPushSubscription {
39787
- export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$j as mutation, name$19 as name };
39890
+ export { type IInput$1b as IInput, type IOutput$1b as IOutput, mutation$k as mutation, name$1a as name };
39788
39891
  }
39789
39892
 
39790
- declare const name$18 = "deactivateWebPushSubscriptionById";
39893
+ declare const name$19 = "deactivateWebPushSubscriptionById";
39791
39894
  /**
39792
39895
  * Деактивировать веб-пуш подписку по ID
39793
39896
  */
39794
- declare const mutation$i: {
39897
+ declare const mutation$j: {
39795
39898
  deactivateWebPushSubscriptionById: [{
39796
39899
  data: Variable<"DeactivateSubscriptionInput!", "data">;
39797
39900
  }, true];
39798
39901
  };
39799
- interface IInput$19 {
39902
+ interface IInput$1a {
39800
39903
  /**
39801
39904
  * @private
39802
39905
  */
39803
39906
  [key: string]: unknown;
39804
39907
  data: ModelTypes['DeactivateSubscriptionInput'];
39805
39908
  }
39806
- type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
39909
+ type IOutput$1a = InputType<GraphQLTypes['Mutation'], typeof mutation$j>;
39807
39910
 
39808
39911
  declare namespace deactivateWebPushSubscriptionById {
39912
+ export { type IInput$1a as IInput, type IOutput$1a as IOutput, mutation$j as mutation, name$19 as name };
39913
+ }
39914
+
39915
+ declare const name$18 = "triggerNotificationWorkflow";
39916
+ /**
39917
+ * Запустить воркфлоу уведомлений
39918
+ */
39919
+ declare const mutation$i: {
39920
+ triggerNotificationWorkflow: [{
39921
+ data: Variable<"TriggerNotificationWorkflowInput!", "data">;
39922
+ }, {
39923
+ transactionId: boolean;
39924
+ acknowledged: boolean;
39925
+ status: boolean;
39926
+ error: boolean;
39927
+ }];
39928
+ };
39929
+ interface IInput$19 {
39930
+ /**
39931
+ * @private
39932
+ */
39933
+ [key: string]: unknown;
39934
+ data: ModelTypes['TriggerNotificationWorkflowInput'];
39935
+ }
39936
+ type IOutput$19 = InputType<GraphQLTypes['Mutation'], typeof mutation$i>;
39937
+
39938
+ declare namespace triggerNotificationWorkflow {
39809
39939
  export { type IInput$19 as IInput, type IOutput$19 as IOutput, mutation$i as mutation, name$18 as name };
39810
39940
  }
39811
39941
 
39812
39942
  /** Создать веб-пуш подписку для пользователя */
39813
39943
 
39814
39944
  declare namespace index$o {
39815
- export { createWebPushSubscription as CreateWebPushSubscription, deactivateWebPushSubscriptionById as DeactivateWebPushSubscriptionById };
39945
+ export { createWebPushSubscription as CreateWebPushSubscription, deactivateWebPushSubscriptionById as DeactivateWebPushSubscriptionById, triggerNotificationWorkflow as TriggerNotificationWorkflow };
39816
39946
  }
39817
39947
 
39818
39948
  declare const name$17 = "addParticipant";
@@ -50458,7 +50588,7 @@ declare class Client {
50458
50588
  * @param wif Приватный ключ в формате WIF.
50459
50589
  * @returns Результат логина.
50460
50590
  */
50461
- login(email: string, wif: string): Promise<IOutput$32['login']>;
50591
+ login(email: string, wif: string): Promise<IOutput$33['login']>;
50462
50592
  /**
50463
50593
  * Установка токена авторизации.
50464
50594
  * @param token Токен для заголовков Authorization.
@@ -51205,6 +51335,9 @@ declare class Client {
51205
51335
  supplyOnRequest?: [{
51206
51336
  data: ValueTypes["SupplyOnRequestInput"] | Variable<any, string>;
51207
51337
  }, ValueTypes["Transaction"]];
51338
+ triggerNotificationWorkflow?: [{
51339
+ data: ValueTypes["TriggerNotificationWorkflowInput"] | Variable<any, string>;
51340
+ }, ValueTypes["TriggerNotificationWorkflowResult"]];
51208
51341
  uninstallExtension?: [{
51209
51342
  data: ValueTypes["UninstallExtensionInput"] | Variable<any, string>;
51210
51343
  }, boolean | `@${string}`];
@@ -51233,7 +51366,7 @@ declare class Client {
51233
51366
  data: ValueTypes["VoteOnAnnualGeneralMeetInput"] | Variable<any, string>;
51234
51367
  }, ValueTypes["MeetAggregate"]];
51235
51368
  __typename?: boolean | `@${string}`;
51236
- }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "login" | "acceptChildOrder" | "addParticipant" | "addTrustedAccount" | "cancelRequest" | "capitalAddAuthor" | "capitalApproveCommit" | "capitalCalculateVotes" | "capitalCloseProject" | "capitalCompleteVoting" | "capitalConvertSegment" | "capitalCreateCommit" | "capitalCreateCycle" | "capitalCreateDebt" | "capitalCreateExpense" | "capitalCreateIssue" | "capitalCreateProgramProperty" | "capitalCreateProject" | "capitalCreateProjectInvest" | "capitalCreateProjectProperty" | "capitalCreateStory" | "capitalDeclineCommit" | "capitalDeleteIssue" | "capitalDeleteProject" | "capitalDeleteStory" | "capitalEditContributor" | "capitalEditProject" | "capitalFundProgram" | "capitalFundProject" | "capitalGenerateAppendixGenerationAgreement" | "capitalGenerateCapitalizationAgreement" | "capitalGenerateCapitalizationMoneyInvestStatement" | "capitalGenerateCapitalizationPropertyInvestAct" | "capitalGenerateCapitalizationPropertyInvestDecision" | "capitalGenerateCapitalizationPropertyInvestStatement" | "capitalGenerateCapitalizationToMainWalletConvertStatement" | "capitalGenerateExpenseDecision" | "capitalGenerateExpenseStatement" | "capitalGenerateGenerationAgreement" | "capitalGenerateGenerationMoneyInvestStatement" | "capitalGenerateGenerationMoneyReturnUnusedStatement" | "capitalGenerateGenerationPropertyInvestAct" | "capitalGenerateGenerationPropertyInvestDecision" | "capitalGenerateGenerationPropertyInvestStatement" | "capitalGenerateGenerationToCapitalizationConvertStatement" | "capitalGenerateGenerationToMainWalletConvertStatement" | "capitalGenerateGenerationToProjectConvertStatement" | "capitalGenerateGetLoanDecision" | "capitalGenerateGetLoanStatement" | "capitalGenerateResultContributionAct" | "capitalGenerateResultContributionDecision" | "capitalGenerateResultContributionStatement" | "capitalImportContributor" | "capitalMakeClearance" | "capitalOpenProject" | "capitalPushResult" | "capitalRefreshProgram" | "capitalRefreshProject" | "capitalRefreshSegment" | "capitalRegisterContributor" | "capitalSetConfig" | "capitalSetMaster" | "capitalSetPlan" | "capitalSignActAsChairman" | "capitalSignActAsContributor" | "capitalStartProject" | "capitalStartVoting" | "capitalStopProject" | "capitalSubmitVote" | "capitalUpdateIssue" | "capitalUpdateStory" | "chairmanConfirmApprove" | "chairmanDeclineApprove" | "completeRequest" | "confirmAgreement" | "confirmReceiveOnRequest" | "confirmSupplyOnRequest" | "createAnnualGeneralMeet" | "createBankAccount" | "createBranch" | "createChildOrder" | "createDepositPayment" | "createInitialPayment" | "createParentOffer" | "createProjectOfFreeDecision" | "createWebPushSubscription" | "createWithdraw" | "deactivateWebPushSubscriptionById" | "declineAgreement" | "declineRequest" | "deleteBranch" | "deletePaymentMethod" | "deleteTrustedAccount" | "deliverOnRequest" | "disputeOnRequest" | "editBranch" | "generateAnnualGeneralMeetAgendaDocument" | "generateAnnualGeneralMeetDecisionDocument" | "generateAnnualGeneralMeetNotificationDocument" | "generateAssetContributionAct" | "generateAssetContributionDecision" | "generateAssetContributionStatement" | "generateBallotForAnnualGeneralMeetDocument" | "generateFreeDecision" | "generateParticipantApplication" | "generateParticipantApplicationDecision" | "generatePrivacyAgreement" | "generateProjectOfFreeDecision" | "generateReturnByAssetAct" | "generateReturnByAssetDecision" | "generateReturnByAssetStatement" | "generateReturnByMoneyDecisionDocument" | "generateReturnByMoneyStatementDocument" | "generateSelectBranchDocument" | "generateSignatureAgreement" | "generateSovietDecisionOnAnnualMeetDocument" | "generateUserAgreement" | "generateWalletAgreement" | "initSystem" | "installExtension" | "installSystem" | "logout" | "moderateRequest" | "notifyOnAnnualGeneralMeet" | "prohibitRequest" | "publishProjectOfFreeDecision" | "publishRequest" | "receiveOnRequest" | "refresh" | "registerAccount" | "registerParticipant" | "resetKey" | "restartAnnualGeneralMeet" | "selectBranch" | "sendAgreement" | "setPaymentStatus" | "setWif" | "signByPresiderOnAnnualGeneralMeet" | "signBySecretaryOnAnnualGeneralMeet" | "startInstall" | "startResetKey" | "supplyOnRequest" | "uninstallExtension" | "unpublishRequest" | "updateAccount" | "updateBankAccount" | "updateExtension" | "updateRequest" | "updateSettings" | "updateSystem" | "voteOnAnnualGeneralMeet" | "__directives" ? Z[P] : never; }, ops?: OperationOptions & {
51369
+ }>>(o: Z & { [P in keyof Z]: P extends "__alias" | "__typename" | "login" | "acceptChildOrder" | "addParticipant" | "addTrustedAccount" | "cancelRequest" | "capitalAddAuthor" | "capitalApproveCommit" | "capitalCalculateVotes" | "capitalCloseProject" | "capitalCompleteVoting" | "capitalConvertSegment" | "capitalCreateCommit" | "capitalCreateCycle" | "capitalCreateDebt" | "capitalCreateExpense" | "capitalCreateIssue" | "capitalCreateProgramProperty" | "capitalCreateProject" | "capitalCreateProjectInvest" | "capitalCreateProjectProperty" | "capitalCreateStory" | "capitalDeclineCommit" | "capitalDeleteIssue" | "capitalDeleteProject" | "capitalDeleteStory" | "capitalEditContributor" | "capitalEditProject" | "capitalFundProgram" | "capitalFundProject" | "capitalGenerateAppendixGenerationAgreement" | "capitalGenerateCapitalizationAgreement" | "capitalGenerateCapitalizationMoneyInvestStatement" | "capitalGenerateCapitalizationPropertyInvestAct" | "capitalGenerateCapitalizationPropertyInvestDecision" | "capitalGenerateCapitalizationPropertyInvestStatement" | "capitalGenerateCapitalizationToMainWalletConvertStatement" | "capitalGenerateExpenseDecision" | "capitalGenerateExpenseStatement" | "capitalGenerateGenerationAgreement" | "capitalGenerateGenerationMoneyInvestStatement" | "capitalGenerateGenerationMoneyReturnUnusedStatement" | "capitalGenerateGenerationPropertyInvestAct" | "capitalGenerateGenerationPropertyInvestDecision" | "capitalGenerateGenerationPropertyInvestStatement" | "capitalGenerateGenerationToCapitalizationConvertStatement" | "capitalGenerateGenerationToMainWalletConvertStatement" | "capitalGenerateGenerationToProjectConvertStatement" | "capitalGenerateGetLoanDecision" | "capitalGenerateGetLoanStatement" | "capitalGenerateResultContributionAct" | "capitalGenerateResultContributionDecision" | "capitalGenerateResultContributionStatement" | "capitalImportContributor" | "capitalMakeClearance" | "capitalOpenProject" | "capitalPushResult" | "capitalRefreshProgram" | "capitalRefreshProject" | "capitalRefreshSegment" | "capitalRegisterContributor" | "capitalSetConfig" | "capitalSetMaster" | "capitalSetPlan" | "capitalSignActAsChairman" | "capitalSignActAsContributor" | "capitalStartProject" | "capitalStartVoting" | "capitalStopProject" | "capitalSubmitVote" | "capitalUpdateIssue" | "capitalUpdateStory" | "chairmanConfirmApprove" | "chairmanDeclineApprove" | "completeRequest" | "confirmAgreement" | "confirmReceiveOnRequest" | "confirmSupplyOnRequest" | "createAnnualGeneralMeet" | "createBankAccount" | "createBranch" | "createChildOrder" | "createDepositPayment" | "createInitialPayment" | "createParentOffer" | "createProjectOfFreeDecision" | "createWebPushSubscription" | "createWithdraw" | "deactivateWebPushSubscriptionById" | "declineAgreement" | "declineRequest" | "deleteBranch" | "deletePaymentMethod" | "deleteTrustedAccount" | "deliverOnRequest" | "disputeOnRequest" | "editBranch" | "generateAnnualGeneralMeetAgendaDocument" | "generateAnnualGeneralMeetDecisionDocument" | "generateAnnualGeneralMeetNotificationDocument" | "generateAssetContributionAct" | "generateAssetContributionDecision" | "generateAssetContributionStatement" | "generateBallotForAnnualGeneralMeetDocument" | "generateFreeDecision" | "generateParticipantApplication" | "generateParticipantApplicationDecision" | "generatePrivacyAgreement" | "generateProjectOfFreeDecision" | "generateReturnByAssetAct" | "generateReturnByAssetDecision" | "generateReturnByAssetStatement" | "generateReturnByMoneyDecisionDocument" | "generateReturnByMoneyStatementDocument" | "generateSelectBranchDocument" | "generateSignatureAgreement" | "generateSovietDecisionOnAnnualMeetDocument" | "generateUserAgreement" | "generateWalletAgreement" | "initSystem" | "installExtension" | "installSystem" | "logout" | "moderateRequest" | "notifyOnAnnualGeneralMeet" | "prohibitRequest" | "publishProjectOfFreeDecision" | "publishRequest" | "receiveOnRequest" | "refresh" | "registerAccount" | "registerParticipant" | "resetKey" | "restartAnnualGeneralMeet" | "selectBranch" | "sendAgreement" | "setPaymentStatus" | "setWif" | "signByPresiderOnAnnualGeneralMeet" | "signBySecretaryOnAnnualGeneralMeet" | "startInstall" | "startResetKey" | "supplyOnRequest" | "triggerNotificationWorkflow" | "uninstallExtension" | "unpublishRequest" | "updateAccount" | "updateBankAccount" | "updateExtension" | "updateRequest" | "updateSettings" | "updateSystem" | "voteOnAnnualGeneralMeet" | "__directives" ? Z[P] : never; }, ops?: OperationOptions & {
51237
51370
  variables?: Record<string, unknown>;
51238
51371
  }) => Promise<InputType<{
51239
51372
  __typename: "Mutation";
@@ -51379,6 +51512,7 @@ declare class Client {
51379
51512
  startInstall: GraphQLTypes["StartInstallResult"];
51380
51513
  startResetKey: boolean;
51381
51514
  supplyOnRequest: GraphQLTypes["Transaction"];
51515
+ triggerNotificationWorkflow: GraphQLTypes["TriggerNotificationWorkflowResult"];
51382
51516
  uninstallExtension: boolean;
51383
51517
  unpublishRequest: GraphQLTypes["Transaction"];
51384
51518
  updateAccount: GraphQLTypes["Account"];