@coopenomics/sdk 2026.3.19-2 → 2026.4.26-4

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.mjs CHANGED
@@ -3,7 +3,6 @@ import WebSocket from 'isomorphic-ws';
3
3
  import { PrivateKey, APIClient, Action, PublicKey, Signature } from '@wharfkit/antelope';
4
4
  import { ContractKit, Table } from '@wharfkit/contract';
5
5
  import { WalletPluginPrivateKey } from '@wharfkit/wallet-plugin-privatekey';
6
- import * as nodeCrypto from 'node:crypto';
7
6
  import { createClient } from 'graphql-ws';
8
7
 
9
8
  var __defProp$5 = Object.defineProperty;
@@ -336,7 +335,8 @@ class Crypto {
336
335
  return Array.from(new Uint8Array(hashBuffer)).map((b) => b.toString(16).padStart(2, "0")).join("");
337
336
  } else {
338
337
  try {
339
- return nodeCrypto.createHash("sha256").update(str).digest("hex");
338
+ const { createHash } = await import('node:crypto');
339
+ return createHash("sha256").update(str).digest("hex");
340
340
  } catch (error) {
341
341
  console.warn("Node.js crypto \u043C\u043E\u0434\u0443\u043B\u044C \u043D\u0435\u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D", error);
342
342
  throw new Error("\u041A\u0440\u0438\u043F\u0442\u043E\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438 \u043D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044E\u0442\u0441\u044F \u0432 \u044D\u0442\u043E\u043C \u043E\u043A\u0440\u0443\u0436\u0435\u043D\u0438\u0438");
@@ -964,6 +964,7 @@ const AllTypesProps = {
964
964
  CapitalSegmentFilter: {
965
965
  status: "SegmentStatus"
966
966
  },
967
+ CapitalStoryContentFormat: "enum",
967
968
  CapitalStoryFilter: {
968
969
  status: "StoryStatus"
969
970
  },
@@ -1019,6 +1020,10 @@ const AllTypesProps = {
1019
1020
  proposal: "AnnualGeneralMeetingAgendaSignedDocumentInput"
1020
1021
  },
1021
1022
  CreateBranchInput: {},
1023
+ CreateChatCoopCalendarEventInput: {
1024
+ endsAt: "DateTime",
1025
+ startsAt: "DateTime"
1026
+ },
1022
1027
  CreateChildOrderInput: {
1023
1028
  document: "ReturnByAssetStatementSignedDocumentInput"
1024
1029
  },
@@ -1063,6 +1068,9 @@ const AllTypesProps = {
1063
1068
  },
1064
1069
  CreateParentOfferInput: {},
1065
1070
  CreateProcessTemplateInput: {},
1071
+ CreateProgramInvestInput: {
1072
+ statement: "ProgramCapitalizationMoneyInvestStatementSignedDocumentInput"
1073
+ },
1066
1074
  CreateProgramPropertyInput: {
1067
1075
  statement: "SignedDigitalDocumentInput"
1068
1076
  },
@@ -1076,6 +1084,7 @@ const AllTypesProps = {
1076
1084
  passport: "PassportInput"
1077
1085
  },
1078
1086
  CreateStoryInput: {
1087
+ content_format: "CapitalStoryContentFormat",
1079
1088
  status: "StoryStatus"
1080
1089
  },
1081
1090
  CreateSubscriptionInput: {
@@ -1174,14 +1183,16 @@ const AllTypesProps = {
1174
1183
  GetInvestInput: {},
1175
1184
  GetLedgerHistoryInput: {},
1176
1185
  GetLedgerInput: {},
1186
+ GetMaxOriginServerTsForRoomInput: {},
1177
1187
  GetMeetInput: {},
1178
1188
  GetMeetsInput: {},
1179
1189
  GetOneCoopDocumentsInput: {},
1180
1190
  GetPaymentMethodsInput: {},
1181
- GetProgramInvestInput: {},
1191
+ GetProjectCommunicationRoomsInput: {},
1182
1192
  GetProjectInput: {},
1183
1193
  GetProjectWithRelationsInput: {},
1184
1194
  GetResultInput: {},
1195
+ GetRoomMessagesForUtcDateInput: {},
1185
1196
  GetTranscriptionInput: {},
1186
1197
  GetTranscriptionsInput: {},
1187
1198
  GetUserSubscriptionsInput: {},
@@ -1200,6 +1211,7 @@ const AllTypesProps = {
1200
1211
  IssueStatus: "enum",
1201
1212
  JSON: `scalar.JSON`,
1202
1213
  JSONObject: `scalar.JSONObject`,
1214
+ ListUtcDatesWithNewRoomMessagesInput: {},
1203
1215
  LogEntityType: "enum",
1204
1216
  LogEventType: "enum",
1205
1217
  LoginInput: {},
@@ -1208,6 +1220,7 @@ const AllTypesProps = {
1208
1220
  document: "SignedDigitalDocumentInput"
1209
1221
  },
1210
1222
  ModerateRequestInput: {},
1223
+ MoveCapitalIssueToComponentInput: {},
1211
1224
  Mutation: {
1212
1225
  acceptChildOrder: {
1213
1226
  data: "AcceptChildOrderInput"
@@ -1266,6 +1279,9 @@ const AllTypesProps = {
1266
1279
  capitalCreateProcessTemplate: {
1267
1280
  data: "CreateProcessTemplateInput"
1268
1281
  },
1282
+ capitalCreateProgramInvest: {
1283
+ data: "CreateProgramInvestInput"
1284
+ },
1269
1285
  capitalCreateProgramProperty: {
1270
1286
  data: "CreateProgramPropertyInput"
1271
1287
  },
@@ -1382,6 +1398,10 @@ const AllTypesProps = {
1382
1398
  data: "GenerateDocumentInput",
1383
1399
  options: "GenerateDocumentOptionsInput"
1384
1400
  },
1401
+ capitalGenerateProgramMoneyInvestStatement: {
1402
+ data: "ProgramCapitalizationMoneyInvestStatementGenerateDocumentInput",
1403
+ options: "GenerateDocumentOptionsInput"
1404
+ },
1385
1405
  capitalGenerateProjectGenerationContract: {
1386
1406
  data: "ProjectGenerationContractGenerateDocumentInput",
1387
1407
  options: "GenerateDocumentOptionsInput"
@@ -1407,6 +1427,9 @@ const AllTypesProps = {
1407
1427
  capitalMakeClearance: {
1408
1428
  data: "MakeClearanceInput"
1409
1429
  },
1430
+ capitalMoveIssueToComponent: {
1431
+ data: "MoveCapitalIssueToComponentInput"
1432
+ },
1410
1433
  capitalOpenProject: {
1411
1434
  data: "OpenProjectInput"
1412
1435
  },
@@ -1431,6 +1454,9 @@ const AllTypesProps = {
1431
1454
  capitalSetPlan: {
1432
1455
  data: "SetPlanInput"
1433
1456
  },
1457
+ capitalSetProjectDevelopmentRepositoryUrl: {
1458
+ data: "SetCapitalProjectDevelopmentRepositoryUrlInput"
1459
+ },
1434
1460
  capitalSignActAsChairman: {
1435
1461
  data: "SignActAsChairmanInput"
1436
1462
  },
@@ -1470,6 +1496,16 @@ const AllTypesProps = {
1470
1496
  chatcoopCreateAccount: {
1471
1497
  data: "CreateMatrixAccountInputDTO"
1472
1498
  },
1499
+ chatcoopCreateCalendarEvent: {
1500
+ data: "CreateChatCoopCalendarEventInput"
1501
+ },
1502
+ chatcoopDeleteCalendarEvent: {},
1503
+ chatcoopUpdateCalendarEvent: {
1504
+ data: "UpdateChatCoopCalendarEventInput"
1505
+ },
1506
+ chatcoopUpdateTranscriptionMemo: {
1507
+ data: "UpdateCallTranscriptionMemoInput"
1508
+ },
1473
1509
  completeCapitalOnboardingStep: {
1474
1510
  data: "CapitalOnboardingStepInput"
1475
1511
  },
@@ -1795,7 +1831,12 @@ const AllTypesProps = {
1795
1831
  position: "ProcessStepPositionInput"
1796
1832
  },
1797
1833
  ProcessTemplateStatus: "enum",
1798
- ProgramInvestStatus: "enum",
1834
+ ProgramCapitalizationMoneyInvestStatementGenerateDocumentInput: {},
1835
+ ProgramCapitalizationMoneyInvestStatementSignedDocumentInput: {
1836
+ meta: "ProgramCapitalizationMoneyInvestStatementSignedMetaDocumentInput",
1837
+ signatures: "SignatureInfoInput"
1838
+ },
1839
+ ProgramCapitalizationMoneyInvestStatementSignedMetaDocumentInput: {},
1799
1840
  ProgramKey: "enum",
1800
1841
  ProgramType: "enum",
1801
1842
  ProgramWalletFilterInput: {
@@ -1880,13 +1921,6 @@ const AllTypesProps = {
1880
1921
  filter: "CapitalIssueFilter",
1881
1922
  options: "PaginationInput"
1882
1923
  },
1883
- capitalProgramInvest: {
1884
- data: "GetProgramInvestInput"
1885
- },
1886
- capitalProgramInvests: {
1887
- filter: "CapitalInvestFilter",
1888
- options: "PaginationInput"
1889
- },
1890
1924
  capitalProject: {
1891
1925
  data: "GetProjectInput"
1892
1926
  },
@@ -1948,12 +1982,24 @@ const AllTypesProps = {
1948
1982
  chatcoopCheckUsernameAvailability: {
1949
1983
  data: "CheckMatrixUsernameInput"
1950
1984
  },
1985
+ chatcoopGetMaxOriginServerTsForRoom: {
1986
+ data: "GetMaxOriginServerTsForRoomInput"
1987
+ },
1988
+ chatcoopGetRoomMessagesForUtcDate: {
1989
+ data: "GetRoomMessagesForUtcDateInput"
1990
+ },
1951
1991
  chatcoopGetTranscription: {
1952
1992
  data: "GetTranscriptionInput"
1953
1993
  },
1954
1994
  chatcoopGetTranscriptions: {
1955
1995
  data: "GetTranscriptionsInput"
1956
1996
  },
1997
+ chatcoopListProjectCommunicationRooms: {
1998
+ data: "GetProjectCommunicationRoomsInput"
1999
+ },
2000
+ chatcoopListUtcDatesWithNewRoomMessages: {
2001
+ data: "ListUtcDatesWithNewRoomMessagesInput"
2002
+ },
1957
2003
  getAccount: {
1958
2004
  data: "GetAccountInput"
1959
2005
  },
@@ -2101,6 +2147,7 @@ const AllTypesProps = {
2101
2147
  signatures: "SignatureInfoInput"
2102
2148
  },
2103
2149
  ReturnByMoneySignedMetaDocumentInput: {},
2150
+ RoomMessageKind: "enum",
2104
2151
  SbpDataInput: {},
2105
2152
  SearchDocumentsInput: {},
2106
2153
  SearchPrivateAccountsInput: {},
@@ -2117,6 +2164,7 @@ const AllTypesProps = {
2117
2164
  SendAgreementInput: {
2118
2165
  document: "SignedDigitalDocumentInput"
2119
2166
  },
2167
+ SetCapitalProjectDevelopmentRepositoryUrlInput: {},
2120
2168
  SetConfigInput: {
2121
2169
  config: "ConfigInput"
2122
2170
  },
@@ -2187,6 +2235,11 @@ const AllTypesProps = {
2187
2235
  UpdateBankAccountInput: {
2188
2236
  data: "BankAccountInput"
2189
2237
  },
2238
+ UpdateCallTranscriptionMemoInput: {},
2239
+ UpdateChatCoopCalendarEventInput: {
2240
+ endsAt: "DateTime",
2241
+ startsAt: "DateTime"
2242
+ },
2190
2243
  UpdateEntrepreneurDataInput: {
2191
2244
  country: "Country",
2192
2245
  details: "EntrepreneurDetailsInput"
@@ -2210,6 +2263,7 @@ const AllTypesProps = {
2210
2263
  UpdateRequestInput: {},
2211
2264
  UpdateSettingsInput: {},
2212
2265
  UpdateStoryInput: {
2266
+ content_format: "CapitalStoryContentFormat",
2213
2267
  status: "StoryStatus"
2214
2268
  },
2215
2269
  UserStatus: "enum",
@@ -2232,7 +2286,8 @@ const AllTypesProps = {
2232
2286
  WebPushSubscriptionDataInput: {
2233
2287
  keys: "WebPushSubscriptionKeysInput"
2234
2288
  },
2235
- WebPushSubscriptionKeysInput: {}
2289
+ WebPushSubscriptionKeysInput: {},
2290
+ ID: `scalar.ID`
2236
2291
  };
2237
2292
  const ReturnTypes = {
2238
2293
  Account: {
@@ -2376,6 +2431,7 @@ const ReturnTypes = {
2376
2431
  crps: "CapitalProjectCrpsData",
2377
2432
  data: "String",
2378
2433
  description: "String",
2434
+ development_repository_url: "String",
2379
2435
  fact: "CapitalProjectFactPool",
2380
2436
  id: "Int",
2381
2437
  invite: "String",
@@ -2508,6 +2564,7 @@ const ReturnTypes = {
2508
2564
  endedAt: "DateTime",
2509
2565
  id: "String",
2510
2566
  matrixRoomId: "String",
2567
+ memo: "String",
2511
2568
  participants: "String",
2512
2569
  roomId: "String",
2513
2570
  roomName: "String",
@@ -2634,6 +2691,7 @@ const ReturnTypes = {
2634
2691
  generator_offer_hash: "String",
2635
2692
  hours_per_day: "Float",
2636
2693
  id: "Int",
2694
+ is_external_blagorost_agreement: "Boolean",
2637
2695
  is_external_contract: "Boolean",
2638
2696
  last_energy_update: "String",
2639
2697
  level: "Int",
@@ -2726,9 +2784,14 @@ const ReturnTypes = {
2726
2784
  creators: "String",
2727
2785
  cycle_id: "String",
2728
2786
  description: "String",
2729
- estimate: "Int",
2787
+ estimate: "Float",
2788
+ fact: "Float",
2789
+ fact_by_contributor: "CapitalIssueContributorFact",
2790
+ fact_committed: "Float",
2791
+ fact_uncommitted: "Float",
2730
2792
  id: "String",
2731
2793
  issue_hash: "String",
2794
+ linked_git_commits: "CapitalIssueLinkedGitCommit",
2732
2795
  metadata: "JSON",
2733
2796
  permissions: "CapitalIssuePermissions",
2734
2797
  present: "Boolean",
@@ -2739,6 +2802,18 @@ const ReturnTypes = {
2739
2802
  submaster: "String",
2740
2803
  title: "String"
2741
2804
  },
2805
+ CapitalIssueContributorFact: {
2806
+ contributor_hash: "String",
2807
+ hours: "Float"
2808
+ },
2809
+ CapitalIssueLinkedGitCommit: {
2810
+ commit_message: "String",
2811
+ committed_at: "DateTime",
2812
+ consumed: "Boolean",
2813
+ github_sha: "String",
2814
+ html_url: "String",
2815
+ username: "String"
2816
+ },
2742
2817
  CapitalIssuePermissions: {
2743
2818
  allowed_status_transitions: "IssueStatus",
2744
2819
  can_assign_creator: "Boolean",
@@ -2748,6 +2823,8 @@ const ReturnTypes = {
2748
2823
  can_delete_issue: "Boolean",
2749
2824
  can_delete_requirement: "Boolean",
2750
2825
  can_edit_issue: "Boolean",
2826
+ can_edit_requirement: "Boolean",
2827
+ can_move_issue: "Boolean",
2751
2828
  can_set_done: "Boolean",
2752
2829
  can_set_estimate: "Boolean",
2753
2830
  can_set_on_review: "Boolean",
@@ -2782,22 +2859,6 @@ const ReturnTypes = {
2782
2859
  onboarding_generator_program_template_hash: "String",
2783
2860
  onboarding_init_at: "String"
2784
2861
  },
2785
- CapitalProgramInvest: {
2786
- _created_at: "DateTime",
2787
- _id: "String",
2788
- _updated_at: "DateTime",
2789
- amount: "Float",
2790
- block_num: "Int",
2791
- blockchain_status: "String",
2792
- coopname: "String",
2793
- id: "Int",
2794
- invest_hash: "String",
2795
- invested_at: "String",
2796
- present: "Boolean",
2797
- statement: "DocumentAggregate",
2798
- status: "ProgramInvestStatus",
2799
- username: "String"
2800
- },
2801
2862
  CapitalProject: {
2802
2863
  _created_at: "DateTime",
2803
2864
  _id: "String",
@@ -2811,6 +2872,7 @@ const ReturnTypes = {
2811
2872
  crps: "CapitalProjectCrpsData",
2812
2873
  data: "String",
2813
2874
  description: "String",
2875
+ development_repository_url: "String",
2814
2876
  fact: "CapitalProjectFactPool",
2815
2877
  id: "Int",
2816
2878
  invite: "String",
@@ -2842,6 +2904,7 @@ const ReturnTypes = {
2842
2904
  crps: "CapitalProjectCrpsData",
2843
2905
  data: "String",
2844
2906
  description: "String",
2907
+ development_repository_url: "String",
2845
2908
  fact: "CapitalProjectFactPool",
2846
2909
  id: "Int",
2847
2910
  invite: "String",
@@ -2910,6 +2973,7 @@ const ReturnTypes = {
2910
2973
  can_delete_project: "Boolean",
2911
2974
  can_delete_requirement: "Boolean",
2912
2975
  can_edit_project: "Boolean",
2976
+ can_edit_requirement: "Boolean",
2913
2977
  can_manage_authors: "Boolean",
2914
2978
  can_manage_issues: "Boolean",
2915
2979
  can_set_master: "Boolean",
@@ -3058,6 +3122,7 @@ const ReturnTypes = {
3058
3122
  _id: "String",
3059
3123
  _updated_at: "DateTime",
3060
3124
  block_num: "Float",
3125
+ content_format: "CapitalStoryContentFormat",
3061
3126
  coopname: "String",
3062
3127
  created_by: "String",
3063
3128
  description: "String",
@@ -3146,6 +3211,36 @@ const ReturnTypes = {
3146
3211
  name: "String",
3147
3212
  writeoff: "String"
3148
3213
  },
3214
+ ChatCoopCalendarEvent: {
3215
+ createdAt: "DateTime",
3216
+ createdByUsername: "String",
3217
+ description: "String",
3218
+ endsAt: "DateTime",
3219
+ icsSequence: "Int",
3220
+ id: "String",
3221
+ matrixRoomId: "String",
3222
+ startsAt: "DateTime",
3223
+ title: "String",
3224
+ updatedAt: "DateTime"
3225
+ },
3226
+ ChatCoopCalendarIcsUrlResponse: {
3227
+ icsUrl: "String"
3228
+ },
3229
+ ChatCoopCalendarRoomOption: {
3230
+ displayLabel: "String",
3231
+ matrixRoomId: "String"
3232
+ },
3233
+ ChatcoopProjectCommunicationRoom: {
3234
+ displayLabel: "String",
3235
+ matrixRoomId: "String"
3236
+ },
3237
+ ChatcoopRoomMessageLine: {
3238
+ authorLabel: "String",
3239
+ bodyText: "String",
3240
+ coopUsername: "String",
3241
+ kind: "RoomMessageKind",
3242
+ originServerTs: "Float"
3243
+ },
3149
3244
  ContactsDTO: {
3150
3245
  chairman: "PublicChairman",
3151
3246
  details: "OrganizationDetails",
@@ -3519,6 +3614,7 @@ const ReturnTypes = {
3519
3614
  agenda: "AgendaMeetPoint",
3520
3615
  close_at: "DateTime",
3521
3616
  coopname: "String",
3617
+ details: "String",
3522
3618
  hash: "String",
3523
3619
  initiator: "String",
3524
3620
  initiator_certificate: "UserCertificateUnion",
@@ -3597,6 +3693,7 @@ const ReturnTypes = {
3597
3693
  capitalCreateExpense: "Transaction",
3598
3694
  capitalCreateIssue: "CapitalIssue",
3599
3695
  capitalCreateProcessTemplate: "ProcessTemplate",
3696
+ capitalCreateProgramInvest: "Transaction",
3600
3697
  capitalCreateProgramProperty: "Transaction",
3601
3698
  capitalCreateProject: "Transaction",
3602
3699
  capitalCreateProjectInvest: "Transaction",
@@ -3630,6 +3727,7 @@ const ReturnTypes = {
3630
3727
  capitalGenerateGenerationToProjectConvertStatement: "GeneratedDocument",
3631
3728
  capitalGenerateGetLoanDecision: "GeneratedDocument",
3632
3729
  capitalGenerateGetLoanStatement: "GeneratedDocument",
3730
+ capitalGenerateProgramMoneyInvestStatement: "GeneratedDocument",
3633
3731
  capitalGenerateProjectGenerationContract: "GeneratedDocument",
3634
3732
  capitalGenerateRegistrationDocuments: "GenerateCapitalRegistrationDocumentsOutputDTO",
3635
3733
  capitalGenerateResultContributionAct: "GeneratedDocument",
@@ -3637,6 +3735,7 @@ const ReturnTypes = {
3637
3735
  capitalGenerateResultContributionStatement: "GeneratedDocument",
3638
3736
  capitalImportContributor: "Transaction",
3639
3737
  capitalMakeClearance: "Transaction",
3738
+ capitalMoveIssueToComponent: "CapitalIssue",
3640
3739
  capitalOpenProject: "CapitalProject",
3641
3740
  capitalPushResult: "CapitalSegment",
3642
3741
  capitalRefreshProgram: "Transaction",
@@ -3645,6 +3744,7 @@ const ReturnTypes = {
3645
3744
  capitalSetConfig: "Transaction",
3646
3745
  capitalSetMaster: "Transaction",
3647
3746
  capitalSetPlan: "CapitalProject",
3747
+ capitalSetProjectDevelopmentRepositoryUrl: "CapitalProject",
3648
3748
  capitalSignActAsChairman: "CapitalSegment",
3649
3749
  capitalSignActAsContributor: "CapitalSegment",
3650
3750
  capitalStartProcess: "ProcessInstance",
@@ -3658,6 +3758,11 @@ const ReturnTypes = {
3658
3758
  chairmanConfirmApprove: "Approval",
3659
3759
  chairmanDeclineApprove: "Approval",
3660
3760
  chatcoopCreateAccount: "Boolean",
3761
+ chatcoopCreateCalendarEvent: "ChatCoopCalendarEvent",
3762
+ chatcoopCreateCalendarIcsSubscription: "ChatCoopCalendarIcsUrlResponse",
3763
+ chatcoopDeleteCalendarEvent: "Boolean",
3764
+ chatcoopUpdateCalendarEvent: "ChatCoopCalendarEvent",
3765
+ chatcoopUpdateTranscriptionMemo: "CallTranscription",
3661
3766
  completeCapitalOnboardingStep: "CapitalOnboardingState",
3662
3767
  completeChairmanAgendaStep: "ChairmanOnboardingState",
3663
3768
  completeChairmanGeneralMeetStep: "ChairmanOnboardingState",
@@ -3875,12 +3980,6 @@ const ReturnTypes = {
3875
3980
  totalCount: "Int",
3876
3981
  totalPages: "Int"
3877
3982
  },
3878
- PaginatedCapitalProgramInvestsPaginationResult: {
3879
- currentPage: "Int",
3880
- items: "CapitalProgramInvest",
3881
- totalCount: "Int",
3882
- totalPages: "Int"
3883
- },
3884
3983
  PaginatedCapitalProjectsPaginationResult: {
3885
3984
  currentPage: "Int",
3886
3985
  items: "CapitalProject",
@@ -4140,8 +4239,6 @@ const ReturnTypes = {
4140
4239
  capitalInvests: "PaginatedCapitalInvestsPaginationResult",
4141
4240
  capitalIssue: "CapitalIssue",
4142
4241
  capitalIssues: "PaginatedCapitalIssuesPaginationResult",
4143
- capitalProgramInvest: "CapitalProgramInvest",
4144
- capitalProgramInvests: "PaginatedCapitalProgramInvestsPaginationResult",
4145
4242
  capitalProject: "CapitalProject",
4146
4243
  capitalProjectWithRelations: "CapitalProject",
4147
4244
  capitalProjects: "PaginatedCapitalProjectsPaginationResult",
@@ -4161,8 +4258,14 @@ const ReturnTypes = {
4161
4258
  chairmanApprovals: "PaginatedChairmanApprovalsPaginationResult",
4162
4259
  chatcoopCheckUsernameAvailability: "Boolean",
4163
4260
  chatcoopGetAccountStatus: "MatrixAccountStatusResponseDTO",
4261
+ chatcoopGetMaxOriginServerTsForRoom: "Float",
4262
+ chatcoopGetRoomMessagesForUtcDate: "ChatcoopRoomMessageLine",
4164
4263
  chatcoopGetTranscription: "CallTranscriptionWithSegments",
4165
4264
  chatcoopGetTranscriptions: "CallTranscription",
4265
+ chatcoopListCalendarEvents: "ChatCoopCalendarEvent",
4266
+ chatcoopListCalendarRooms: "ChatCoopCalendarRoomOption",
4267
+ chatcoopListProjectCommunicationRooms: "ChatcoopProjectCommunicationRoom",
4268
+ chatcoopListUtcDatesWithNewRoomMessages: "String",
4166
4269
  getAccount: "Account",
4167
4270
  getAccounts: "AccountsPaginationResult",
4168
4271
  getActions: "PaginatedActionsPaginationResult",
@@ -4436,7 +4539,8 @@ const ReturnTypes = {
4436
4539
  updatedAt: "DateTime",
4437
4540
  userAgent: "String",
4438
4541
  username: "String"
4439
- }
4542
+ },
4543
+ ID: `scalar.ID`
4440
4544
  };
4441
4545
  const Ops = {
4442
4546
  query: "Query",
@@ -4497,6 +4601,109 @@ const apiSubscription = (options) => {
4497
4601
  };
4498
4602
  };
4499
4603
  };
4604
+ const apiSubscriptionSSE = (options) => (query, variables) => {
4605
+ const url = options[0];
4606
+ const fetchOptions = options[1] || {};
4607
+ let abortController = null;
4608
+ let reader = null;
4609
+ let onCallback = null;
4610
+ let errorCallback = null;
4611
+ let openCallback = null;
4612
+ let offCallback = null;
4613
+ let isClosing = false;
4614
+ const startStream = async () => {
4615
+ try {
4616
+ abortController = new AbortController();
4617
+ const response = await fetch(url, {
4618
+ method: "POST",
4619
+ headers: {
4620
+ Accept: "text/event-stream",
4621
+ "Content-Type": "application/json",
4622
+ "Cache-Control": "no-cache",
4623
+ ...fetchOptions.headers
4624
+ },
4625
+ body: JSON.stringify({ query, variables }),
4626
+ signal: abortController.signal,
4627
+ ...fetchOptions
4628
+ });
4629
+ if (!response.ok) {
4630
+ throw new Error(`HTTP error! status: ${response.status}`);
4631
+ }
4632
+ if (openCallback) {
4633
+ openCallback();
4634
+ }
4635
+ reader = response.body?.getReader() || null;
4636
+ if (!reader) {
4637
+ throw new Error("No response body");
4638
+ }
4639
+ const decoder = new TextDecoder();
4640
+ let buffer = "";
4641
+ while (true) {
4642
+ const { done, value } = await reader.read();
4643
+ if (done) {
4644
+ if (offCallback) {
4645
+ offCallback({ data: null, code: 1e3, reason: "Stream completed" });
4646
+ }
4647
+ break;
4648
+ }
4649
+ buffer += decoder.decode(value, { stream: true });
4650
+ const lines = buffer.split("\n");
4651
+ buffer = lines.pop() || "";
4652
+ for (const line of lines) {
4653
+ if (line.startsWith("data: ")) {
4654
+ try {
4655
+ const data = line.slice(6);
4656
+ const parsed = JSON.parse(data);
4657
+ if (parsed.errors) {
4658
+ if (errorCallback) {
4659
+ errorCallback({ data: parsed.data, errors: parsed.errors });
4660
+ }
4661
+ } else if (onCallback && parsed.data) {
4662
+ onCallback(parsed.data);
4663
+ }
4664
+ } catch {
4665
+ if (errorCallback) {
4666
+ errorCallback({ errors: ["Failed to parse SSE data"] });
4667
+ }
4668
+ }
4669
+ }
4670
+ }
4671
+ }
4672
+ } catch (err) {
4673
+ const error = err;
4674
+ if (error.name !== "AbortError" && !isClosing && errorCallback) {
4675
+ errorCallback({ errors: [error.message || "Unknown error"] });
4676
+ }
4677
+ }
4678
+ };
4679
+ return {
4680
+ on: (e) => {
4681
+ onCallback = e;
4682
+ },
4683
+ off: (e) => {
4684
+ offCallback = e;
4685
+ },
4686
+ error: (e) => {
4687
+ errorCallback = e;
4688
+ },
4689
+ open: (e) => {
4690
+ if (e) {
4691
+ openCallback = e;
4692
+ }
4693
+ startStream();
4694
+ },
4695
+ close: () => {
4696
+ isClosing = true;
4697
+ if (abortController) {
4698
+ abortController.abort();
4699
+ }
4700
+ if (reader) {
4701
+ reader.cancel().catch(() => {
4702
+ });
4703
+ }
4704
+ }
4705
+ };
4706
+ };
4500
4707
  const handleFetchResponse = (response) => {
4501
4708
  if (!response.ok) {
4502
4709
  return new Promise((_, reject) => {
@@ -4645,6 +4852,39 @@ const SubscriptionThunder = (fn, thunderGraphQLOptions) => (operation, graphqlOp
4645
4852
  return returnedFunction;
4646
4853
  };
4647
4854
  const Subscription = (...options) => SubscriptionThunder(apiSubscription(options));
4855
+ const SubscriptionThunderSSE = (fn, thunderGraphQLOptions) => (operation, graphqlOptions) => (o, ops) => {
4856
+ const options = {
4857
+ ...thunderGraphQLOptions,
4858
+ ...graphqlOptions
4859
+ };
4860
+ const returnedFunction = fn(
4861
+ Zeus(operation, o, {
4862
+ operationOptions: ops,
4863
+ scalars: options?.scalars
4864
+ }),
4865
+ ops?.variables
4866
+ );
4867
+ if (returnedFunction?.on && options?.scalars) {
4868
+ const wrapped = returnedFunction.on;
4869
+ returnedFunction.on = (fnToCall) => wrapped((data) => {
4870
+ if (options?.scalars) {
4871
+ return fnToCall(
4872
+ decodeScalarsInResponse({
4873
+ response: data,
4874
+ initialOp: operation,
4875
+ initialZeusQuery: o,
4876
+ returns: ReturnTypes,
4877
+ scalars: options.scalars,
4878
+ ops: Ops
4879
+ })
4880
+ );
4881
+ }
4882
+ return fnToCall(data);
4883
+ });
4884
+ }
4885
+ return returnedFunction;
4886
+ };
4887
+ const SubscriptionSSE = (...options) => SubscriptionThunderSSE(apiSubscriptionSSE(options));
4648
4888
  const Zeus = (operation, o, ops) => InternalsBuildQuery({
4649
4889
  props: AllTypesProps,
4650
4890
  returns: ReturnTypes,
@@ -4740,7 +4980,7 @@ const traverseResponse = ({
4740
4980
  const SEPARATOR = "|";
4741
4981
  class GraphQLError extends Error {
4742
4982
  constructor(response) {
4743
- super("");
4983
+ super(response.errors?.[0]?.message || "GraphQL Response Error");
4744
4984
  this.response = response;
4745
4985
  console.error(response);
4746
4986
  }
@@ -4950,7 +5190,7 @@ const InternalArgsBuilt = ({
4950
5190
  };
4951
5191
  return arb;
4952
5192
  };
4953
- const resolverFor = (type, field, fn) => fn;
5193
+ const resolverFor = (_type, _field, fn) => fn;
4954
5194
  const START_VAR_NAME = `$ZEUS_VAR`;
4955
5195
  const GRAPHQL_TYPE_SEPARATOR = `__$GRAPHQL__`;
4956
5196
  const $ = (name, graphqlType) => {
@@ -4988,6 +5228,13 @@ var CapitalOnboardingStep = /* @__PURE__ */ ((CapitalOnboardingStep2) => {
4988
5228
  CapitalOnboardingStep2["generator_program_template"] = "generator_program_template";
4989
5229
  return CapitalOnboardingStep2;
4990
5230
  })(CapitalOnboardingStep || {});
5231
+ var CapitalStoryContentFormat = /* @__PURE__ */ ((CapitalStoryContentFormat2) => {
5232
+ CapitalStoryContentFormat2["BPMN"] = "BPMN";
5233
+ CapitalStoryContentFormat2["DRAWIO"] = "DRAWIO";
5234
+ CapitalStoryContentFormat2["MARKDOWN"] = "MARKDOWN";
5235
+ CapitalStoryContentFormat2["MERMAID"] = "MERMAID";
5236
+ return CapitalStoryContentFormat2;
5237
+ })(CapitalStoryContentFormat || {});
4991
5238
  var ChairmanOnboardingAgendaStep = /* @__PURE__ */ ((ChairmanOnboardingAgendaStep2) => {
4992
5239
  ChairmanOnboardingAgendaStep2["participant_application"] = "participant_application";
4993
5240
  ChairmanOnboardingAgendaStep2["privacy_agreement"] = "privacy_agreement";
@@ -5205,11 +5452,6 @@ var ProcessTemplateStatus = /* @__PURE__ */ ((ProcessTemplateStatus2) => {
5205
5452
  ProcessTemplateStatus2["DRAFT"] = "DRAFT";
5206
5453
  return ProcessTemplateStatus2;
5207
5454
  })(ProcessTemplateStatus || {});
5208
- var ProgramInvestStatus = /* @__PURE__ */ ((ProgramInvestStatus2) => {
5209
- ProgramInvestStatus2["CREATED"] = "CREATED";
5210
- ProgramInvestStatus2["UNDEFINED"] = "UNDEFINED";
5211
- return ProgramInvestStatus2;
5212
- })(ProgramInvestStatus || {});
5213
5455
  var ProgramKey = /* @__PURE__ */ ((ProgramKey2) => {
5214
5456
  ProgramKey2["CAPITALIZATION"] = "CAPITALIZATION";
5215
5457
  ProgramKey2["GENERATION"] = "GENERATION";
@@ -5255,6 +5497,11 @@ var ResultStatus = /* @__PURE__ */ ((ResultStatus2) => {
5255
5497
  ResultStatus2["UNDEFINED"] = "UNDEFINED";
5256
5498
  return ResultStatus2;
5257
5499
  })(ResultStatus || {});
5500
+ var RoomMessageKind = /* @__PURE__ */ ((RoomMessageKind2) => {
5501
+ RoomMessageKind2["AUDIO"] = "AUDIO";
5502
+ RoomMessageKind2["TEXT"] = "TEXT";
5503
+ return RoomMessageKind2;
5504
+ })(RoomMessageKind || {});
5258
5505
  var SegmentStatus = /* @__PURE__ */ ((SegmentStatus2) => {
5259
5506
  SegmentStatus2["ACT1"] = "ACT1";
5260
5507
  SegmentStatus2["APPROVED"] = "APPROVED";
@@ -5307,6 +5554,7 @@ const index$M = {
5307
5554
  ApprovalStatus: ApprovalStatus,
5308
5555
  CandidateStatus: CandidateStatus,
5309
5556
  CapitalOnboardingStep: CapitalOnboardingStep,
5557
+ CapitalStoryContentFormat: CapitalStoryContentFormat,
5310
5558
  Chain: Chain,
5311
5559
  ChairmanOnboardingAgendaStep: ChairmanOnboardingAgendaStep,
5312
5560
  CommitStatus: CommitStatus,
@@ -5338,20 +5586,22 @@ const index$M = {
5338
5586
  ProcessInstanceStatus: ProcessInstanceStatus,
5339
5587
  ProcessStepStatus: ProcessStepStatus,
5340
5588
  ProcessTemplateStatus: ProcessTemplateStatus,
5341
- ProgramInvestStatus: ProgramInvestStatus,
5342
5589
  ProgramKey: ProgramKey,
5343
5590
  ProgramType: ProgramType,
5344
5591
  ProjectStatus: ProjectStatus,
5345
5592
  ReportType: ReportType,
5346
5593
  ResolveFromPath: ResolveFromPath,
5347
5594
  ResultStatus: ResultStatus,
5595
+ RoomMessageKind: RoomMessageKind,
5348
5596
  SEPARATOR: SEPARATOR,
5349
5597
  START_VAR_NAME: START_VAR_NAME,
5350
5598
  SegmentStatus: SegmentStatus,
5351
5599
  Selector: Selector,
5352
5600
  StoryStatus: StoryStatus,
5353
5601
  Subscription: Subscription,
5602
+ SubscriptionSSE: SubscriptionSSE,
5354
5603
  SubscriptionThunder: SubscriptionThunder,
5604
+ SubscriptionThunderSSE: SubscriptionThunderSSE,
5355
5605
  SystemStatus: SystemStatus,
5356
5606
  Thunder: Thunder,
5357
5607
  TranscriptionStatus: TranscriptionStatus,
@@ -5362,6 +5612,7 @@ const index$M = {
5362
5612
  ZeusSelect: ZeusSelect,
5363
5613
  apiFetch: apiFetch,
5364
5614
  apiSubscription: apiSubscription,
5615
+ apiSubscriptionSSE: apiSubscriptionSSE,
5365
5616
  decodeScalarsInResponse: decodeScalarsInResponse,
5366
5617
  fields: fields,
5367
5618
  purifyGraphQLKey: purifyGraphQLKey,
@@ -5744,37 +5995,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
5744
5995
  rawRegisteredAccountSelector
5745
5996
  );
5746
5997
 
5747
- const name$3G = "registerAccount";
5748
- const mutation$2y = Selector("Mutation")({
5749
- [name$3G]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
5998
+ const name$3T = "registerAccount";
5999
+ const mutation$2H = Selector("Mutation")({
6000
+ [name$3T]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
5750
6001
  });
5751
6002
 
5752
6003
  const registerAccount = {
5753
6004
  __proto__: null,
5754
- mutation: mutation$2y,
5755
- name: name$3G
6005
+ mutation: mutation$2H,
6006
+ name: name$3T
5756
6007
  };
5757
6008
 
5758
- const name$3F = "resetKey";
5759
- const mutation$2x = Selector("Mutation")({
5760
- [name$3F]: [{ data: $("data", "ResetKeyInput!") }, true]
6009
+ const name$3S = "resetKey";
6010
+ const mutation$2G = Selector("Mutation")({
6011
+ [name$3S]: [{ data: $("data", "ResetKeyInput!") }, true]
5761
6012
  });
5762
6013
 
5763
6014
  const resetKey = {
5764
6015
  __proto__: null,
5765
- mutation: mutation$2x,
5766
- name: name$3F
6016
+ mutation: mutation$2G,
6017
+ name: name$3S
5767
6018
  };
5768
6019
 
5769
- const name$3E = "startResetKey";
5770
- const mutation$2w = Selector("Mutation")({
5771
- [name$3E]: [{ data: $("data", "StartResetKeyInput!") }, true]
6020
+ const name$3R = "startResetKey";
6021
+ const mutation$2F = Selector("Mutation")({
6022
+ [name$3R]: [{ data: $("data", "StartResetKeyInput!") }, true]
5772
6023
  });
5773
6024
 
5774
6025
  const startResetKey = {
5775
6026
  __proto__: null,
5776
- mutation: mutation$2w,
5777
- name: name$3E
6027
+ mutation: mutation$2F,
6028
+ name: name$3R
5778
6029
  };
5779
6030
 
5780
6031
  const paginationSelector = {
@@ -6104,6 +6355,7 @@ const rawProjectPermissionsSelector = {
6104
6355
  pending_clearance: true,
6105
6356
  is_guest: true,
6106
6357
  can_create_requirement: true,
6358
+ can_edit_requirement: true,
6107
6359
  can_delete_requirement: true,
6108
6360
  can_complete_requirement: true
6109
6361
  };
@@ -6125,6 +6377,8 @@ const rawBaseProjectSelector = {
6125
6377
  master: true,
6126
6378
  title: true,
6127
6379
  description: true,
6380
+ /** URL репозитория для опроса маркеров коммитов (PRD §6.2.1) */
6381
+ development_repository_url: true,
6128
6382
  meta: true,
6129
6383
  created_at: true,
6130
6384
  counts: rawProjectCountsDataSelector,
@@ -6266,7 +6520,8 @@ const rawContributorSelector = {
6266
6520
  },
6267
6521
  blagorost_wallet: rawProgramWalletSelector,
6268
6522
  generation_wallet: rawProgramWalletSelector,
6269
- main_wallet: rawProgramWalletSelector
6523
+ main_wallet: rawProgramWalletSelector,
6524
+ is_external_blagorost_agreement: true
6270
6525
  };
6271
6526
  const contributorSelector = Selector("CapitalContributor")(rawContributorSelector);
6272
6527
 
@@ -6351,11 +6606,25 @@ const rawIssuePermissionsSelector = {
6351
6606
  is_guest: true,
6352
6607
  can_assign_creator: true,
6353
6608
  can_create_requirement: true,
6609
+ can_edit_requirement: true,
6354
6610
  can_delete_requirement: true,
6355
6611
  can_complete_requirement: true,
6356
6612
  allowed_status_transitions: true,
6357
6613
  can_set_estimate: true,
6358
- can_set_priority: true
6614
+ can_set_priority: true,
6615
+ can_move_issue: true
6616
+ };
6617
+ const rawLinkedGitCommitsSelector = {
6618
+ github_sha: true,
6619
+ html_url: true,
6620
+ username: true,
6621
+ committed_at: true,
6622
+ consumed: true,
6623
+ commit_message: true
6624
+ };
6625
+ const rawIssueContributorFactSelector = {
6626
+ contributor_hash: true,
6627
+ hours: true
6359
6628
  };
6360
6629
  const rawIssueSelector = {
6361
6630
  ...baseCapitalSelector,
@@ -6373,7 +6642,12 @@ const rawIssueSelector = {
6373
6642
  project_hash: true,
6374
6643
  cycle_id: true,
6375
6644
  metadata: true,
6376
- permissions: rawIssuePermissionsSelector
6645
+ linked_git_commits: rawLinkedGitCommitsSelector,
6646
+ permissions: rawIssuePermissionsSelector,
6647
+ fact: true,
6648
+ fact_committed: true,
6649
+ fact_uncommitted: true,
6650
+ fact_by_contributor: rawIssueContributorFactSelector
6377
6651
  };
6378
6652
  const issueSelector = Selector("CapitalIssue")(rawIssueSelector);
6379
6653
 
@@ -6408,20 +6682,6 @@ const onboardingStateFields$1 = {
6408
6682
  };
6409
6683
  const capitalOnboardingStateSelector = Selector("CapitalOnboardingState")(onboardingStateFields$1);
6410
6684
 
6411
- const rawProgramInvestSelector = {
6412
- ...baseCapitalSelector,
6413
- id: true,
6414
- status: true,
6415
- invest_hash: true,
6416
- coopname: true,
6417
- username: true,
6418
- blockchain_status: true,
6419
- invested_at: true,
6420
- amount: true,
6421
- statement: rawDocumentAggregateSelector
6422
- };
6423
- const programInvestSelector = Selector("CapitalProgramInvest")(rawProgramInvestSelector);
6424
-
6425
6685
  const rawResultSelector = {
6426
6686
  ...baseCapitalSelector,
6427
6687
  id: true,
@@ -6515,6 +6775,7 @@ const rawStorySelector = {
6515
6775
  story_hash: true,
6516
6776
  title: true,
6517
6777
  description: true,
6778
+ content_format: true,
6518
6779
  status: true,
6519
6780
  project_hash: true,
6520
6781
  issue_hash: true,
@@ -6582,8 +6843,6 @@ const rawContributorsPaginationSelector = { ...paginationSelector, items: rawCon
6582
6843
  const contributorsPaginationSelector = Selector("PaginatedCapitalContributorsPaginationResult")(rawContributorsPaginationSelector);
6583
6844
  const rawInvestsPaginationSelector = { ...paginationSelector, items: rawInvestSelector };
6584
6845
  const investsPaginationSelector = Selector("PaginatedCapitalInvestsPaginationResult")(rawInvestsPaginationSelector);
6585
- const rawProgramInvestsPaginationSelector = { ...paginationSelector, items: rawProgramInvestSelector };
6586
- const programInvestsPaginationSelector = Selector("PaginatedCapitalProgramInvestsPaginationResult")(rawProgramInvestsPaginationSelector);
6587
6846
  const rawDebtsPaginationSelector = { ...paginationSelector, items: rawDebtSelector };
6588
6847
  const debtsPaginationSelector = Selector("PaginatedCapitalDebtsPaginationResult")(rawDebtsPaginationSelector);
6589
6848
  const rawResultsPaginationSelector = { ...paginationSelector, items: rawResultSelector };
@@ -6626,6 +6885,24 @@ const rawTimeStatsSelector = {
6626
6885
  };
6627
6886
  const flexibleTimeStatsSelector = Selector("CapitalTimeStats")(rawTimeStatsSelector);
6628
6887
 
6888
+ const rawChatcoopProjectCommunicationRoomSelector = {
6889
+ matrixRoomId: true,
6890
+ displayLabel: true
6891
+ };
6892
+ const chatcoopProjectCommunicationRoomSelector = Selector("ChatcoopProjectCommunicationRoom")(
6893
+ rawChatcoopProjectCommunicationRoomSelector
6894
+ );
6895
+ const rawChatcoopRoomMessageLineSelector = {
6896
+ originServerTs: true,
6897
+ authorLabel: true,
6898
+ coopUsername: true,
6899
+ kind: true,
6900
+ bodyText: true
6901
+ };
6902
+ const chatcoopRoomMessageLineSelector = Selector("ChatcoopRoomMessageLine")(
6903
+ rawChatcoopRoomMessageLineSelector
6904
+ );
6905
+
6629
6906
  const rawTranscriptionSegmentSelector = {
6630
6907
  id: true,
6631
6908
  speakerIdentity: true,
@@ -6645,6 +6922,7 @@ const rawCallTranscriptionSelector = {
6645
6922
  endedAt: true,
6646
6923
  participants: true,
6647
6924
  status: true,
6925
+ memo: true,
6648
6926
  createdAt: true,
6649
6927
  updatedAt: true
6650
6928
  };
@@ -6661,6 +6939,32 @@ const rawChatCoopAccountStatusSelector = {
6661
6939
  iframeUrl: true
6662
6940
  };
6663
6941
  const chatcoopAccountStatusSelector = Selector("MatrixAccountStatusResponseDTO")(rawChatCoopAccountStatusSelector);
6942
+ const rawChatCoopCalendarRoomOptionSelector = {
6943
+ matrixRoomId: true,
6944
+ displayLabel: true
6945
+ };
6946
+ const chatCoopCalendarRoomOptionSelector = Selector("ChatCoopCalendarRoomOption")(
6947
+ rawChatCoopCalendarRoomOptionSelector
6948
+ );
6949
+ const rawChatCoopCalendarEventSelector = {
6950
+ id: true,
6951
+ matrixRoomId: true,
6952
+ title: true,
6953
+ description: true,
6954
+ startsAt: true,
6955
+ endsAt: true,
6956
+ createdByUsername: true,
6957
+ icsSequence: true,
6958
+ createdAt: true,
6959
+ updatedAt: true
6960
+ };
6961
+ const chatCoopCalendarEventSelector = Selector("ChatCoopCalendarEvent")(rawChatCoopCalendarEventSelector);
6962
+ const rawChatCoopCalendarIcsUrlSelector = {
6963
+ icsUrl: true
6964
+ };
6965
+ const chatCoopCalendarIcsUrlSelector = Selector("ChatCoopCalendarIcsUrlResponse")(
6966
+ rawChatCoopCalendarIcsUrlSelector
6967
+ );
6664
6968
 
6665
6969
  const rawCommonRequestSelector = {
6666
6970
  hash: true,
@@ -6833,7 +7137,8 @@ const rawMeetPreProcessingSelector = {
6833
7137
  agenda: rawAgendaMeetPointSelector,
6834
7138
  open_at: true,
6835
7139
  close_at: true,
6836
- proposal: rawDocumentAggregateSelector
7140
+ proposal: rawDocumentAggregateSelector,
7141
+ details: true
6837
7142
  };
6838
7143
  const meetPreProcessingSelector = Selector("MeetPreProcessing")(rawMeetPreProcessingSelector);
6839
7144
 
@@ -7210,7 +7515,12 @@ const index$L = {
7210
7515
  capitalCandidatesPaginationSelector: capitalCandidatesPaginationSelector,
7211
7516
  capitalOnboardingStateSelector: capitalOnboardingStateSelector,
7212
7517
  chartOfAccountsItemSelector: chartOfAccountsItemSelector,
7518
+ chatCoopCalendarEventSelector: chatCoopCalendarEventSelector,
7519
+ chatCoopCalendarIcsUrlSelector: chatCoopCalendarIcsUrlSelector,
7520
+ chatCoopCalendarRoomOptionSelector: chatCoopCalendarRoomOptionSelector,
7213
7521
  chatcoopAccountStatusSelector: chatcoopAccountStatusSelector,
7522
+ chatcoopProjectCommunicationRoomSelector: chatcoopProjectCommunicationRoomSelector,
7523
+ chatcoopRoomMessageLineSelector: chatcoopRoomMessageLineSelector,
7214
7524
  commitSelector: commitSelector,
7215
7525
  commitsPaginationSelector: commitsPaginationSelector,
7216
7526
  configSelector: configSelector,
@@ -7263,8 +7573,6 @@ const index$L = {
7263
7573
  paymentMethodSelector: paymentMethodSelector,
7264
7574
  paymentSelector: paymentSelector,
7265
7575
  privateAccountSelector: privateAccountSelector,
7266
- programInvestSelector: programInvestSelector,
7267
- programInvestsPaginationSelector: programInvestsPaginationSelector,
7268
7576
  programWalletSelector: programWalletSelector,
7269
7577
  programWalletsPaginationSelector: programWalletsPaginationSelector,
7270
7578
  projectSelector: projectSelector,
@@ -7292,6 +7600,8 @@ const index$L = {
7292
7600
  rawCapitalCandidatesPaginationSelector: rawCapitalCandidatesPaginationSelector,
7293
7601
  rawChartOfAccountsItemSelector: rawChartOfAccountsItemSelector,
7294
7602
  rawChatCoopAccountStatusSelector: rawChatCoopAccountStatusSelector,
7603
+ rawChatcoopProjectCommunicationRoomSelector: rawChatcoopProjectCommunicationRoomSelector,
7604
+ rawChatcoopRoomMessageLineSelector: rawChatcoopRoomMessageLineSelector,
7295
7605
  rawCommitSelector: rawCommitSelector,
7296
7606
  rawCommonRequestSelector: rawCommonRequestSelector,
7297
7607
  rawConfigSelector: rawConfigSelector,
@@ -7339,7 +7649,6 @@ const index$L = {
7339
7649
  rawPaymentMethodSelector: rawPaymentMethodSelector,
7340
7650
  rawPaymentSelector: rawPaymentSelector,
7341
7651
  rawPrivateAccountSelector: rawPrivateAccountSelector,
7342
- rawProgramInvestSelector: rawProgramInvestSelector,
7343
7652
  rawProgramWalletSelector: rawProgramWalletSelector,
7344
7653
  rawProgramWalletsPaginationSelector: rawProgramWalletsPaginationSelector,
7345
7654
  rawProjectCountsDataSelector: rawProjectCountsDataSelector,
@@ -7395,15 +7704,15 @@ const index$L = {
7395
7704
  webPushSubscriptionSelector: webPushSubscriptionSelector
7396
7705
  };
7397
7706
 
7398
- const name$3D = "updateAccount";
7399
- const mutation$2v = Selector("Mutation")({
7400
- [name$3D]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
7707
+ const name$3Q = "updateAccount";
7708
+ const mutation$2E = Selector("Mutation")({
7709
+ [name$3Q]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
7401
7710
  });
7402
7711
 
7403
7712
  const updateAccount = {
7404
7713
  __proto__: null,
7405
- mutation: mutation$2v,
7406
- name: name$3D
7714
+ mutation: mutation$2E,
7715
+ name: name$3Q
7407
7716
  };
7408
7717
 
7409
7718
  const index$K = {
@@ -7414,81 +7723,81 @@ const index$K = {
7414
7723
  UpdateAccount: updateAccount
7415
7724
  };
7416
7725
 
7417
- const name$3C = "generatePrivacyAgreement";
7418
- const mutation$2u = Selector("Mutation")({
7419
- [name$3C]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7726
+ const name$3P = "generatePrivacyAgreement";
7727
+ const mutation$2D = Selector("Mutation")({
7728
+ [name$3P]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7420
7729
  });
7421
7730
 
7422
7731
  const generatePrivacyAgreement = {
7423
7732
  __proto__: null,
7424
- mutation: mutation$2u,
7425
- name: name$3C
7733
+ mutation: mutation$2D,
7734
+ name: name$3P
7426
7735
  };
7427
7736
 
7428
- const name$3B = "generateSignatureAgreement";
7429
- const mutation$2t = Selector("Mutation")({
7430
- [name$3B]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7737
+ const name$3O = "generateSignatureAgreement";
7738
+ const mutation$2C = Selector("Mutation")({
7739
+ [name$3O]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7431
7740
  });
7432
7741
 
7433
7742
  const generateSignatureAgreement = {
7434
7743
  __proto__: null,
7435
- mutation: mutation$2t,
7436
- name: name$3B
7744
+ mutation: mutation$2C,
7745
+ name: name$3O
7437
7746
  };
7438
7747
 
7439
- const name$3A = "generateWalletAgreement";
7440
- const mutation$2s = Selector("Mutation")({
7441
- [name$3A]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7748
+ const name$3N = "generateWalletAgreement";
7749
+ const mutation$2B = Selector("Mutation")({
7750
+ [name$3N]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7442
7751
  });
7443
7752
 
7444
7753
  const generateWalletAgreement = {
7445
7754
  __proto__: null,
7446
- mutation: mutation$2s,
7447
- name: name$3A
7755
+ mutation: mutation$2B,
7756
+ name: name$3N
7448
7757
  };
7449
7758
 
7450
- const name$3z = "generateUserAgreement";
7451
- const mutation$2r = Selector("Mutation")({
7452
- [name$3z]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7759
+ const name$3M = "generateUserAgreement";
7760
+ const mutation$2A = Selector("Mutation")({
7761
+ [name$3M]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7453
7762
  });
7454
7763
 
7455
7764
  const generateUserAgreement = {
7456
7765
  __proto__: null,
7457
- mutation: mutation$2r,
7458
- name: name$3z
7766
+ mutation: mutation$2A,
7767
+ name: name$3M
7459
7768
  };
7460
7769
 
7461
- const name$3y = "sendAgreement";
7462
- const mutation$2q = Selector("Mutation")({
7463
- [name$3y]: [{ data: $("data", "SendAgreementInput!") }, rawTransactionSelector]
7770
+ const name$3L = "sendAgreement";
7771
+ const mutation$2z = Selector("Mutation")({
7772
+ [name$3L]: [{ data: $("data", "SendAgreementInput!") }, rawTransactionSelector]
7464
7773
  });
7465
7774
 
7466
7775
  const sendAgreement = {
7467
7776
  __proto__: null,
7468
- mutation: mutation$2q,
7469
- name: name$3y
7777
+ mutation: mutation$2z,
7778
+ name: name$3L
7470
7779
  };
7471
7780
 
7472
- const name$3x = "confirmAgreement";
7473
- const mutation$2p = Selector("Mutation")({
7474
- [name$3x]: [{ data: $("data", "ConfirmAgreementInput!") }, rawTransactionSelector]
7781
+ const name$3K = "confirmAgreement";
7782
+ const mutation$2y = Selector("Mutation")({
7783
+ [name$3K]: [{ data: $("data", "ConfirmAgreementInput!") }, rawTransactionSelector]
7475
7784
  });
7476
7785
 
7477
7786
  const confirmAgreement = {
7478
7787
  __proto__: null,
7479
- mutation: mutation$2p,
7480
- name: name$3x
7788
+ mutation: mutation$2y,
7789
+ name: name$3K
7481
7790
  };
7482
7791
 
7483
- const name$3w = "declineAgreement";
7484
- const mutation$2o = Selector("Mutation")({
7485
- [name$3w]: [{ data: $("data", "DeclineAgreementInput!") }, rawTransactionSelector]
7792
+ const name$3J = "declineAgreement";
7793
+ const mutation$2x = Selector("Mutation")({
7794
+ [name$3J]: [{ data: $("data", "DeclineAgreementInput!") }, rawTransactionSelector]
7486
7795
  });
7487
7796
 
7488
7797
  const declineAgreement = {
7489
7798
  __proto__: null,
7490
- mutation: mutation$2o,
7491
- name: name$3w
7799
+ mutation: mutation$2x,
7800
+ name: name$3J
7492
7801
  };
7493
7802
 
7494
7803
  const index$J = {
@@ -7502,37 +7811,37 @@ const index$J = {
7502
7811
  SendAgreement: sendAgreement
7503
7812
  };
7504
7813
 
7505
- const name$3v = "refresh";
7506
- const mutation$2n = Selector("Mutation")({
7507
- [name$3v]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
7814
+ const name$3I = "refresh";
7815
+ const mutation$2w = Selector("Mutation")({
7816
+ [name$3I]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
7508
7817
  });
7509
7818
 
7510
7819
  const refresh = {
7511
7820
  __proto__: null,
7512
- mutation: mutation$2n,
7513
- name: name$3v
7821
+ mutation: mutation$2w,
7822
+ name: name$3I
7514
7823
  };
7515
7824
 
7516
- const name$3u = "logout";
7517
- const mutation$2m = Selector("Mutation")({
7518
- [name$3u]: [{ data: $("data", "LogoutInput!") }, true]
7825
+ const name$3H = "logout";
7826
+ const mutation$2v = Selector("Mutation")({
7827
+ [name$3H]: [{ data: $("data", "LogoutInput!") }, true]
7519
7828
  });
7520
7829
 
7521
7830
  const logout = {
7522
7831
  __proto__: null,
7523
- mutation: mutation$2m,
7524
- name: name$3u
7832
+ mutation: mutation$2v,
7833
+ name: name$3H
7525
7834
  };
7526
7835
 
7527
- const name$3t = "login";
7528
- const mutation$2l = Selector("Mutation")({
7529
- [name$3t]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
7836
+ const name$3G = "login";
7837
+ const mutation$2u = Selector("Mutation")({
7838
+ [name$3G]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
7530
7839
  });
7531
7840
 
7532
7841
  const login = {
7533
7842
  __proto__: null,
7534
- mutation: mutation$2l,
7535
- name: name$3t
7843
+ mutation: mutation$2u,
7844
+ name: name$3G
7536
7845
  };
7537
7846
 
7538
7847
  const index$I = {
@@ -7542,81 +7851,81 @@ const index$I = {
7542
7851
  Refresh: refresh
7543
7852
  };
7544
7853
 
7545
- const name$3s = "addTrustedAccount";
7546
- const mutation$2k = Selector("Mutation")({
7547
- [name$3s]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
7854
+ const name$3F = "addTrustedAccount";
7855
+ const mutation$2t = Selector("Mutation")({
7856
+ [name$3F]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
7548
7857
  });
7549
7858
 
7550
7859
  const addTrustedAccount = {
7551
7860
  __proto__: null,
7552
- mutation: mutation$2k,
7553
- name: name$3s
7861
+ mutation: mutation$2t,
7862
+ name: name$3F
7554
7863
  };
7555
7864
 
7556
- const name$3r = "createBranch";
7557
- const mutation$2j = Selector("Mutation")({
7558
- [name$3r]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
7865
+ const name$3E = "createBranch";
7866
+ const mutation$2s = Selector("Mutation")({
7867
+ [name$3E]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
7559
7868
  });
7560
7869
 
7561
7870
  const createBranch = {
7562
7871
  __proto__: null,
7563
- mutation: mutation$2j,
7564
- name: name$3r
7872
+ mutation: mutation$2s,
7873
+ name: name$3E
7565
7874
  };
7566
7875
 
7567
- const name$3q = "deleteBranch";
7568
- const mutation$2i = Selector("Mutation")({
7569
- [name$3q]: [{ data: $("data", "DeleteBranchInput!") }, true]
7876
+ const name$3D = "deleteBranch";
7877
+ const mutation$2r = Selector("Mutation")({
7878
+ [name$3D]: [{ data: $("data", "DeleteBranchInput!") }, true]
7570
7879
  });
7571
7880
 
7572
7881
  const deleteBranch = {
7573
7882
  __proto__: null,
7574
- mutation: mutation$2i,
7575
- name: name$3q
7883
+ mutation: mutation$2r,
7884
+ name: name$3D
7576
7885
  };
7577
7886
 
7578
- const name$3p = "deleteTrustedAccount";
7579
- const mutation$2h = Selector("Mutation")({
7580
- [name$3p]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
7887
+ const name$3C = "deleteTrustedAccount";
7888
+ const mutation$2q = Selector("Mutation")({
7889
+ [name$3C]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
7581
7890
  });
7582
7891
 
7583
7892
  const deleteTrustedAccount = {
7584
7893
  __proto__: null,
7585
- mutation: mutation$2h,
7586
- name: name$3p
7894
+ mutation: mutation$2q,
7895
+ name: name$3C
7587
7896
  };
7588
7897
 
7589
- const name$3o = "editBranch";
7590
- const mutation$2g = Selector("Mutation")({
7591
- [name$3o]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
7898
+ const name$3B = "editBranch";
7899
+ const mutation$2p = Selector("Mutation")({
7900
+ [name$3B]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
7592
7901
  });
7593
7902
 
7594
7903
  const editBranch = {
7595
7904
  __proto__: null,
7596
- mutation: mutation$2g,
7597
- name: name$3o
7905
+ mutation: mutation$2p,
7906
+ name: name$3B
7598
7907
  };
7599
7908
 
7600
- const name$3n = "generateSelectBranchDocument";
7601
- const mutation$2f = Selector("Mutation")({
7602
- [name$3n]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7909
+ const name$3A = "generateSelectBranchDocument";
7910
+ const mutation$2o = Selector("Mutation")({
7911
+ [name$3A]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7603
7912
  });
7604
7913
 
7605
7914
  const generateSelectBranchDocument = {
7606
7915
  __proto__: null,
7607
- mutation: mutation$2f,
7608
- name: name$3n
7916
+ mutation: mutation$2o,
7917
+ name: name$3A
7609
7918
  };
7610
7919
 
7611
- const name$3m = "selectBranch";
7612
- const mutation$2e = Selector("Mutation")({
7613
- [name$3m]: [{ data: $("data", "SelectBranchInput!") }, true]
7920
+ const name$3z = "selectBranch";
7921
+ const mutation$2n = Selector("Mutation")({
7922
+ [name$3z]: [{ data: $("data", "SelectBranchInput!") }, true]
7614
7923
  });
7615
7924
 
7616
7925
  const selectBranch = {
7617
7926
  __proto__: null,
7618
- mutation: mutation$2e,
7619
- name: name$3m
7927
+ mutation: mutation$2n,
7928
+ name: name$3z
7620
7929
  };
7621
7930
 
7622
7931
  const index$H = {
@@ -7630,755 +7939,805 @@ const index$H = {
7630
7939
  SelectBranch: selectBranch
7631
7940
  };
7632
7941
 
7633
- const name$3l = "capitalAddAuthor";
7634
- const mutation$2d = Selector("Mutation")({
7635
- [name$3l]: [{ data: $("data", "AddAuthorInput!") }, rawProjectSelector]
7942
+ const name$3y = "capitalAddAuthor";
7943
+ const mutation$2m = Selector("Mutation")({
7944
+ [name$3y]: [{ data: $("data", "AddAuthorInput!") }, rawProjectSelector]
7636
7945
  });
7637
7946
 
7638
7947
  const addAuthor = {
7639
7948
  __proto__: null,
7640
- mutation: mutation$2d,
7641
- name: name$3l
7949
+ mutation: mutation$2m,
7950
+ name: name$3y
7642
7951
  };
7643
7952
 
7644
- const name$3k = "capitalApproveCommit";
7645
- const mutation$2c = Selector("Mutation")({
7646
- [name$3k]: [{ data: $("data", "CommitApproveInput!") }, rawCommitSelector]
7953
+ const name$3x = "capitalApproveCommit";
7954
+ const mutation$2l = Selector("Mutation")({
7955
+ [name$3x]: [{ data: $("data", "CommitApproveInput!") }, rawCommitSelector]
7647
7956
  });
7648
7957
 
7649
7958
  const approveCommit = {
7959
+ __proto__: null,
7960
+ mutation: mutation$2l,
7961
+ name: name$3x
7962
+ };
7963
+
7964
+ const name$3w = "capitalCalculateVotes";
7965
+ const mutation$2k = Selector("Mutation")({
7966
+ [name$3w]: [{ data: $("data", "CalculateVotesInput!") }, rawSegmentSelector]
7967
+ });
7968
+
7969
+ const calculateVotes = {
7970
+ __proto__: null,
7971
+ mutation: mutation$2k,
7972
+ name: name$3w
7973
+ };
7974
+
7975
+ const name$3v = "capitalCloseProject";
7976
+ const mutation$2j = Selector("Mutation")({
7977
+ [name$3v]: [{ data: $("data", "CloseProjectInput!") }, projectSelector]
7978
+ });
7979
+
7980
+ const closeProject = {
7981
+ __proto__: null,
7982
+ mutation: mutation$2j,
7983
+ name: name$3v
7984
+ };
7985
+
7986
+ const name$3u = "capitalCompleteRegistration";
7987
+ const mutation$2i = Selector("Mutation")({
7988
+ [name$3u]: [{ data: $("data", "CompleteCapitalRegistrationInputDTO!") }, rawTransactionSelector]
7989
+ });
7990
+
7991
+ const completeCapitalRegistration = {
7992
+ __proto__: null,
7993
+ mutation: mutation$2i,
7994
+ name: name$3u
7995
+ };
7996
+
7997
+ const name$3t = "completeCapitalOnboardingStep";
7998
+ const mutation$2h = Selector("Mutation")({
7999
+ [name$3t]: [{ data: $("data", "CapitalOnboardingStepInput!") }, capitalOnboardingStateSelector]
8000
+ });
8001
+
8002
+ const completeOnboardingStep = {
8003
+ __proto__: null,
8004
+ mutation: mutation$2h,
8005
+ name: name$3t
8006
+ };
8007
+
8008
+ const name$3s = "capitalCompleteVoting";
8009
+ const mutation$2g = Selector("Mutation")({
8010
+ [name$3s]: [{ data: $("data", "CompleteVotingInput!") }, rawTransactionSelector]
8011
+ });
8012
+
8013
+ const completeVoting = {
8014
+ __proto__: null,
8015
+ mutation: mutation$2g,
8016
+ name: name$3s
8017
+ };
8018
+
8019
+ const name$3r = "capitalConvertSegment";
8020
+ const mutation$2f = Selector("Mutation")({
8021
+ [name$3r]: [{ data: $("data", "ConvertSegmentInput!") }, rawSegmentSelector]
8022
+ });
8023
+
8024
+ const convertSegment = {
8025
+ __proto__: null,
8026
+ mutation: mutation$2f,
8027
+ name: name$3r
8028
+ };
8029
+
8030
+ const name$3q = "capitalCreateCommit";
8031
+ const mutation$2e = Selector("Mutation")({
8032
+ [name$3q]: [{ data: $("data", "CreateCommitInput!") }, rawCommitSelector]
8033
+ });
8034
+
8035
+ const createCommit = {
8036
+ __proto__: null,
8037
+ mutation: mutation$2e,
8038
+ name: name$3q
8039
+ };
8040
+
8041
+ const name$3p = "capitalCreateCycle";
8042
+ const mutation$2d = Selector("Mutation")({
8043
+ [name$3p]: [{ data: $("data", "CreateCycleInput!") }, rawCycleSelector]
8044
+ });
8045
+
8046
+ const createCycle = {
8047
+ __proto__: null,
8048
+ mutation: mutation$2d,
8049
+ name: name$3p
8050
+ };
8051
+
8052
+ const name$3o = "capitalCreateDebt";
8053
+ const mutation$2c = Selector("Mutation")({
8054
+ [name$3o]: [{ data: $("data", "CreateDebtInput!") }, rawTransactionSelector]
8055
+ });
8056
+
8057
+ const createDebt = {
7650
8058
  __proto__: null,
7651
8059
  mutation: mutation$2c,
7652
- name: name$3k
8060
+ name: name$3o
7653
8061
  };
7654
8062
 
7655
- const name$3j = "capitalCalculateVotes";
8063
+ const name$3n = "capitalCreateExpense";
7656
8064
  const mutation$2b = Selector("Mutation")({
7657
- [name$3j]: [{ data: $("data", "CalculateVotesInput!") }, rawSegmentSelector]
8065
+ [name$3n]: [{ data: $("data", "CreateExpenseInput!") }, rawTransactionSelector]
7658
8066
  });
7659
8067
 
7660
- const calculateVotes = {
8068
+ const createExpense = {
7661
8069
  __proto__: null,
7662
8070
  mutation: mutation$2b,
7663
- name: name$3j
8071
+ name: name$3n
7664
8072
  };
7665
8073
 
7666
- const name$3i = "capitalCloseProject";
8074
+ const name$3m = "capitalCreateIssue";
7667
8075
  const mutation$2a = Selector("Mutation")({
7668
- [name$3i]: [{ data: $("data", "CloseProjectInput!") }, projectSelector]
8076
+ [name$3m]: [{ data: $("data", "CreateIssueInput!") }, rawIssueSelector]
7669
8077
  });
7670
8078
 
7671
- const closeProject = {
8079
+ const createIssue = {
7672
8080
  __proto__: null,
7673
8081
  mutation: mutation$2a,
7674
- name: name$3i
8082
+ name: name$3m
7675
8083
  };
7676
8084
 
7677
- const name$3h = "capitalCompleteRegistration";
8085
+ const name$3l = "capitalCreateProgramInvest";
7678
8086
  const mutation$29 = Selector("Mutation")({
7679
- [name$3h]: [{ data: $("data", "CompleteCapitalRegistrationInputDTO!") }, rawTransactionSelector]
8087
+ [name$3l]: [{ data: $("data", "CreateProgramInvestInput!") }, rawTransactionSelector]
7680
8088
  });
7681
8089
 
7682
- const completeCapitalRegistration = {
8090
+ const createProgramInvest = {
7683
8091
  __proto__: null,
7684
8092
  mutation: mutation$29,
7685
- name: name$3h
8093
+ name: name$3l
7686
8094
  };
7687
8095
 
7688
- const name$3g = "completeCapitalOnboardingStep";
8096
+ const name$3k = "capitalCreateProgramProperty";
7689
8097
  const mutation$28 = Selector("Mutation")({
7690
- [name$3g]: [{ data: $("data", "CapitalOnboardingStepInput!") }, capitalOnboardingStateSelector]
8098
+ [name$3k]: [{ data: $("data", "CreateProgramPropertyInput!") }, rawTransactionSelector]
7691
8099
  });
7692
8100
 
7693
- const completeOnboardingStep = {
8101
+ const createProgramProperty = {
7694
8102
  __proto__: null,
7695
8103
  mutation: mutation$28,
7696
- name: name$3g
8104
+ name: name$3k
7697
8105
  };
7698
8106
 
7699
- const name$3f = "capitalCompleteVoting";
8107
+ const name$3j = "capitalCreateProject";
7700
8108
  const mutation$27 = Selector("Mutation")({
7701
- [name$3f]: [{ data: $("data", "CompleteVotingInput!") }, rawTransactionSelector]
8109
+ [name$3j]: [{ data: $("data", "CreateProjectInput!") }, rawTransactionSelector]
7702
8110
  });
7703
8111
 
7704
- const completeVoting = {
8112
+ const createProject = {
7705
8113
  __proto__: null,
7706
8114
  mutation: mutation$27,
7707
- name: name$3f
8115
+ name: name$3j
7708
8116
  };
7709
8117
 
7710
- const name$3e = "capitalConvertSegment";
8118
+ const name$3i = "capitalCreateProjectInvest";
7711
8119
  const mutation$26 = Selector("Mutation")({
7712
- [name$3e]: [{ data: $("data", "ConvertSegmentInput!") }, rawSegmentSelector]
8120
+ [name$3i]: [{ data: $("data", "CreateProjectInvestInput!") }, rawTransactionSelector]
7713
8121
  });
7714
8122
 
7715
- const convertSegment = {
8123
+ const createProjectInvest = {
7716
8124
  __proto__: null,
7717
8125
  mutation: mutation$26,
7718
- name: name$3e
8126
+ name: name$3i
7719
8127
  };
7720
8128
 
7721
- const name$3d = "capitalCreateCommit";
8129
+ const name$3h = "capitalCreateProjectProperty";
7722
8130
  const mutation$25 = Selector("Mutation")({
7723
- [name$3d]: [{ data: $("data", "CreateCommitInput!") }, rawCommitSelector]
8131
+ [name$3h]: [{ data: $("data", "CreateProjectPropertyInput!") }, rawTransactionSelector]
7724
8132
  });
7725
8133
 
7726
- const createCommit = {
8134
+ const createProjectProperty = {
7727
8135
  __proto__: null,
7728
8136
  mutation: mutation$25,
7729
- name: name$3d
8137
+ name: name$3h
7730
8138
  };
7731
8139
 
7732
- const name$3c = "capitalCreateCycle";
8140
+ const name$3g = "capitalCreateStory";
7733
8141
  const mutation$24 = Selector("Mutation")({
7734
- [name$3c]: [{ data: $("data", "CreateCycleInput!") }, rawCycleSelector]
8142
+ [name$3g]: [{ data: $("data", "CreateStoryInput!") }, rawStorySelector]
7735
8143
  });
7736
8144
 
7737
- const createCycle = {
8145
+ const createStory = {
7738
8146
  __proto__: null,
7739
8147
  mutation: mutation$24,
7740
- name: name$3c
8148
+ name: name$3g
7741
8149
  };
7742
8150
 
7743
- const name$3b = "capitalCreateDebt";
8151
+ const name$3f = "capitalDeclineCommit";
7744
8152
  const mutation$23 = Selector("Mutation")({
7745
- [name$3b]: [{ data: $("data", "CreateDebtInput!") }, rawTransactionSelector]
8153
+ [name$3f]: [{ data: $("data", "CommitDeclineInput!") }, rawCommitSelector]
7746
8154
  });
7747
8155
 
7748
- const createDebt = {
8156
+ const declineCommit = {
7749
8157
  __proto__: null,
7750
8158
  mutation: mutation$23,
7751
- name: name$3b
8159
+ name: name$3f
7752
8160
  };
7753
8161
 
7754
- const name$3a = "capitalCreateExpense";
8162
+ const name$3e = "capitalDeleteIssue";
7755
8163
  const mutation$22 = Selector("Mutation")({
7756
- [name$3a]: [{ data: $("data", "CreateExpenseInput!") }, rawTransactionSelector]
8164
+ [name$3e]: [{ data: $("data", "DeleteCapitalIssueByHashInput!") }, true]
7757
8165
  });
7758
8166
 
7759
- const createExpense = {
8167
+ const deleteIssue = {
7760
8168
  __proto__: null,
7761
8169
  mutation: mutation$22,
7762
- name: name$3a
8170
+ name: name$3e
7763
8171
  };
7764
8172
 
7765
- const name$39 = "capitalCreateIssue";
8173
+ const name$3d = "capitalMoveIssueToComponent";
7766
8174
  const mutation$21 = Selector("Mutation")({
7767
- [name$39]: [{ data: $("data", "CreateIssueInput!") }, rawIssueSelector]
8175
+ [name$3d]: [{ data: $("data", "MoveCapitalIssueToComponentInput!") }, rawIssueSelector]
7768
8176
  });
7769
8177
 
7770
- const createIssue = {
8178
+ const moveIssueToComponent = {
7771
8179
  __proto__: null,
7772
8180
  mutation: mutation$21,
7773
- name: name$39
8181
+ name: name$3d
7774
8182
  };
7775
8183
 
7776
- const name$38 = "capitalCreateProgramProperty";
8184
+ const name$3c = "capitalDeleteProject";
7777
8185
  const mutation$20 = Selector("Mutation")({
7778
- [name$38]: [{ data: $("data", "CreateProgramPropertyInput!") }, rawTransactionSelector]
8186
+ [name$3c]: [{ data: $("data", "DeleteProjectInput!") }, rawTransactionSelector]
7779
8187
  });
7780
8188
 
7781
- const createProgramProperty = {
8189
+ const deleteProject = {
7782
8190
  __proto__: null,
7783
8191
  mutation: mutation$20,
7784
- name: name$38
8192
+ name: name$3c
7785
8193
  };
7786
8194
 
7787
- const name$37 = "capitalCreateProject";
8195
+ const name$3b = "capitalDeleteStory";
7788
8196
  const mutation$1$ = Selector("Mutation")({
7789
- [name$37]: [{ data: $("data", "CreateProjectInput!") }, rawTransactionSelector]
8197
+ [name$3b]: [{ data: $("data", "DeleteCapitalStoryByHashInput!") }, true]
7790
8198
  });
7791
8199
 
7792
- const createProject = {
8200
+ const deleteStory = {
7793
8201
  __proto__: null,
7794
8202
  mutation: mutation$1$,
7795
- name: name$37
8203
+ name: name$3b
7796
8204
  };
7797
8205
 
7798
- const name$36 = "capitalCreateProjectInvest";
8206
+ const name$3a = "capitalEditContributor";
7799
8207
  const mutation$1_ = Selector("Mutation")({
7800
- [name$36]: [{ data: $("data", "CreateProjectInvestInput!") }, rawTransactionSelector]
8208
+ [name$3a]: [{ data: $("data", "EditContributorInput!") }, rawContributorSelector]
7801
8209
  });
7802
8210
 
7803
- const createProjectInvest = {
8211
+ const editContributor = {
7804
8212
  __proto__: null,
7805
8213
  mutation: mutation$1_,
7806
- name: name$36
8214
+ name: name$3a
7807
8215
  };
7808
8216
 
7809
- const name$35 = "capitalCreateProjectProperty";
8217
+ const name$39 = "capitalEditProject";
7810
8218
  const mutation$1Z = Selector("Mutation")({
7811
- [name$35]: [{ data: $("data", "CreateProjectPropertyInput!") }, rawTransactionSelector]
8219
+ [name$39]: [{ data: $("data", "EditProjectInput!") }, rawTransactionSelector]
7812
8220
  });
7813
8221
 
7814
- const createProjectProperty = {
8222
+ const editProject = {
7815
8223
  __proto__: null,
7816
8224
  mutation: mutation$1Z,
7817
- name: name$35
8225
+ name: name$39
7818
8226
  };
7819
8227
 
7820
- const name$34 = "capitalCreateStory";
8228
+ const name$38 = "capitalFinalizeProject";
7821
8229
  const mutation$1Y = Selector("Mutation")({
7822
- [name$34]: [{ data: $("data", "CreateStoryInput!") }, rawStorySelector]
8230
+ [name$38]: [{ data: $("data", "FinalizeProjectInput!") }, projectSelector]
7823
8231
  });
7824
8232
 
7825
- const createStory = {
8233
+ const finalizeProject = {
7826
8234
  __proto__: null,
7827
8235
  mutation: mutation$1Y,
7828
- name: name$34
8236
+ name: name$38
7829
8237
  };
7830
8238
 
7831
- const name$33 = "capitalDeclineCommit";
8239
+ const name$37 = "capitalFundProgram";
7832
8240
  const mutation$1X = Selector("Mutation")({
7833
- [name$33]: [{ data: $("data", "CommitDeclineInput!") }, rawCommitSelector]
8241
+ [name$37]: [{ data: $("data", "FundProgramInput!") }, rawTransactionSelector]
7834
8242
  });
7835
8243
 
7836
- const declineCommit = {
8244
+ const fundProgram = {
7837
8245
  __proto__: null,
7838
8246
  mutation: mutation$1X,
7839
- name: name$33
8247
+ name: name$37
7840
8248
  };
7841
8249
 
7842
- const name$32 = "capitalDeleteIssue";
8250
+ const name$36 = "capitalGenerateCapitalizationAgreement";
7843
8251
  const mutation$1W = Selector("Mutation")({
7844
- [name$32]: [{ data: $("data", "DeleteCapitalIssueByHashInput!") }, true]
8252
+ [name$36]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7845
8253
  });
7846
8254
 
7847
- const deleteIssue = {
8255
+ const generateCapitalizationAgreement = {
7848
8256
  __proto__: null,
7849
8257
  mutation: mutation$1W,
7850
- name: name$32
8258
+ name: name$36
7851
8259
  };
7852
8260
 
7853
- const name$31 = "capitalDeleteProject";
8261
+ const name$35 = "capitalGenerateCapitalizationMoneyInvestStatement";
7854
8262
  const mutation$1V = Selector("Mutation")({
7855
- [name$31]: [{ data: $("data", "DeleteProjectInput!") }, rawTransactionSelector]
8263
+ [name$35]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7856
8264
  });
7857
8265
 
7858
- const deleteProject = {
8266
+ const generateCapitalizationMoneyInvestStatement = {
7859
8267
  __proto__: null,
7860
8268
  mutation: mutation$1V,
7861
- name: name$31
8269
+ name: name$35
7862
8270
  };
7863
8271
 
7864
- const name$30 = "capitalDeleteStory";
8272
+ const name$34 = "capitalGenerateCapitalizationPropertyInvestAct";
7865
8273
  const mutation$1U = Selector("Mutation")({
7866
- [name$30]: [{ data: $("data", "DeleteCapitalStoryByHashInput!") }, true]
8274
+ [name$34]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7867
8275
  });
7868
8276
 
7869
- const deleteStory = {
8277
+ const generateCapitalizationPropertyInvestAct = {
7870
8278
  __proto__: null,
7871
8279
  mutation: mutation$1U,
7872
- name: name$30
8280
+ name: name$34
7873
8281
  };
7874
8282
 
7875
- const name$2$ = "capitalEditContributor";
8283
+ const name$33 = "capitalGenerateCapitalizationPropertyInvestDecision";
7876
8284
  const mutation$1T = Selector("Mutation")({
7877
- [name$2$]: [{ data: $("data", "EditContributorInput!") }, rawContributorSelector]
8285
+ [name$33]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7878
8286
  });
7879
8287
 
7880
- const editContributor = {
8288
+ const generateCapitalizationPropertyInvestDecision = {
7881
8289
  __proto__: null,
7882
8290
  mutation: mutation$1T,
7883
- name: name$2$
8291
+ name: name$33
7884
8292
  };
7885
8293
 
7886
- const name$2_ = "capitalEditProject";
8294
+ const name$32 = "capitalGenerateCapitalizationPropertyInvestStatement";
7887
8295
  const mutation$1S = Selector("Mutation")({
7888
- [name$2_]: [{ data: $("data", "EditProjectInput!") }, rawTransactionSelector]
8296
+ [name$32]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7889
8297
  });
7890
8298
 
7891
- const editProject = {
8299
+ const generateCapitalizationPropertyInvestStatement = {
7892
8300
  __proto__: null,
7893
8301
  mutation: mutation$1S,
7894
- name: name$2_
8302
+ name: name$32
7895
8303
  };
7896
8304
 
7897
- const name$2Z = "capitalFinalizeProject";
8305
+ const name$31 = "capitalGenerateCapitalizationToMainWalletConvertStatement";
7898
8306
  const mutation$1R = Selector("Mutation")({
7899
- [name$2Z]: [{ data: $("data", "FinalizeProjectInput!") }, projectSelector]
8307
+ [name$31]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7900
8308
  });
7901
8309
 
7902
- const finalizeProject = {
8310
+ const generateCapitalizationToMainWalletConvertStatement = {
7903
8311
  __proto__: null,
7904
8312
  mutation: mutation$1R,
7905
- name: name$2Z
8313
+ name: name$31
7906
8314
  };
7907
8315
 
7908
- const name$2Y = "capitalFundProgram";
8316
+ const name$30 = "capitalGenerateRegistrationDocuments";
7909
8317
  const mutation$1Q = Selector("Mutation")({
7910
- [name$2Y]: [{ data: $("data", "FundProgramInput!") }, rawTransactionSelector]
8318
+ [name$30]: [
8319
+ { data: $("data", "GenerateCapitalRegistrationDocumentsInputDTO!") },
8320
+ generateCapitalRegistrationDocumentsOutputSelector
8321
+ ]
7911
8322
  });
7912
8323
 
7913
- const fundProgram = {
8324
+ const generateCapitalRegistrationDocuments = {
7914
8325
  __proto__: null,
7915
8326
  mutation: mutation$1Q,
7916
- name: name$2Y
8327
+ name: name$30
7917
8328
  };
7918
8329
 
7919
- const name$2X = "capitalGenerateCapitalizationAgreement";
8330
+ const name$2$ = "capitalGenerateComponentGenerationContract";
7920
8331
  const mutation$1P = Selector("Mutation")({
7921
- [name$2X]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8332
+ [name$2$]: [{ data: $("data", "ComponentGenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7922
8333
  });
7923
8334
 
7924
- const generateCapitalizationAgreement = {
8335
+ const generateComponentGenerationContract = {
7925
8336
  __proto__: null,
7926
8337
  mutation: mutation$1P,
7927
- name: name$2X
8338
+ name: name$2$
7928
8339
  };
7929
8340
 
7930
- const name$2W = "capitalGenerateCapitalizationMoneyInvestStatement";
8341
+ const name$2_ = "capitalGenerateExpenseDecision";
7931
8342
  const mutation$1O = Selector("Mutation")({
7932
- [name$2W]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8343
+ [name$2_]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7933
8344
  });
7934
8345
 
7935
- const generateCapitalizationMoneyInvestStatement = {
8346
+ const generateExpenseDecision = {
7936
8347
  __proto__: null,
7937
8348
  mutation: mutation$1O,
7938
- name: name$2W
8349
+ name: name$2_
7939
8350
  };
7940
8351
 
7941
- const name$2V = "capitalGenerateCapitalizationPropertyInvestAct";
8352
+ const name$2Z = "capitalGenerateExpenseStatement";
7942
8353
  const mutation$1N = Selector("Mutation")({
7943
- [name$2V]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8354
+ [name$2Z]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7944
8355
  });
7945
8356
 
7946
- const generateCapitalizationPropertyInvestAct = {
8357
+ const generateExpenseStatement = {
7947
8358
  __proto__: null,
7948
8359
  mutation: mutation$1N,
7949
- name: name$2V
8360
+ name: name$2Z
7950
8361
  };
7951
8362
 
7952
- const name$2U = "capitalGenerateCapitalizationPropertyInvestDecision";
8363
+ const name$2Y = "capitalGenerateGenerationContract";
7953
8364
  const mutation$1M = Selector("Mutation")({
7954
- [name$2U]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8365
+ [name$2Y]: [{ data: $("data", "GenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7955
8366
  });
7956
8367
 
7957
- const generateCapitalizationPropertyInvestDecision = {
8368
+ const generateGenerationContract = {
7958
8369
  __proto__: null,
7959
8370
  mutation: mutation$1M,
7960
- name: name$2U
8371
+ name: name$2Y
7961
8372
  };
7962
8373
 
7963
- const name$2T = "capitalGenerateCapitalizationPropertyInvestStatement";
8374
+ const name$2X = "capitalGenerateGenerationMoneyInvestStatement";
7964
8375
  const mutation$1L = Selector("Mutation")({
7965
- [name$2T]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8376
+ [name$2X]: [{ data: $("data", "GenerationMoneyInvestStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7966
8377
  });
7967
8378
 
7968
- const generateCapitalizationPropertyInvestStatement = {
8379
+ const generateGenerationMoneyInvestStatement = {
7969
8380
  __proto__: null,
7970
8381
  mutation: mutation$1L,
7971
- name: name$2T
8382
+ name: name$2X
7972
8383
  };
7973
8384
 
7974
- const name$2S = "capitalGenerateCapitalizationToMainWalletConvertStatement";
8385
+ const name$2W = "capitalGenerateGenerationPropertyInvestAct";
7975
8386
  const mutation$1K = Selector("Mutation")({
7976
- [name$2S]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8387
+ [name$2W]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7977
8388
  });
7978
8389
 
7979
- const generateCapitalizationToMainWalletConvertStatement = {
8390
+ const generateGenerationPropertyInvestAct = {
7980
8391
  __proto__: null,
7981
8392
  mutation: mutation$1K,
7982
- name: name$2S
8393
+ name: name$2W
7983
8394
  };
7984
8395
 
7985
- const name$2R = "capitalGenerateRegistrationDocuments";
8396
+ const name$2V = "capitalGenerateGenerationPropertyInvestDecision";
7986
8397
  const mutation$1J = Selector("Mutation")({
7987
- [name$2R]: [
7988
- { data: $("data", "GenerateCapitalRegistrationDocumentsInputDTO!") },
7989
- generateCapitalRegistrationDocumentsOutputSelector
7990
- ]
8398
+ [name$2V]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7991
8399
  });
7992
8400
 
7993
- const generateCapitalRegistrationDocuments = {
8401
+ const generateGenerationPropertyInvestDecision = {
7994
8402
  __proto__: null,
7995
8403
  mutation: mutation$1J,
7996
- name: name$2R
8404
+ name: name$2V
7997
8405
  };
7998
8406
 
7999
- const name$2Q = "capitalGenerateComponentGenerationContract";
8407
+ const name$2U = "capitalGenerateGenerationPropertyInvestStatement";
8000
8408
  const mutation$1I = Selector("Mutation")({
8001
- [name$2Q]: [{ data: $("data", "ComponentGenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8409
+ [name$2U]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8002
8410
  });
8003
8411
 
8004
- const generateComponentGenerationContract = {
8412
+ const generateGenerationPropertyInvestStatement = {
8005
8413
  __proto__: null,
8006
8414
  mutation: mutation$1I,
8007
- name: name$2Q
8415
+ name: name$2U
8008
8416
  };
8009
8417
 
8010
- const name$2P = "capitalGenerateExpenseDecision";
8418
+ const name$2T = "capitalGenerateGenerationToCapitalizationConvertStatement";
8011
8419
  const mutation$1H = Selector("Mutation")({
8012
- [name$2P]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8420
+ [name$2T]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8013
8421
  });
8014
8422
 
8015
- const generateExpenseDecision = {
8423
+ const generateGenerationToCapitalizationConvertStatement = {
8016
8424
  __proto__: null,
8017
8425
  mutation: mutation$1H,
8018
- name: name$2P
8426
+ name: name$2T
8019
8427
  };
8020
8428
 
8021
- const name$2O = "capitalGenerateExpenseStatement";
8429
+ const name$2S = "capitalGenerateGenerationToMainWalletConvertStatement";
8022
8430
  const mutation$1G = Selector("Mutation")({
8023
- [name$2O]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8431
+ [name$2S]: [{ data: $("data", "GenerationToMainWalletConvertStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8024
8432
  });
8025
8433
 
8026
- const generateExpenseStatement = {
8434
+ const generateGenerationToMainWalletConvertStatement = {
8027
8435
  __proto__: null,
8028
8436
  mutation: mutation$1G,
8029
- name: name$2O
8437
+ name: name$2S
8030
8438
  };
8031
8439
 
8032
- const name$2N = "capitalGenerateGenerationContract";
8440
+ const name$2R = "capitalGenerateGenerationToProjectConvertStatement";
8033
8441
  const mutation$1F = Selector("Mutation")({
8034
- [name$2N]: [{ data: $("data", "GenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8442
+ [name$2R]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8035
8443
  });
8036
8444
 
8037
- const generateGenerationContract = {
8445
+ const generateGenerationToProjectConvertStatement = {
8038
8446
  __proto__: null,
8039
8447
  mutation: mutation$1F,
8040
- name: name$2N
8448
+ name: name$2R
8041
8449
  };
8042
8450
 
8043
- const name$2M = "capitalGenerateGenerationMoneyInvestStatement";
8451
+ const name$2Q = "capitalGenerateGetLoanDecision";
8044
8452
  const mutation$1E = Selector("Mutation")({
8045
- [name$2M]: [{ data: $("data", "GenerationMoneyInvestStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8453
+ [name$2Q]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8046
8454
  });
8047
8455
 
8048
- const generateGenerationMoneyInvestStatement = {
8456
+ const generateGetLoanDecision = {
8049
8457
  __proto__: null,
8050
8458
  mutation: mutation$1E,
8051
- name: name$2M
8459
+ name: name$2Q
8052
8460
  };
8053
8461
 
8054
- const name$2L = "capitalGenerateGenerationPropertyInvestAct";
8462
+ const name$2P = "capitalGenerateGetLoanStatement";
8055
8463
  const mutation$1D = Selector("Mutation")({
8056
- [name$2L]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8464
+ [name$2P]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8057
8465
  });
8058
8466
 
8059
- const generateGenerationPropertyInvestAct = {
8467
+ const generateGetLoanStatement = {
8060
8468
  __proto__: null,
8061
8469
  mutation: mutation$1D,
8062
- name: name$2L
8470
+ name: name$2P
8063
8471
  };
8064
8472
 
8065
- const name$2K = "capitalGenerateGenerationPropertyInvestDecision";
8473
+ const name$2O = "capitalGenerateProgramMoneyInvestStatement";
8066
8474
  const mutation$1C = Selector("Mutation")({
8067
- [name$2K]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8475
+ [name$2O]: [
8476
+ {
8477
+ data: $("data", "ProgramCapitalizationMoneyInvestStatementGenerateDocumentInput!"),
8478
+ options: $("options", "GenerateDocumentOptionsInput")
8479
+ },
8480
+ documentSelector
8481
+ ]
8068
8482
  });
8069
8483
 
8070
- const generateGenerationPropertyInvestDecision = {
8484
+ const generateProgramMoneyInvestStatement = {
8071
8485
  __proto__: null,
8072
8486
  mutation: mutation$1C,
8073
- name: name$2K
8487
+ name: name$2O
8074
8488
  };
8075
8489
 
8076
- const name$2J = "capitalGenerateGenerationPropertyInvestStatement";
8490
+ const name$2N = "capitalGenerateProjectGenerationContract";
8077
8491
  const mutation$1B = Selector("Mutation")({
8078
- [name$2J]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8492
+ [name$2N]: [{ data: $("data", "ProjectGenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8079
8493
  });
8080
8494
 
8081
- const generateGenerationPropertyInvestStatement = {
8495
+ const generateProjectGenerationContract = {
8082
8496
  __proto__: null,
8083
8497
  mutation: mutation$1B,
8084
- name: name$2J
8498
+ name: name$2N
8085
8499
  };
8086
8500
 
8087
- const name$2I = "capitalGenerateGenerationToCapitalizationConvertStatement";
8501
+ const name$2M = "capitalGenerateResultContributionAct";
8088
8502
  const mutation$1A = Selector("Mutation")({
8089
- [name$2I]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8503
+ [name$2M]: [{ data: $("data", "ResultContributionActGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8090
8504
  });
8091
8505
 
8092
- const generateGenerationToCapitalizationConvertStatement = {
8506
+ const generateResultContributionAct = {
8093
8507
  __proto__: null,
8094
8508
  mutation: mutation$1A,
8095
- name: name$2I
8509
+ name: name$2M
8096
8510
  };
8097
8511
 
8098
- const name$2H = "capitalGenerateGenerationToMainWalletConvertStatement";
8512
+ const name$2L = "capitalGenerateResultContributionDecision";
8099
8513
  const mutation$1z = Selector("Mutation")({
8100
- [name$2H]: [{ data: $("data", "GenerationToMainWalletConvertStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8514
+ [name$2L]: [{ data: $("data", "ResultContributionDecisionGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8101
8515
  });
8102
8516
 
8103
- const generateGenerationToMainWalletConvertStatement = {
8517
+ const generateResultContributionDecision = {
8104
8518
  __proto__: null,
8105
8519
  mutation: mutation$1z,
8106
- name: name$2H
8520
+ name: name$2L
8107
8521
  };
8108
8522
 
8109
- const name$2G = "capitalGenerateGenerationToProjectConvertStatement";
8523
+ const name$2K = "capitalGenerateResultContributionStatement";
8110
8524
  const mutation$1y = Selector("Mutation")({
8111
- [name$2G]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8525
+ [name$2K]: [{ data: $("data", "ResultContributionStatementGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8112
8526
  });
8113
8527
 
8114
- const generateGenerationToProjectConvertStatement = {
8528
+ const generateResultContributionStatement = {
8115
8529
  __proto__: null,
8116
8530
  mutation: mutation$1y,
8117
- name: name$2G
8531
+ name: name$2K
8118
8532
  };
8119
8533
 
8120
- const name$2F = "capitalGenerateGetLoanDecision";
8534
+ const name$2J = "capitalImportContributor";
8121
8535
  const mutation$1x = Selector("Mutation")({
8122
- [name$2F]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8536
+ [name$2J]: [{ data: $("data", "ImportContributorInput!") }, rawTransactionSelector]
8123
8537
  });
8124
8538
 
8125
- const generateGetLoanDecision = {
8539
+ const importContributor = {
8126
8540
  __proto__: null,
8127
8541
  mutation: mutation$1x,
8128
- name: name$2F
8542
+ name: name$2J
8129
8543
  };
8130
8544
 
8131
- const name$2E = "capitalGenerateGetLoanStatement";
8545
+ const name$2I = "capitalMakeClearance";
8132
8546
  const mutation$1w = Selector("Mutation")({
8133
- [name$2E]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8547
+ [name$2I]: [{ data: $("data", "MakeClearanceInput!") }, rawTransactionSelector]
8134
8548
  });
8135
8549
 
8136
- const generateGetLoanStatement = {
8550
+ const makeClearance = {
8137
8551
  __proto__: null,
8138
8552
  mutation: mutation$1w,
8139
- name: name$2E
8553
+ name: name$2I
8140
8554
  };
8141
8555
 
8142
- const name$2D = "capitalGenerateProjectGenerationContract";
8556
+ const name$2H = "capitalOpenProject";
8143
8557
  const mutation$1v = Selector("Mutation")({
8144
- [name$2D]: [{ data: $("data", "ProjectGenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8558
+ [name$2H]: [{ data: $("data", "OpenProjectInput!") }, projectSelector]
8145
8559
  });
8146
8560
 
8147
- const generateProjectGenerationContract = {
8561
+ const openProject = {
8148
8562
  __proto__: null,
8149
8563
  mutation: mutation$1v,
8150
- name: name$2D
8564
+ name: name$2H
8151
8565
  };
8152
8566
 
8153
- const name$2C = "capitalGenerateResultContributionAct";
8567
+ const name$2G = "capitalPushResult";
8154
8568
  const mutation$1u = Selector("Mutation")({
8155
- [name$2C]: [{ data: $("data", "ResultContributionActGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8569
+ [name$2G]: [{ data: $("data", "PushResultInput!") }, rawSegmentSelector]
8156
8570
  });
8157
8571
 
8158
- const generateResultContributionAct = {
8572
+ const pushResult = {
8159
8573
  __proto__: null,
8160
8574
  mutation: mutation$1u,
8161
- name: name$2C
8575
+ name: name$2G
8162
8576
  };
8163
8577
 
8164
- const name$2B = "capitalGenerateResultContributionDecision";
8578
+ const name$2F = "capitalRefreshProgram";
8165
8579
  const mutation$1t = Selector("Mutation")({
8166
- [name$2B]: [{ data: $("data", "ResultContributionDecisionGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8580
+ [name$2F]: [{ data: $("data", "RefreshProgramInput!") }, rawTransactionSelector]
8167
8581
  });
8168
8582
 
8169
- const generateResultContributionDecision = {
8583
+ const refreshProgram = {
8170
8584
  __proto__: null,
8171
8585
  mutation: mutation$1t,
8172
- name: name$2B
8586
+ name: name$2F
8173
8587
  };
8174
8588
 
8175
- const name$2A = "capitalGenerateResultContributionStatement";
8589
+ const name$2E = "capitalRefreshSegment";
8176
8590
  const mutation$1s = Selector("Mutation")({
8177
- [name$2A]: [{ data: $("data", "ResultContributionStatementGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8591
+ [name$2E]: [{ data: $("data", "RefreshSegmentInput!") }, rawSegmentSelector]
8178
8592
  });
8179
8593
 
8180
- const generateResultContributionStatement = {
8594
+ const refreshSegment = {
8181
8595
  __proto__: null,
8182
8596
  mutation: mutation$1s,
8183
- name: name$2A
8597
+ name: name$2E
8184
8598
  };
8185
8599
 
8186
- const name$2z = "capitalImportContributor";
8600
+ const name$2D = "capitalRegisterContributor";
8187
8601
  const mutation$1r = Selector("Mutation")({
8188
- [name$2z]: [{ data: $("data", "ImportContributorInput!") }, rawTransactionSelector]
8602
+ [name$2D]: [{ data: $("data", "RegisterContributorInput!") }, rawTransactionSelector]
8189
8603
  });
8190
8604
 
8191
- const importContributor = {
8605
+ const registerContributor = {
8192
8606
  __proto__: null,
8193
8607
  mutation: mutation$1r,
8194
- name: name$2z
8608
+ name: name$2D
8195
8609
  };
8196
8610
 
8197
- const name$2y = "capitalMakeClearance";
8611
+ const name$2C = "capitalSetConfig";
8198
8612
  const mutation$1q = Selector("Mutation")({
8199
- [name$2y]: [{ data: $("data", "MakeClearanceInput!") }, rawTransactionSelector]
8613
+ [name$2C]: [{ data: $("data", "SetConfigInput!") }, rawTransactionSelector]
8200
8614
  });
8201
8615
 
8202
- const makeClearance = {
8616
+ const setConfig = {
8203
8617
  __proto__: null,
8204
8618
  mutation: mutation$1q,
8205
- name: name$2y
8619
+ name: name$2C
8206
8620
  };
8207
8621
 
8208
- const name$2x = "capitalOpenProject";
8622
+ const name$2B = "capitalSetMaster";
8209
8623
  const mutation$1p = Selector("Mutation")({
8210
- [name$2x]: [{ data: $("data", "OpenProjectInput!") }, projectSelector]
8624
+ [name$2B]: [{ data: $("data", "SetMasterInput!") }, rawTransactionSelector]
8211
8625
  });
8212
8626
 
8213
- const openProject = {
8627
+ const setMaster = {
8214
8628
  __proto__: null,
8215
8629
  mutation: mutation$1p,
8216
- name: name$2x
8630
+ name: name$2B
8217
8631
  };
8218
8632
 
8219
- const name$2w = "capitalPushResult";
8633
+ const name$2A = "capitalSetPlan";
8220
8634
  const mutation$1o = Selector("Mutation")({
8221
- [name$2w]: [{ data: $("data", "PushResultInput!") }, rawSegmentSelector]
8635
+ [name$2A]: [{ data: $("data", "SetPlanInput!") }, rawProjectSelector]
8222
8636
  });
8223
8637
 
8224
- const pushResult = {
8638
+ const setPlan = {
8225
8639
  __proto__: null,
8226
8640
  mutation: mutation$1o,
8227
- name: name$2w
8641
+ name: name$2A
8228
8642
  };
8229
8643
 
8230
- const name$2v = "capitalRefreshProgram";
8644
+ const name$2z = "capitalSetProjectDevelopmentRepositoryUrl";
8231
8645
  const mutation$1n = Selector("Mutation")({
8232
- [name$2v]: [{ data: $("data", "RefreshProgramInput!") }, rawTransactionSelector]
8646
+ [name$2z]: [{ data: $("data", "SetCapitalProjectDevelopmentRepositoryUrlInput!") }, rawProjectSelector]
8233
8647
  });
8234
8648
 
8235
- const refreshProgram = {
8649
+ const setProjectDevelopmentRepositoryUrl = {
8236
8650
  __proto__: null,
8237
8651
  mutation: mutation$1n,
8238
- name: name$2v
8652
+ name: name$2z
8239
8653
  };
8240
8654
 
8241
- const name$2u = "capitalRefreshSegment";
8655
+ const name$2y = "capitalSignActAsChairman";
8242
8656
  const mutation$1m = Selector("Mutation")({
8243
- [name$2u]: [{ data: $("data", "RefreshSegmentInput!") }, rawSegmentSelector]
8657
+ [name$2y]: [{ data: $("data", "SignActAsChairmanInput!") }, rawSegmentSelector]
8244
8658
  });
8245
8659
 
8246
- const refreshSegment = {
8660
+ const signActAsChairman = {
8247
8661
  __proto__: null,
8248
8662
  mutation: mutation$1m,
8249
- name: name$2u
8663
+ name: name$2y
8250
8664
  };
8251
8665
 
8252
- const name$2t = "capitalRegisterContributor";
8666
+ const name$2x = "capitalSignActAsContributor";
8253
8667
  const mutation$1l = Selector("Mutation")({
8254
- [name$2t]: [{ data: $("data", "RegisterContributorInput!") }, rawTransactionSelector]
8255
- });
8256
-
8257
- const registerContributor = {
8258
- __proto__: null,
8259
- mutation: mutation$1l,
8260
- name: name$2t
8261
- };
8262
-
8263
- const name$2s = "capitalSetConfig";
8264
- const mutation$1k = Selector("Mutation")({
8265
- [name$2s]: [{ data: $("data", "SetConfigInput!") }, rawTransactionSelector]
8266
- });
8267
-
8268
- const setConfig = {
8269
- __proto__: null,
8270
- mutation: mutation$1k,
8271
- name: name$2s
8272
- };
8273
-
8274
- const name$2r = "capitalSetMaster";
8275
- const mutation$1j = Selector("Mutation")({
8276
- [name$2r]: [{ data: $("data", "SetMasterInput!") }, rawTransactionSelector]
8277
- });
8278
-
8279
- const setMaster = {
8280
- __proto__: null,
8281
- mutation: mutation$1j,
8282
- name: name$2r
8283
- };
8284
-
8285
- const name$2q = "capitalSetPlan";
8286
- const mutation$1i = Selector("Mutation")({
8287
- [name$2q]: [{ data: $("data", "SetPlanInput!") }, rawProjectSelector]
8288
- });
8289
-
8290
- const setPlan = {
8291
- __proto__: null,
8292
- mutation: mutation$1i,
8293
- name: name$2q
8294
- };
8295
-
8296
- const name$2p = "capitalSignActAsChairman";
8297
- const mutation$1h = Selector("Mutation")({
8298
- [name$2p]: [{ data: $("data", "SignActAsChairmanInput!") }, rawSegmentSelector]
8299
- });
8300
-
8301
- const signActAsChairman = {
8302
- __proto__: null,
8303
- mutation: mutation$1h,
8304
- name: name$2p
8305
- };
8306
-
8307
- const name$2o = "capitalSignActAsContributor";
8308
- const mutation$1g = Selector("Mutation")({
8309
- [name$2o]: [{ data: $("data", "SignActAsContributorInput!") }, rawSegmentSelector]
8668
+ [name$2x]: [{ data: $("data", "SignActAsContributorInput!") }, rawSegmentSelector]
8310
8669
  });
8311
8670
 
8312
8671
  const signActAsContributor = {
8313
8672
  __proto__: null,
8314
- mutation: mutation$1g,
8315
- name: name$2o
8673
+ mutation: mutation$1l,
8674
+ name: name$2x
8316
8675
  };
8317
8676
 
8318
- const name$2n = "capitalStartProject";
8319
- const mutation$1f = Selector("Mutation")({
8320
- [name$2n]: [{ data: $("data", "StartProjectInput!") }, projectSelector]
8677
+ const name$2w = "capitalStartProject";
8678
+ const mutation$1k = Selector("Mutation")({
8679
+ [name$2w]: [{ data: $("data", "StartProjectInput!") }, projectSelector]
8321
8680
  });
8322
8681
 
8323
8682
  const startProject = {
8324
8683
  __proto__: null,
8325
- mutation: mutation$1f,
8326
- name: name$2n
8684
+ mutation: mutation$1k,
8685
+ name: name$2w
8327
8686
  };
8328
8687
 
8329
- const name$2m = "capitalStartVoting";
8330
- const mutation$1e = Selector("Mutation")({
8331
- [name$2m]: [{ data: $("data", "StartVotingInput!") }, rawTransactionSelector]
8688
+ const name$2v = "capitalStartVoting";
8689
+ const mutation$1j = Selector("Mutation")({
8690
+ [name$2v]: [{ data: $("data", "StartVotingInput!") }, rawTransactionSelector]
8332
8691
  });
8333
8692
 
8334
8693
  const startVoting = {
8335
8694
  __proto__: null,
8336
- mutation: mutation$1e,
8337
- name: name$2m
8695
+ mutation: mutation$1j,
8696
+ name: name$2v
8338
8697
  };
8339
8698
 
8340
- const name$2l = "capitalStopProject";
8341
- const mutation$1d = Selector("Mutation")({
8342
- [name$2l]: [{ data: $("data", "StopProjectInput!") }, projectSelector]
8699
+ const name$2u = "capitalStopProject";
8700
+ const mutation$1i = Selector("Mutation")({
8701
+ [name$2u]: [{ data: $("data", "StopProjectInput!") }, projectSelector]
8343
8702
  });
8344
8703
 
8345
8704
  const stopProject = {
8346
8705
  __proto__: null,
8347
- mutation: mutation$1d,
8348
- name: name$2l
8706
+ mutation: mutation$1i,
8707
+ name: name$2u
8349
8708
  };
8350
8709
 
8351
- const name$2k = "capitalSubmitVote";
8352
- const mutation$1c = Selector("Mutation")({
8353
- [name$2k]: [{ data: $("data", "SubmitVoteInput!") }, rawTransactionSelector]
8710
+ const name$2t = "capitalSubmitVote";
8711
+ const mutation$1h = Selector("Mutation")({
8712
+ [name$2t]: [{ data: $("data", "SubmitVoteInput!") }, rawTransactionSelector]
8354
8713
  });
8355
8714
 
8356
8715
  const submitVote = {
8357
8716
  __proto__: null,
8358
- mutation: mutation$1c,
8359
- name: name$2k
8717
+ mutation: mutation$1h,
8718
+ name: name$2t
8360
8719
  };
8361
8720
 
8362
- const name$2j = "capitalUpdateIssue";
8363
- const mutation$1b = Selector("Mutation")({
8364
- [name$2j]: [{ data: $("data", "UpdateIssueInput!") }, rawIssueSelector]
8721
+ const name$2s = "capitalUpdateIssue";
8722
+ const mutation$1g = Selector("Mutation")({
8723
+ [name$2s]: [{ data: $("data", "UpdateIssueInput!") }, rawIssueSelector]
8365
8724
  });
8366
8725
 
8367
8726
  const updateIssue = {
8368
8727
  __proto__: null,
8369
- mutation: mutation$1b,
8370
- name: name$2j
8728
+ mutation: mutation$1g,
8729
+ name: name$2s
8371
8730
  };
8372
8731
 
8373
- const name$2i = "capitalUpdateStory";
8374
- const mutation$1a = Selector("Mutation")({
8375
- [name$2i]: [{ data: $("data", "UpdateStoryInput!") }, rawStorySelector]
8732
+ const name$2r = "capitalUpdateStory";
8733
+ const mutation$1f = Selector("Mutation")({
8734
+ [name$2r]: [{ data: $("data", "UpdateStoryInput!") }, rawStorySelector]
8376
8735
  });
8377
8736
 
8378
8737
  const updateStory = {
8379
8738
  __proto__: null,
8380
- mutation: mutation$1a,
8381
- name: name$2i
8739
+ mutation: mutation$1f,
8740
+ name: name$2r
8382
8741
  };
8383
8742
 
8384
8743
  const index$G = {
@@ -8396,6 +8755,7 @@ const index$G = {
8396
8755
  CreateDebt: createDebt,
8397
8756
  CreateExpense: createExpense,
8398
8757
  CreateIssue: createIssue,
8758
+ CreateProgramInvest: createProgramInvest,
8399
8759
  CreateProgramProperty: createProgramProperty,
8400
8760
  CreateProject: createProject,
8401
8761
  CreateProjectInvest: createProjectInvest,
@@ -8429,12 +8789,14 @@ const index$G = {
8429
8789
  GenerateGenerationToProjectConvertStatement: generateGenerationToProjectConvertStatement,
8430
8790
  GenerateGetLoanDecision: generateGetLoanDecision,
8431
8791
  GenerateGetLoanStatement: generateGetLoanStatement,
8792
+ GenerateProgramMoneyInvestStatement: generateProgramMoneyInvestStatement,
8432
8793
  GenerateProjectGenerationContract: generateProjectGenerationContract,
8433
8794
  GenerateResultContributionAct: generateResultContributionAct,
8434
8795
  GenerateResultContributionDecision: generateResultContributionDecision,
8435
8796
  GenerateResultContributionStatement: generateResultContributionStatement,
8436
8797
  ImportContributor: importContributor,
8437
8798
  MakeClearance: makeClearance,
8799
+ MoveIssueToComponent: moveIssueToComponent,
8438
8800
  OpenProject: openProject,
8439
8801
  PushResult: pushResult,
8440
8802
  RefreshProgram: refreshProgram,
@@ -8443,6 +8805,7 @@ const index$G = {
8443
8805
  SetConfig: setConfig,
8444
8806
  SetMaster: setMaster,
8445
8807
  SetPlan: setPlan,
8808
+ SetProjectDevelopmentRepositoryUrl: setProjectDevelopmentRepositoryUrl,
8446
8809
  SignActAsChairman: signActAsChairman,
8447
8810
  SignActAsContributor: signActAsContributor,
8448
8811
  StartProject: startProject,
@@ -8497,48 +8860,48 @@ const chairmanOnboardingStateSelector = Selector("ChairmanOnboardingState")(onbo
8497
8860
  const rawApprovalsPaginationSelector = { ...paginationSelector, items: rawApprovalSelector };
8498
8861
  const approvalsPaginationSelector = Selector("PaginatedChairmanApprovalsPaginationResult")(rawApprovalsPaginationSelector);
8499
8862
 
8500
- const name$2h = "completeChairmanAgendaStep";
8501
- const mutation$19 = Selector("Mutation")({
8502
- [name$2h]: [{ data: $("data", "ChairmanOnboardingAgendaInput!") }, chairmanOnboardingStateSelector]
8863
+ const name$2q = "completeChairmanAgendaStep";
8864
+ const mutation$1e = Selector("Mutation")({
8865
+ [name$2q]: [{ data: $("data", "ChairmanOnboardingAgendaInput!") }, chairmanOnboardingStateSelector]
8503
8866
  });
8504
8867
 
8505
8868
  const completeOnboardingAgendaStep = {
8506
8869
  __proto__: null,
8507
- mutation: mutation$19,
8508
- name: name$2h
8870
+ mutation: mutation$1e,
8871
+ name: name$2q
8509
8872
  };
8510
8873
 
8511
- const name$2g = "completeChairmanGeneralMeetStep";
8512
- const mutation$18 = Selector("Mutation")({
8513
- [name$2g]: [{ data: $("data", "ChairmanOnboardingGeneralMeetInput!") }, chairmanOnboardingStateSelector]
8874
+ const name$2p = "completeChairmanGeneralMeetStep";
8875
+ const mutation$1d = Selector("Mutation")({
8876
+ [name$2p]: [{ data: $("data", "ChairmanOnboardingGeneralMeetInput!") }, chairmanOnboardingStateSelector]
8514
8877
  });
8515
8878
 
8516
8879
  const completeOnboardingGeneralMeetStep = {
8517
8880
  __proto__: null,
8518
- mutation: mutation$18,
8519
- name: name$2g
8881
+ mutation: mutation$1d,
8882
+ name: name$2p
8520
8883
  };
8521
8884
 
8522
- const name$2f = "chairmanConfirmApprove";
8523
- const mutation$17 = Selector("Mutation")({
8524
- [name$2f]: [{ data: $("data", "ConfirmApproveInput!") }, approvalSelector]
8885
+ const name$2o = "chairmanConfirmApprove";
8886
+ const mutation$1c = Selector("Mutation")({
8887
+ [name$2o]: [{ data: $("data", "ConfirmApproveInput!") }, approvalSelector]
8525
8888
  });
8526
8889
 
8527
8890
  const confirmApprove = {
8528
8891
  __proto__: null,
8529
- mutation: mutation$17,
8530
- name: name$2f
8892
+ mutation: mutation$1c,
8893
+ name: name$2o
8531
8894
  };
8532
8895
 
8533
- const name$2e = "chairmanDeclineApprove";
8534
- const mutation$16 = Selector("Mutation")({
8535
- [name$2e]: [{ data: $("data", "DeclineApproveInput!") }, approvalSelector]
8896
+ const name$2n = "chairmanDeclineApprove";
8897
+ const mutation$1b = Selector("Mutation")({
8898
+ [name$2n]: [{ data: $("data", "DeclineApproveInput!") }, approvalSelector]
8536
8899
  });
8537
8900
 
8538
8901
  const declineApprove = {
8539
8902
  __proto__: null,
8540
- mutation: mutation$16,
8541
- name: name$2e
8903
+ mutation: mutation$1b,
8904
+ name: name$2n
8542
8905
  };
8543
8906
 
8544
8907
  const index$F = {
@@ -8549,273 +8912,333 @@ const index$F = {
8549
8912
  DeclineApprove: declineApprove
8550
8913
  };
8551
8914
 
8552
- const name$2d = "chatcoopCreateAccount";
8553
- const mutation$15 = Selector("Mutation")({
8554
- [name$2d]: [{ data: $("data", "CreateMatrixAccountInputDTO!") }, true]
8915
+ const name$2m = "chatcoopCreateAccount";
8916
+ const mutation$1a = Selector("Mutation")({
8917
+ [name$2m]: [{ data: $("data", "CreateMatrixAccountInputDTO!") }, true]
8555
8918
  });
8556
8919
 
8557
8920
  const createAccount = {
8921
+ __proto__: null,
8922
+ mutation: mutation$1a,
8923
+ name: name$2m
8924
+ };
8925
+
8926
+ const name$2l = "chatcoopCreateCalendarEvent";
8927
+ const mutation$19 = Selector("Mutation")({
8928
+ [name$2l]: [{ data: $("data", "CreateChatCoopCalendarEventInput!") }, chatCoopCalendarEventSelector]
8929
+ });
8930
+
8931
+ const createCalendarEvent = {
8932
+ __proto__: null,
8933
+ mutation: mutation$19,
8934
+ name: name$2l
8935
+ };
8936
+
8937
+ const name$2k = "chatcoopCreateCalendarIcsSubscription";
8938
+ const mutation$18 = Selector("Mutation")({
8939
+ [name$2k]: chatCoopCalendarIcsUrlSelector
8940
+ });
8941
+
8942
+ const createCalendarIcsSubscription = {
8943
+ __proto__: null,
8944
+ mutation: mutation$18,
8945
+ name: name$2k
8946
+ };
8947
+
8948
+ const name$2j = "chatcoopDeleteCalendarEvent";
8949
+ const mutation$17 = Selector("Mutation")({
8950
+ [name$2j]: [{ id: $("id", "String!") }, true]
8951
+ });
8952
+
8953
+ const deleteCalendarEvent = {
8954
+ __proto__: null,
8955
+ mutation: mutation$17,
8956
+ name: name$2j
8957
+ };
8958
+
8959
+ const name$2i = "chatcoopUpdateCalendarEvent";
8960
+ const mutation$16 = Selector("Mutation")({
8961
+ [name$2i]: [{ data: $("data", "UpdateChatCoopCalendarEventInput!") }, chatCoopCalendarEventSelector]
8962
+ });
8963
+
8964
+ const updateCalendarEvent = {
8965
+ __proto__: null,
8966
+ mutation: mutation$16,
8967
+ name: name$2i
8968
+ };
8969
+
8970
+ const name$2h = "chatcoopUpdateTranscriptionMemo";
8971
+ const mutation$15 = Selector("Mutation")({
8972
+ [name$2h]: [{ data: $("data", "UpdateCallTranscriptionMemoInput!") }, rawCallTranscriptionSelector]
8973
+ });
8974
+
8975
+ const updateTranscriptionMemo = {
8558
8976
  __proto__: null,
8559
8977
  mutation: mutation$15,
8560
- name: name$2d
8978
+ name: name$2h
8561
8979
  };
8562
8980
 
8563
8981
  const index$E = {
8564
8982
  __proto__: null,
8565
- CreateAccount: createAccount
8983
+ CreateAccount: createAccount,
8984
+ CreateCalendarEvent: createCalendarEvent,
8985
+ CreateCalendarIcsSubscription: createCalendarIcsSubscription,
8986
+ DeleteCalendarEvent: deleteCalendarEvent,
8987
+ UpdateCalendarEvent: updateCalendarEvent,
8988
+ UpdateTranscriptionMemo: updateTranscriptionMemo
8566
8989
  };
8567
8990
 
8568
- const name$2c = "acceptChildOrder";
8991
+ const name$2g = "acceptChildOrder";
8569
8992
  const mutation$14 = Selector("Mutation")({
8570
- [name$2c]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
8993
+ [name$2g]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
8571
8994
  });
8572
8995
 
8573
8996
  const acceptChildOrder = {
8574
8997
  __proto__: null,
8575
8998
  mutation: mutation$14,
8576
- name: name$2c
8999
+ name: name$2g
8577
9000
  };
8578
9001
 
8579
- const name$2b = "cancelRequest";
9002
+ const name$2f = "cancelRequest";
8580
9003
  const mutation$13 = Selector("Mutation")({
8581
- [name$2b]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
9004
+ [name$2f]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
8582
9005
  });
8583
9006
 
8584
9007
  const cancelRequest = {
8585
9008
  __proto__: null,
8586
9009
  mutation: mutation$13,
8587
- name: name$2b
9010
+ name: name$2f
8588
9011
  };
8589
9012
 
8590
- const name$2a = "confirmReceiveOnRequest";
9013
+ const name$2e = "confirmReceiveOnRequest";
8591
9014
  const mutation$12 = Selector("Mutation")({
8592
- [name$2a]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
9015
+ [name$2e]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
8593
9016
  });
8594
9017
 
8595
9018
  const completeReceiveOnRequest = {
8596
9019
  __proto__: null,
8597
9020
  mutation: mutation$12,
8598
- name: name$2a
9021
+ name: name$2e
8599
9022
  };
8600
9023
 
8601
- const name$29 = "completeRequest";
9024
+ const name$2d = "completeRequest";
8602
9025
  const mutation$11 = Selector("Mutation")({
8603
- [name$29]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
9026
+ [name$2d]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
8604
9027
  });
8605
9028
 
8606
9029
  const completeRequest = {
8607
9030
  __proto__: null,
8608
9031
  mutation: mutation$11,
8609
- name: name$29
9032
+ name: name$2d
8610
9033
  };
8611
9034
 
8612
- const name$28 = "confirmSupplyOnRequest";
9035
+ const name$2c = "confirmSupplyOnRequest";
8613
9036
  const mutation$10 = Selector("Mutation")({
8614
- [name$28]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
9037
+ [name$2c]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
8615
9038
  });
8616
9039
 
8617
9040
  const confirmSupplyOnRequest = {
8618
9041
  __proto__: null,
8619
9042
  mutation: mutation$10,
8620
- name: name$28
9043
+ name: name$2c
8621
9044
  };
8622
9045
 
8623
- const name$27 = "createChildOrder";
9046
+ const name$2b = "createChildOrder";
8624
9047
  const mutation$$ = Selector("Mutation")({
8625
- [name$27]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
9048
+ [name$2b]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
8626
9049
  });
8627
9050
 
8628
9051
  const createChildOrder = {
8629
9052
  __proto__: null,
8630
9053
  mutation: mutation$$,
8631
- name: name$27
9054
+ name: name$2b
8632
9055
  };
8633
9056
 
8634
- const name$26 = "createParentOffer";
9057
+ const name$2a = "createParentOffer";
8635
9058
  const mutation$_ = Selector("Mutation")({
8636
- [name$26]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
9059
+ [name$2a]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
8637
9060
  });
8638
9061
 
8639
9062
  const createParentOffer = {
8640
9063
  __proto__: null,
8641
9064
  mutation: mutation$_,
8642
- name: name$26
9065
+ name: name$2a
8643
9066
  };
8644
9067
 
8645
- const name$25 = "declineRequest";
9068
+ const name$29 = "declineRequest";
8646
9069
  const mutation$Z = Selector("Mutation")({
8647
- [name$25]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
9070
+ [name$29]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
8648
9071
  });
8649
9072
 
8650
9073
  const declineRequest = {
8651
9074
  __proto__: null,
8652
9075
  mutation: mutation$Z,
8653
- name: name$25
9076
+ name: name$29
8654
9077
  };
8655
9078
 
8656
- const name$24 = "deliverOnRequest";
9079
+ const name$28 = "deliverOnRequest";
8657
9080
  const mutation$Y = Selector("Mutation")({
8658
- [name$24]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
9081
+ [name$28]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
8659
9082
  });
8660
9083
 
8661
9084
  const deliverOnRequest = {
8662
9085
  __proto__: null,
8663
9086
  mutation: mutation$Y,
8664
- name: name$24
9087
+ name: name$28
8665
9088
  };
8666
9089
 
8667
- const name$23 = "disputeOnRequest";
9090
+ const name$27 = "disputeOnRequest";
8668
9091
  const mutation$X = Selector("Mutation")({
8669
- [name$23]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
9092
+ [name$27]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
8670
9093
  });
8671
9094
 
8672
9095
  const disputeOnRequest = {
8673
9096
  __proto__: null,
8674
9097
  mutation: mutation$X,
8675
- name: name$23
9098
+ name: name$27
8676
9099
  };
8677
9100
 
8678
- const name$22 = "generateAssetContributionAct";
9101
+ const name$26 = "generateAssetContributionAct";
8679
9102
  const mutation$W = Selector("Mutation")({
8680
- [name$22]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9103
+ [name$26]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8681
9104
  });
8682
9105
 
8683
9106
  const generateAssetContributionAct = {
8684
9107
  __proto__: null,
8685
9108
  mutation: mutation$W,
8686
- name: name$22
9109
+ name: name$26
8687
9110
  };
8688
9111
 
8689
- const name$21 = "generateAssetContributionDecision";
9112
+ const name$25 = "generateAssetContributionDecision";
8690
9113
  const mutation$V = Selector("Mutation")({
8691
- [name$21]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9114
+ [name$25]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8692
9115
  });
8693
9116
 
8694
9117
  const generateAssetContributionDecision = {
8695
9118
  __proto__: null,
8696
9119
  mutation: mutation$V,
8697
- name: name$21
9120
+ name: name$25
8698
9121
  };
8699
9122
 
8700
- const name$20 = "generateAssetContributionStatement";
9123
+ const name$24 = "generateAssetContributionStatement";
8701
9124
  const mutation$U = Selector("Mutation")({
8702
- [name$20]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9125
+ [name$24]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8703
9126
  });
8704
9127
 
8705
9128
  const generateAssetContributionStatement = {
8706
9129
  __proto__: null,
8707
9130
  mutation: mutation$U,
8708
- name: name$20
9131
+ name: name$24
8709
9132
  };
8710
9133
 
8711
- const name$1$ = "generateReturnByAssetAct";
9134
+ const name$23 = "generateReturnByAssetAct";
8712
9135
  const mutation$T = Selector("Mutation")({
8713
- [name$1$]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9136
+ [name$23]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8714
9137
  });
8715
9138
 
8716
9139
  const generateReturnByAssetAct = {
8717
9140
  __proto__: null,
8718
9141
  mutation: mutation$T,
8719
- name: name$1$
9142
+ name: name$23
8720
9143
  };
8721
9144
 
8722
- const name$1_ = "generateReturnByAssetDecision";
9145
+ const name$22 = "generateReturnByAssetDecision";
8723
9146
  const mutation$S = Selector("Mutation")({
8724
- [name$1_]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9147
+ [name$22]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8725
9148
  });
8726
9149
 
8727
9150
  const generateReturnByAssetDecision = {
8728
9151
  __proto__: null,
8729
9152
  mutation: mutation$S,
8730
- name: name$1_
9153
+ name: name$22
8731
9154
  };
8732
9155
 
8733
- const name$1Z = "generateReturnByAssetStatement";
9156
+ const name$21 = "generateReturnByAssetStatement";
8734
9157
  const mutation$R = Selector("Mutation")({
8735
- [name$1Z]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9158
+ [name$21]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8736
9159
  });
8737
9160
 
8738
9161
  const generateReturnByAssetStatement = {
8739
9162
  __proto__: null,
8740
9163
  mutation: mutation$R,
8741
- name: name$1Z
9164
+ name: name$21
8742
9165
  };
8743
9166
 
8744
- const name$1Y = "moderateRequest";
9167
+ const name$20 = "moderateRequest";
8745
9168
  const mutation$Q = Selector("Mutation")({
8746
- [name$1Y]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
9169
+ [name$20]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
8747
9170
  });
8748
9171
 
8749
9172
  const moderateRequest = {
8750
9173
  __proto__: null,
8751
9174
  mutation: mutation$Q,
8752
- name: name$1Y
9175
+ name: name$20
8753
9176
  };
8754
9177
 
8755
- const name$1X = "prohibitRequest";
9178
+ const name$1$ = "prohibitRequest";
8756
9179
  const mutation$P = Selector("Mutation")({
8757
- [name$1X]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
9180
+ [name$1$]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
8758
9181
  });
8759
9182
 
8760
9183
  const prohibitRequest = {
8761
9184
  __proto__: null,
8762
9185
  mutation: mutation$P,
8763
- name: name$1X
9186
+ name: name$1$
8764
9187
  };
8765
9188
 
8766
- const name$1W = "publishRequest";
9189
+ const name$1_ = "publishRequest";
8767
9190
  const mutation$O = Selector("Mutation")({
8768
- [name$1W]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
9191
+ [name$1_]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
8769
9192
  });
8770
9193
 
8771
9194
  const publishRequest = {
8772
9195
  __proto__: null,
8773
9196
  mutation: mutation$O,
8774
- name: name$1W
9197
+ name: name$1_
8775
9198
  };
8776
9199
 
8777
- const name$1V = "receiveOnRequest";
9200
+ const name$1Z = "receiveOnRequest";
8778
9201
  const mutation$N = Selector("Mutation")({
8779
- [name$1V]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
9202
+ [name$1Z]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
8780
9203
  });
8781
9204
 
8782
9205
  const receiveOnRequest = {
8783
9206
  __proto__: null,
8784
9207
  mutation: mutation$N,
8785
- name: name$1V
9208
+ name: name$1Z
8786
9209
  };
8787
9210
 
8788
- const name$1U = "supplyOnRequest";
9211
+ const name$1Y = "supplyOnRequest";
8789
9212
  const mutation$M = Selector("Mutation")({
8790
- [name$1U]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
9213
+ [name$1Y]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
8791
9214
  });
8792
9215
 
8793
9216
  const supplyOnRequest = {
8794
9217
  __proto__: null,
8795
9218
  mutation: mutation$M,
8796
- name: name$1U
9219
+ name: name$1Y
8797
9220
  };
8798
9221
 
8799
- const name$1T = "unpublishRequest";
9222
+ const name$1X = "unpublishRequest";
8800
9223
  const mutation$L = Selector("Mutation")({
8801
- [name$1T]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
9224
+ [name$1X]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
8802
9225
  });
8803
9226
 
8804
9227
  const unpublishRequest = {
8805
9228
  __proto__: null,
8806
9229
  mutation: mutation$L,
8807
- name: name$1T
9230
+ name: name$1X
8808
9231
  };
8809
9232
 
8810
- const name$1S = "updateRequest";
9233
+ const name$1W = "updateRequest";
8811
9234
  const mutation$K = Selector("Mutation")({
8812
- [name$1S]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
9235
+ [name$1W]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
8813
9236
  });
8814
9237
 
8815
9238
  const updateRequest = {
8816
9239
  __proto__: null,
8817
9240
  mutation: mutation$K,
8818
- name: name$1S
9241
+ name: name$1W
8819
9242
  };
8820
9243
 
8821
9244
  const index$D = {
@@ -8845,9 +9268,9 @@ const index$D = {
8845
9268
  UpdateRequest: updateRequest
8846
9269
  };
8847
9270
 
8848
- const name$1R = "generateDocument";
9271
+ const name$1V = "generateDocument";
8849
9272
  const mutation$J = Selector("Mutation")({
8850
- [name$1R]: [
9273
+ [name$1V]: [
8851
9274
  {
8852
9275
  input: $("input", "GenerateAnyDocumentInput!")
8853
9276
  },
@@ -8858,7 +9281,7 @@ const mutation$J = Selector("Mutation")({
8858
9281
  const generateDocument = {
8859
9282
  __proto__: null,
8860
9283
  mutation: mutation$J,
8861
- name: name$1R
9284
+ name: name$1V
8862
9285
  };
8863
9286
 
8864
9287
  const index$C = {
@@ -8866,37 +9289,37 @@ const index$C = {
8866
9289
  GenerateDocument: generateDocument
8867
9290
  };
8868
9291
 
8869
- const name$1Q = "installExtension";
9292
+ const name$1U = "installExtension";
8870
9293
  const mutation$I = Selector("Mutation")({
8871
- [name$1Q]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
9294
+ [name$1U]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
8872
9295
  });
8873
9296
 
8874
9297
  const installExtension = {
8875
9298
  __proto__: null,
8876
9299
  mutation: mutation$I,
8877
- name: name$1Q
9300
+ name: name$1U
8878
9301
  };
8879
9302
 
8880
- const name$1P = "uninstallExtension";
9303
+ const name$1T = "uninstallExtension";
8881
9304
  const mutation$H = Selector("Mutation")({
8882
- [name$1P]: [{ data: $("data", "UninstallExtensionInput!") }, true]
9305
+ [name$1T]: [{ data: $("data", "UninstallExtensionInput!") }, true]
8883
9306
  });
8884
9307
 
8885
9308
  const uninstallExtension = {
8886
9309
  __proto__: null,
8887
9310
  mutation: mutation$H,
8888
- name: name$1P
9311
+ name: name$1T
8889
9312
  };
8890
9313
 
8891
- const name$1O = "updateExtension";
9314
+ const name$1S = "updateExtension";
8892
9315
  const mutation$G = Selector("Mutation")({
8893
- [name$1O]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
9316
+ [name$1S]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
8894
9317
  });
8895
9318
 
8896
9319
  const updateExtension = {
8897
9320
  __proto__: null,
8898
9321
  mutation: mutation$G,
8899
- name: name$1O
9322
+ name: name$1S
8900
9323
  };
8901
9324
 
8902
9325
  const index$B = {
@@ -8906,48 +9329,48 @@ const index$B = {
8906
9329
  UpdateExtension: updateExtension
8907
9330
  };
8908
9331
 
8909
- const name$1N = "generateProjectOfFreeDecision";
9332
+ const name$1R = "generateProjectOfFreeDecision";
8910
9333
  const mutation$F = Selector("Mutation")({
8911
- [name$1N]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9334
+ [name$1R]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8912
9335
  });
8913
9336
 
8914
9337
  const generateProjectOfFreeDecisionDocument = {
8915
9338
  __proto__: null,
8916
9339
  mutation: mutation$F,
8917
- name: name$1N
9340
+ name: name$1R
8918
9341
  };
8919
9342
 
8920
- const name$1M = "generateFreeDecision";
9343
+ const name$1Q = "generateFreeDecision";
8921
9344
  const mutation$E = Selector("Mutation")({
8922
- [name$1M]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9345
+ [name$1Q]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
8923
9346
  });
8924
9347
 
8925
9348
  const generateFreeDecision = {
8926
9349
  __proto__: null,
8927
9350
  mutation: mutation$E,
8928
- name: name$1M
9351
+ name: name$1Q
8929
9352
  };
8930
9353
 
8931
- const name$1L = "publishProjectOfFreeDecision";
9354
+ const name$1P = "publishProjectOfFreeDecision";
8932
9355
  const mutation$D = Selector("Mutation")({
8933
- [name$1L]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
9356
+ [name$1P]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
8934
9357
  });
8935
9358
 
8936
9359
  const publishProjectOfFreeDecision = {
8937
9360
  __proto__: null,
8938
9361
  mutation: mutation$D,
8939
- name: name$1L
9362
+ name: name$1P
8940
9363
  };
8941
9364
 
8942
- const name$1K = "createProjectOfFreeDecision";
9365
+ const name$1O = "createProjectOfFreeDecision";
8943
9366
  const mutation$C = Selector("Mutation")({
8944
- [name$1K]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
9367
+ [name$1O]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
8945
9368
  });
8946
9369
 
8947
9370
  const createProjectOfFreeDecision = {
8948
9371
  __proto__: null,
8949
9372
  mutation: mutation$C,
8950
- name: name$1K
9373
+ name: name$1O
8951
9374
  };
8952
9375
 
8953
9376
  const index$A = {
@@ -8958,37 +9381,37 @@ const index$A = {
8958
9381
  PublishProjectOfFreeDecision: publishProjectOfFreeDecision
8959
9382
  };
8960
9383
 
8961
- const name$1J = "setPaymentStatus";
9384
+ const name$1N = "setPaymentStatus";
8962
9385
  const mutation$B = Selector("Mutation")({
8963
- [name$1J]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
9386
+ [name$1N]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
8964
9387
  });
8965
9388
 
8966
9389
  const updatePaymentStatus = {
8967
9390
  __proto__: null,
8968
9391
  mutation: mutation$B,
8969
- name: name$1J
9392
+ name: name$1N
8970
9393
  };
8971
9394
 
8972
- const name$1I = "createInitialPayment";
9395
+ const name$1M = "createInitialPayment";
8973
9396
  const mutation$A = Selector("Mutation")({
8974
- [name$1I]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
9397
+ [name$1M]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
8975
9398
  });
8976
9399
 
8977
9400
  const createInitialPayment$1 = {
8978
9401
  __proto__: null,
8979
9402
  mutation: mutation$A,
8980
- name: name$1I
9403
+ name: name$1M
8981
9404
  };
8982
9405
 
8983
- const name$1H = "createDepositPayment";
9406
+ const name$1L = "createDepositPayment";
8984
9407
  const mutation$z = Selector("Mutation")({
8985
- [name$1H]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
9408
+ [name$1L]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
8986
9409
  });
8987
9410
 
8988
9411
  const createDepositPayment$1 = {
8989
9412
  __proto__: null,
8990
9413
  mutation: mutation$z,
8991
- name: name$1H
9414
+ name: name$1L
8992
9415
  };
8993
9416
 
8994
9417
  const index$z = {
@@ -8998,20 +9421,20 @@ const index$z = {
8998
9421
  SetPaymentStatus: updatePaymentStatus
8999
9422
  };
9000
9423
 
9001
- const name$1G = "createAnnualGeneralMeet";
9424
+ const name$1K = "createAnnualGeneralMeet";
9002
9425
  const mutation$y = Selector("Mutation")({
9003
- [name$1G]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
9426
+ [name$1K]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
9004
9427
  });
9005
9428
 
9006
9429
  const createAnnualGeneralMeet = {
9007
9430
  __proto__: null,
9008
9431
  mutation: mutation$y,
9009
- name: name$1G
9432
+ name: name$1K
9010
9433
  };
9011
9434
 
9012
- const name$1F = "generateAnnualGeneralMeetAgendaDocument";
9435
+ const name$1J = "generateAnnualGeneralMeetAgendaDocument";
9013
9436
  const mutation$x = Selector("Mutation")({
9014
- [name$1F]: [
9437
+ [name$1J]: [
9015
9438
  {
9016
9439
  data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
9017
9440
  options: $("options", "GenerateDocumentOptionsInput")
@@ -9023,12 +9446,12 @@ const mutation$x = Selector("Mutation")({
9023
9446
  const generateAnnualGeneralMeetAgendaDocument = {
9024
9447
  __proto__: null,
9025
9448
  mutation: mutation$x,
9026
- name: name$1F
9449
+ name: name$1J
9027
9450
  };
9028
9451
 
9029
- const name$1E = "generateAnnualGeneralMeetDecisionDocument";
9452
+ const name$1I = "generateAnnualGeneralMeetDecisionDocument";
9030
9453
  const mutation$w = Selector("Mutation")({
9031
- [name$1E]: [
9454
+ [name$1I]: [
9032
9455
  {
9033
9456
  data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
9034
9457
  options: $("options", "GenerateDocumentOptionsInput")
@@ -9040,12 +9463,12 @@ const mutation$w = Selector("Mutation")({
9040
9463
  const generateAnnualGeneralMeetDecisionDocument = {
9041
9464
  __proto__: null,
9042
9465
  mutation: mutation$w,
9043
- name: name$1E
9466
+ name: name$1I
9044
9467
  };
9045
9468
 
9046
- const name$1D = "generateAnnualGeneralMeetNotificationDocument";
9469
+ const name$1H = "generateAnnualGeneralMeetNotificationDocument";
9047
9470
  const mutation$v = Selector("Mutation")({
9048
- [name$1D]: [
9471
+ [name$1H]: [
9049
9472
  {
9050
9473
  data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
9051
9474
  options: $("options", "GenerateDocumentOptionsInput")
@@ -9057,12 +9480,12 @@ const mutation$v = Selector("Mutation")({
9057
9480
  const generateAnnualGeneralMeetNotificationDocument = {
9058
9481
  __proto__: null,
9059
9482
  mutation: mutation$v,
9060
- name: name$1D
9483
+ name: name$1H
9061
9484
  };
9062
9485
 
9063
- const name$1C = "generateBallotForAnnualGeneralMeetDocument";
9486
+ const name$1G = "generateBallotForAnnualGeneralMeetDocument";
9064
9487
  const mutation$u = Selector("Mutation")({
9065
- [name$1C]: [
9488
+ [name$1G]: [
9066
9489
  {
9067
9490
  data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
9068
9491
  options: $("options", "GenerateDocumentOptionsInput")
@@ -9074,12 +9497,12 @@ const mutation$u = Selector("Mutation")({
9074
9497
  const generateBallotForAnnualGeneralMeetDocument = {
9075
9498
  __proto__: null,
9076
9499
  mutation: mutation$u,
9077
- name: name$1C
9500
+ name: name$1G
9078
9501
  };
9079
9502
 
9080
- const name$1B = "generateSovietDecisionOnAnnualMeetDocument";
9503
+ const name$1F = "generateSovietDecisionOnAnnualMeetDocument";
9081
9504
  const mutation$t = Selector("Mutation")({
9082
- [name$1B]: [{
9505
+ [name$1F]: [{
9083
9506
  data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
9084
9507
  options: $("options", "GenerateDocumentOptionsInput")
9085
9508
  }, documentSelector]
@@ -9088,62 +9511,62 @@ const mutation$t = Selector("Mutation")({
9088
9511
  const generateSovietDecisionOnAnnualMeetDocument = {
9089
9512
  __proto__: null,
9090
9513
  mutation: mutation$t,
9091
- name: name$1B
9514
+ name: name$1F
9092
9515
  };
9093
9516
 
9094
- const name$1A = "notifyOnAnnualGeneralMeet";
9517
+ const name$1E = "notifyOnAnnualGeneralMeet";
9095
9518
  const mutation$s = Selector("Mutation")({
9096
- [name$1A]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9519
+ [name$1E]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9097
9520
  });
9098
9521
 
9099
9522
  const notifyOnAnnualGeneralMeet = {
9100
9523
  __proto__: null,
9101
9524
  mutation: mutation$s,
9102
- name: name$1A
9525
+ name: name$1E
9103
9526
  };
9104
9527
 
9105
- const name$1z = "restartAnnualGeneralMeet";
9528
+ const name$1D = "restartAnnualGeneralMeet";
9106
9529
  const mutation$r = Selector("Mutation")({
9107
- [name$1z]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
9530
+ [name$1D]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
9108
9531
  });
9109
9532
 
9110
9533
  const restartAnnualGeneralMeet = {
9111
9534
  __proto__: null,
9112
9535
  mutation: mutation$r,
9113
- name: name$1z
9536
+ name: name$1D
9114
9537
  };
9115
9538
 
9116
- const name$1y = "signByPresiderOnAnnualGeneralMeet";
9539
+ const name$1C = "signByPresiderOnAnnualGeneralMeet";
9117
9540
  const mutation$q = Selector("Mutation")({
9118
- [name$1y]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9541
+ [name$1C]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9119
9542
  });
9120
9543
 
9121
9544
  const signByPresiderOnAnnualGeneralMeet = {
9122
9545
  __proto__: null,
9123
9546
  mutation: mutation$q,
9124
- name: name$1y
9547
+ name: name$1C
9125
9548
  };
9126
9549
 
9127
- const name$1x = "signBySecretaryOnAnnualGeneralMeet";
9550
+ const name$1B = "signBySecretaryOnAnnualGeneralMeet";
9128
9551
  const mutation$p = Selector("Mutation")({
9129
- [name$1x]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9552
+ [name$1B]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9130
9553
  });
9131
9554
 
9132
9555
  const signBySecretaryOnAnnualGeneralMeet = {
9133
9556
  __proto__: null,
9134
9557
  mutation: mutation$p,
9135
- name: name$1x
9558
+ name: name$1B
9136
9559
  };
9137
9560
 
9138
- const name$1w = "voteOnAnnualGeneralMeet";
9561
+ const name$1A = "voteOnAnnualGeneralMeet";
9139
9562
  const mutation$o = Selector("Mutation")({
9140
- [name$1w]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9563
+ [name$1A]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
9141
9564
  });
9142
9565
 
9143
9566
  const voteOnAnnualGeneralMeet = {
9144
9567
  __proto__: null,
9145
9568
  mutation: mutation$o,
9146
- name: name$1w
9569
+ name: name$1A
9147
9570
  };
9148
9571
 
9149
9572
  const index$y = {
@@ -9161,37 +9584,37 @@ const index$y = {
9161
9584
  VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
9162
9585
  };
9163
9586
 
9164
- const name$1v = "createWebPushSubscription";
9587
+ const name$1z = "createWebPushSubscription";
9165
9588
  const mutation$n = Selector("Mutation")({
9166
- [name$1v]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
9589
+ [name$1z]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
9167
9590
  });
9168
9591
 
9169
9592
  const createWebPushSubscription = {
9170
9593
  __proto__: null,
9171
9594
  mutation: mutation$n,
9172
- name: name$1v
9595
+ name: name$1z
9173
9596
  };
9174
9597
 
9175
- const name$1u = "deactivateWebPushSubscriptionById";
9598
+ const name$1y = "deactivateWebPushSubscriptionById";
9176
9599
  const mutation$m = Selector("Mutation")({
9177
- [name$1u]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
9600
+ [name$1y]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
9178
9601
  });
9179
9602
 
9180
9603
  const deactivateWebPushSubscriptionById = {
9181
9604
  __proto__: null,
9182
9605
  mutation: mutation$m,
9183
- name: name$1u
9606
+ name: name$1y
9184
9607
  };
9185
9608
 
9186
- const name$1t = "triggerNotificationWorkflow";
9609
+ const name$1x = "triggerNotificationWorkflow";
9187
9610
  const mutation$l = Selector("Mutation")({
9188
- [name$1t]: [{ data: $("data", "TriggerNotificationWorkflowInput!") }, true]
9611
+ [name$1x]: [{ data: $("data", "TriggerNotificationWorkflowInput!") }, true]
9189
9612
  });
9190
9613
 
9191
9614
  const triggerNotificationWorkflow = {
9192
9615
  __proto__: null,
9193
9616
  mutation: mutation$l,
9194
- name: name$1t
9617
+ name: name$1x
9195
9618
  };
9196
9619
 
9197
9620
  const index$x = {
@@ -9201,59 +9624,59 @@ const index$x = {
9201
9624
  TriggerNotificationWorkflow: triggerNotificationWorkflow
9202
9625
  };
9203
9626
 
9204
- const name$1s = "addParticipant";
9627
+ const name$1w = "addParticipant";
9205
9628
  const mutation$k = Selector("Mutation")({
9206
- [name$1s]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
9629
+ [name$1w]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
9207
9630
  });
9208
9631
 
9209
9632
  const addParticipant = {
9210
9633
  __proto__: null,
9211
9634
  mutation: mutation$k,
9212
- name: name$1s
9635
+ name: name$1w
9213
9636
  };
9214
9637
 
9215
- const name$1r = "generateParticipantApplication";
9638
+ const name$1v = "generateParticipantApplication";
9216
9639
  const mutation$j = Selector("Mutation")({
9217
- [name$1r]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9640
+ [name$1v]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9218
9641
  });
9219
9642
 
9220
9643
  const generateParticipantApplication = {
9221
9644
  __proto__: null,
9222
9645
  mutation: mutation$j,
9223
- name: name$1r
9646
+ name: name$1v
9224
9647
  };
9225
9648
 
9226
- const name$1q = "generateParticipantApplicationDecision";
9649
+ const name$1u = "generateParticipantApplicationDecision";
9227
9650
  const mutation$i = Selector("Mutation")({
9228
- [name$1q]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9651
+ [name$1u]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9229
9652
  });
9230
9653
 
9231
9654
  const generateParticipantApplicationDecision = {
9232
9655
  __proto__: null,
9233
9656
  mutation: mutation$i,
9234
- name: name$1q
9657
+ name: name$1u
9235
9658
  };
9236
9659
 
9237
- const name$1p = "registerParticipant";
9660
+ const name$1t = "registerParticipant";
9238
9661
  const mutation$h = Selector("Mutation")({
9239
- [name$1p]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
9662
+ [name$1t]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
9240
9663
  });
9241
9664
 
9242
9665
  const registerParticipant = {
9243
9666
  __proto__: null,
9244
9667
  mutation: mutation$h,
9245
- name: name$1p
9668
+ name: name$1t
9246
9669
  };
9247
9670
 
9248
- const name$1o = "createInitialPayment";
9671
+ const name$1s = "createInitialPayment";
9249
9672
  const mutation$g = Selector("Mutation")({
9250
- [name$1o]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
9673
+ [name$1s]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
9251
9674
  });
9252
9675
 
9253
9676
  const createInitialPayment = {
9254
9677
  __proto__: null,
9255
9678
  mutation: mutation$g,
9256
- name: name$1o
9679
+ name: name$1s
9257
9680
  };
9258
9681
 
9259
9682
  const index$w = {
@@ -9265,37 +9688,37 @@ const index$w = {
9265
9688
  RegisterParticipant: registerParticipant
9266
9689
  };
9267
9690
 
9268
- const name$1n = "addPaymentMethod";
9691
+ const name$1r = "addPaymentMethod";
9269
9692
  const mutation$f = Selector("Mutation")({
9270
- [name$1n]: [{ data: $("data", "AddPaymentMethodInput!") }, paymentMethodSelector]
9693
+ [name$1r]: [{ data: $("data", "AddPaymentMethodInput!") }, paymentMethodSelector]
9271
9694
  });
9272
9695
 
9273
9696
  const addPaymentMethod = {
9274
9697
  __proto__: null,
9275
9698
  mutation: mutation$f,
9276
- name: name$1n
9699
+ name: name$1r
9277
9700
  };
9278
9701
 
9279
- const name$1m = "deletePaymentMethod";
9702
+ const name$1q = "deletePaymentMethod";
9280
9703
  const mutation$e = Selector("Mutation")({
9281
- [name$1m]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
9704
+ [name$1q]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
9282
9705
  });
9283
9706
 
9284
9707
  const deletePaymentMethod = {
9285
9708
  __proto__: null,
9286
9709
  mutation: mutation$e,
9287
- name: name$1m
9710
+ name: name$1q
9288
9711
  };
9289
9712
 
9290
- const name$1l = "updateBankAccount";
9713
+ const name$1p = "updateBankAccount";
9291
9714
  const mutation$d = Selector("Mutation")({
9292
- [name$1l]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
9715
+ [name$1p]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
9293
9716
  });
9294
9717
 
9295
9718
  const updateBankAccount = {
9296
9719
  __proto__: null,
9297
9720
  mutation: mutation$d,
9298
- name: name$1l
9721
+ name: name$1p
9299
9722
  };
9300
9723
 
9301
9724
  const index$v = {
@@ -9305,26 +9728,26 @@ const index$v = {
9305
9728
  UpdateBankAccount: updateBankAccount
9306
9729
  };
9307
9730
 
9308
- const name$1k = "generateConvertToAxonStatement";
9731
+ const name$1o = "generateConvertToAxonStatement";
9309
9732
  const mutation$c = Selector("Mutation")({
9310
- [name$1k]: [{ data: $("data", "ConvertToAxonStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9733
+ [name$1o]: [{ data: $("data", "ConvertToAxonStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
9311
9734
  });
9312
9735
 
9313
9736
  const generateConvertToAxonStatement = {
9314
9737
  __proto__: null,
9315
9738
  mutation: mutation$c,
9316
- name: name$1k
9739
+ name: name$1o
9317
9740
  };
9318
9741
 
9319
- const name$1j = "processConvertToAxonStatement";
9742
+ const name$1n = "processConvertToAxonStatement";
9320
9743
  const mutation$b = Selector("Mutation")({
9321
- [name$1j]: [{ data: $("data", "ProcessConvertToAxonStatementInput!") }, true]
9744
+ [name$1n]: [{ data: $("data", "ProcessConvertToAxonStatementInput!") }, true]
9322
9745
  });
9323
9746
 
9324
9747
  const processConvertToAxonStatement = {
9325
9748
  __proto__: null,
9326
9749
  mutation: mutation$b,
9327
- name: name$1j
9750
+ name: name$1n
9328
9751
  };
9329
9752
 
9330
9753
  const index$u = {
@@ -9333,15 +9756,15 @@ const index$u = {
9333
9756
  ProcessConvertToAxonStatement: processConvertToAxonStatement
9334
9757
  };
9335
9758
 
9336
- const name$1i = "generateRegistrationDocuments";
9759
+ const name$1m = "generateRegistrationDocuments";
9337
9760
  const mutation$a = Selector("Mutation")({
9338
- [name$1i]: [{ data: $("data", "GenerateRegistrationDocumentsInput!") }, generateRegistrationDocumentsOutputSelector]
9761
+ [name$1m]: [{ data: $("data", "GenerateRegistrationDocumentsInput!") }, generateRegistrationDocumentsOutputSelector]
9339
9762
  });
9340
9763
 
9341
9764
  const generateRegistrationDocuments = {
9342
9765
  __proto__: null,
9343
9766
  mutation: mutation$a,
9344
- name: name$1i
9767
+ name: name$1m
9345
9768
  };
9346
9769
 
9347
9770
  const index$t = {
@@ -9349,42 +9772,42 @@ const index$t = {
9349
9772
  GenerateRegistrationDocuments: generateRegistrationDocuments
9350
9773
  };
9351
9774
 
9352
- const name$1h = "initSystem";
9775
+ const name$1l = "initSystem";
9353
9776
  const mutation$9 = Selector("Mutation")({
9354
- [name$1h]: [{ data: $("data", "Init!") }, systemInfoSelector]
9777
+ [name$1l]: [{ data: $("data", "Init!") }, systemInfoSelector]
9355
9778
  });
9356
9779
 
9357
9780
  const initSystem = {
9358
9781
  __proto__: null,
9359
9782
  mutation: mutation$9,
9360
- name: name$1h
9783
+ name: name$1l
9361
9784
  };
9362
9785
 
9363
- const name$1g = "installSystem";
9786
+ const name$1k = "installSystem";
9364
9787
  const mutation$8 = Selector("Mutation")({
9365
- [name$1g]: [{ data: $("data", "Install!") }, systemInfoSelector]
9788
+ [name$1k]: [{ data: $("data", "Install!") }, systemInfoSelector]
9366
9789
  });
9367
9790
 
9368
9791
  const installSystem = {
9369
9792
  __proto__: null,
9370
9793
  mutation: mutation$8,
9371
- name: name$1g
9794
+ name: name$1k
9372
9795
  };
9373
9796
 
9374
- const name$1f = "setWif";
9797
+ const name$1j = "setWif";
9375
9798
  const mutation$7 = Selector("Mutation")({
9376
- [name$1f]: [{ data: $("data", "SetWifInput!") }, true]
9799
+ [name$1j]: [{ data: $("data", "SetWifInput!") }, true]
9377
9800
  });
9378
9801
 
9379
9802
  const saveWif = {
9380
9803
  __proto__: null,
9381
9804
  mutation: mutation$7,
9382
- name: name$1f
9805
+ name: name$1j
9383
9806
  };
9384
9807
 
9385
- const name$1e = "startInstall";
9808
+ const name$1i = "startInstall";
9386
9809
  const mutation$6 = Selector("Mutation")({
9387
- [name$1e]: [{ data: $("data", "StartInstallInput!") }, {
9810
+ [name$1i]: [{ data: $("data", "StartInstallInput!") }, {
9388
9811
  install_code: true,
9389
9812
  coopname: true
9390
9813
  }]
@@ -9393,29 +9816,29 @@ const mutation$6 = Selector("Mutation")({
9393
9816
  const startInstall = {
9394
9817
  __proto__: null,
9395
9818
  mutation: mutation$6,
9396
- name: name$1e
9819
+ name: name$1i
9397
9820
  };
9398
9821
 
9399
- const name$1d = "updateSettings";
9822
+ const name$1h = "updateSettings";
9400
9823
  const mutation$5 = Selector("Mutation")({
9401
- [name$1d]: [{ data: $("data", "UpdateSettingsInput!") }, rawSettingsSelector]
9824
+ [name$1h]: [{ data: $("data", "UpdateSettingsInput!") }, rawSettingsSelector]
9402
9825
  });
9403
9826
 
9404
9827
  const updateSettings = {
9405
9828
  __proto__: null,
9406
9829
  mutation: mutation$5,
9407
- name: name$1d
9830
+ name: name$1h
9408
9831
  };
9409
9832
 
9410
- const name$1c = "updateSystem";
9833
+ const name$1g = "updateSystem";
9411
9834
  const mutation$4 = Selector("Mutation")({
9412
- [name$1c]: [{ data: $("data", "Update!") }, systemInfoSelector]
9835
+ [name$1g]: [{ data: $("data", "Update!") }, systemInfoSelector]
9413
9836
  });
9414
9837
 
9415
9838
  const updateSystem = {
9416
9839
  __proto__: null,
9417
9840
  mutation: mutation$4,
9418
- name: name$1c
9841
+ name: name$1g
9419
9842
  };
9420
9843
 
9421
9844
  const index$s = {
@@ -9423,36 +9846,37 @@ const index$s = {
9423
9846
  InitSystem: initSystem,
9424
9847
  InstallSystem: installSystem,
9425
9848
  SaveWif: saveWif,
9849
+ SetWif: saveWif,
9426
9850
  StartInstall: startInstall,
9427
9851
  UpdateSettings: updateSettings,
9428
9852
  UpdateSystem: updateSystem
9429
9853
  };
9430
9854
 
9431
- const name$1b = "createWithdraw";
9855
+ const name$1f = "createWithdraw";
9432
9856
  const mutation$3 = Selector("Mutation")({
9433
- [name$1b]: [{ data: $("data", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
9857
+ [name$1f]: [{ data: $("data", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
9434
9858
  });
9435
9859
 
9436
9860
  const createWithdraw = {
9437
9861
  __proto__: null,
9438
9862
  mutation: mutation$3,
9439
- name: name$1b
9863
+ name: name$1f
9440
9864
  };
9441
9865
 
9442
- const name$1a = "createDepositPayment";
9866
+ const name$1e = "createDepositPayment";
9443
9867
  const mutation$2 = Selector("Mutation")({
9444
- [name$1a]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
9868
+ [name$1e]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
9445
9869
  });
9446
9870
 
9447
9871
  const createDepositPayment = {
9448
9872
  __proto__: null,
9449
9873
  mutation: mutation$2,
9450
- name: name$1a
9874
+ name: name$1e
9451
9875
  };
9452
9876
 
9453
- const name$19 = "generateReturnByMoneyStatementDocument";
9877
+ const name$1d = "generateReturnByMoneyStatementDocument";
9454
9878
  const mutation$1 = Selector("Mutation")({
9455
- [name$19]: [
9879
+ [name$1d]: [
9456
9880
  {
9457
9881
  data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
9458
9882
  options: $("options", "GenerateDocumentOptionsInput")
@@ -9464,12 +9888,12 @@ const mutation$1 = Selector("Mutation")({
9464
9888
  const generateReturnByMoneyStatementDocument = {
9465
9889
  __proto__: null,
9466
9890
  mutation: mutation$1,
9467
- name: name$19
9891
+ name: name$1d
9468
9892
  };
9469
9893
 
9470
- const name$18 = "generateReturnByMoneyDecisionDocument";
9894
+ const name$1c = "generateReturnByMoneyDecisionDocument";
9471
9895
  const mutation = Selector("Mutation")({
9472
- [name$18]: [
9896
+ [name$1c]: [
9473
9897
  {
9474
9898
  data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
9475
9899
  options: $("options", "GenerateDocumentOptionsInput")
@@ -9481,7 +9905,7 @@ const mutation = Selector("Mutation")({
9481
9905
  const generateReturnByMoneyDecisionDocument = {
9482
9906
  __proto__: null,
9483
9907
  mutation: mutation,
9484
- name: name$18
9908
+ name: name$1c
9485
9909
  };
9486
9910
 
9487
9911
  const index$r = {
@@ -9516,26 +9940,26 @@ const Mutations = {
9516
9940
  Wallet: index$r
9517
9941
  };
9518
9942
 
9519
- const name$17 = "getAccount";
9520
- const query$17 = Selector("Query")({
9521
- [name$17]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
9943
+ const name$1b = "getAccount";
9944
+ const query$1b = Selector("Query")({
9945
+ [name$1b]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
9522
9946
  });
9523
9947
 
9524
9948
  const getAccount = {
9525
9949
  __proto__: null,
9526
- name: name$17,
9527
- query: query$17
9950
+ name: name$1b,
9951
+ query: query$1b
9528
9952
  };
9529
9953
 
9530
- const name$16 = "getAccounts";
9531
- const query$16 = Selector("Query")({
9532
- [name$16]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
9954
+ const name$1a = "getAccounts";
9955
+ const query$1a = Selector("Query")({
9956
+ [name$1a]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
9533
9957
  });
9534
9958
 
9535
9959
  const getAccounts = {
9536
9960
  __proto__: null,
9537
- name: name$16,
9538
- query: query$16
9961
+ name: name$1a,
9962
+ query: query$1a
9539
9963
  };
9540
9964
 
9541
9965
  const rawSearchPrivateAccountsResultSelector = {
@@ -9552,15 +9976,15 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
9552
9976
  rawSearchPrivateAccountsResultSelector
9553
9977
  );
9554
9978
 
9555
- const name$15 = "searchPrivateAccounts";
9556
- const query$15 = Selector("Query")({
9557
- [name$15]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
9979
+ const name$19 = "searchPrivateAccounts";
9980
+ const query$19 = Selector("Query")({
9981
+ [name$19]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
9558
9982
  });
9559
9983
 
9560
9984
  const searchPrivateAccounts = {
9561
9985
  __proto__: null,
9562
- name: name$15,
9563
- query: query$15
9986
+ name: name$19,
9987
+ query: query$19
9564
9988
  };
9565
9989
 
9566
9990
  const index$q = {
@@ -9604,15 +10028,15 @@ const rawAgendaSelector = {
9604
10028
  };
9605
10029
  const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
9606
10030
 
9607
- const name$14 = "getAgenda";
9608
- const query$14 = Selector("Query")({
9609
- [name$14]: agendaSelector
10031
+ const name$18 = "getAgenda";
10032
+ const query$18 = Selector("Query")({
10033
+ [name$18]: agendaSelector
9610
10034
  });
9611
10035
 
9612
10036
  const getAgenda = {
9613
10037
  __proto__: null,
9614
- name: name$14,
9615
- query: query$14
10038
+ name: name$18,
10039
+ query: query$18
9616
10040
  };
9617
10041
 
9618
10042
  const index$p = {
@@ -9620,9 +10044,9 @@ const index$p = {
9620
10044
  GetAgenda: getAgenda
9621
10045
  };
9622
10046
 
9623
- const name$13 = "agreements";
9624
- const query$13 = Selector("Query")({
9625
- [name$13]: [
10047
+ const name$17 = "agreements";
10048
+ const query$17 = Selector("Query")({
10049
+ [name$17]: [
9626
10050
  {
9627
10051
  filter: $("filter", "AgreementFilter"),
9628
10052
  options: $("options", "PaginationInput")
@@ -9633,8 +10057,8 @@ const query$13 = Selector("Query")({
9633
10057
 
9634
10058
  const agreements = {
9635
10059
  __proto__: null,
9636
- name: name$13,
9637
- query: query$13
10060
+ name: name$17,
10061
+ query: query$17
9638
10062
  };
9639
10063
 
9640
10064
  const index$o = {
@@ -9643,9 +10067,9 @@ const index$o = {
9643
10067
  };
9644
10068
 
9645
10069
  const paginatedActionsSelector = { ...paginationSelector, items: rawBlockchainActionSelector };
9646
- const name$12 = "getActions";
9647
- const query$12 = Selector("Query")({
9648
- [name$12]: [
10070
+ const name$16 = "getActions";
10071
+ const query$16 = Selector("Query")({
10072
+ [name$16]: [
9649
10073
  {
9650
10074
  filters: $("filters", "ActionFiltersInput"),
9651
10075
  pagination: $("pagination", "PaginationInput")
@@ -9656,14 +10080,14 @@ const query$12 = Selector("Query")({
9656
10080
 
9657
10081
  const getActions = {
9658
10082
  __proto__: null,
9659
- name: name$12,
9660
- query: query$12
10083
+ name: name$16,
10084
+ query: query$16
9661
10085
  };
9662
10086
 
9663
- const name$11 = "getCurrentTableStates";
10087
+ const name$15 = "getCurrentTableStates";
9664
10088
  const paginatedCurrentTableStatesSelector = { ...paginationSelector, items: rawCurrentTableStateSelector };
9665
- const query$11 = Selector("Query")({
9666
- [name$11]: [
10089
+ const query$15 = Selector("Query")({
10090
+ [name$15]: [
9667
10091
  {
9668
10092
  filters: $("filters", "CurrentTableStatesFiltersInput"),
9669
10093
  pagination: $("pagination", "PaginationInput")
@@ -9674,14 +10098,14 @@ const query$11 = Selector("Query")({
9674
10098
 
9675
10099
  const getCurrentTableStates = {
9676
10100
  __proto__: null,
9677
- name: name$11,
9678
- query: query$11
10101
+ name: name$15,
10102
+ query: query$15
9679
10103
  };
9680
10104
 
9681
10105
  const paginatedDeltasSelector = { ...paginationSelector, items: rawDeltaSelector };
9682
- const name$10 = "getDeltas";
9683
- const query$10 = Selector("Query")({
9684
- [name$10]: [
10106
+ const name$14 = "getDeltas";
10107
+ const query$14 = Selector("Query")({
10108
+ [name$14]: [
9685
10109
  {
9686
10110
  filters: $("filters", "DeltaFiltersInput"),
9687
10111
  pagination: $("pagination", "PaginationInput")
@@ -9692,8 +10116,8 @@ const query$10 = Selector("Query")({
9692
10116
 
9693
10117
  const getDeltas = {
9694
10118
  __proto__: null,
9695
- name: name$10,
9696
- query: query$10
10119
+ name: name$14,
10120
+ query: query$14
9697
10121
  };
9698
10122
 
9699
10123
  const index$n = {
@@ -9703,26 +10127,26 @@ const index$n = {
9703
10127
  GetDeltas: getDeltas
9704
10128
  };
9705
10129
 
9706
- const name$$ = "getBranches";
9707
- const query$$ = Selector("Query")({
9708
- [name$$]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
10130
+ const name$13 = "getBranches";
10131
+ const query$13 = Selector("Query")({
10132
+ [name$13]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
9709
10133
  });
9710
10134
 
9711
10135
  const getBranches = {
9712
10136
  __proto__: null,
9713
- name: name$$,
9714
- query: query$$
10137
+ name: name$13,
10138
+ query: query$13
9715
10139
  };
9716
10140
 
9717
- const name$_ = "getBranches";
9718
- const query$_ = Selector("Query")({
9719
- [name$_]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
10141
+ const name$12 = "getBranches";
10142
+ const query$12 = Selector("Query")({
10143
+ [name$12]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
9720
10144
  });
9721
10145
 
9722
10146
  const getPublicBranches = {
9723
10147
  __proto__: null,
9724
- name: name$_,
9725
- query: query$_
10148
+ name: name$12,
10149
+ query: query$12
9726
10150
  };
9727
10151
 
9728
10152
  const index$m = {
@@ -9731,9 +10155,9 @@ const index$m = {
9731
10155
  GetPublicBranches: getPublicBranches
9732
10156
  };
9733
10157
 
9734
- const name$Z = "capitalCandidates";
9735
- const query$Z = Selector("Query")({
9736
- [name$Z]: [
10158
+ const name$11 = "capitalCandidates";
10159
+ const query$11 = Selector("Query")({
10160
+ [name$11]: [
9737
10161
  {
9738
10162
  filter: $("filter", "CandidateFilterInput"),
9739
10163
  options: $("options", "PaginationInput")
@@ -9743,503 +10167,545 @@ const query$Z = Selector("Query")({
9743
10167
  });
9744
10168
 
9745
10169
  const getCapitalCandidates = {
10170
+ __proto__: null,
10171
+ name: name$11,
10172
+ query: query$11
10173
+ };
10174
+
10175
+ const name$10 = "capitalCommit";
10176
+ const query$10 = Selector("Query")({
10177
+ [name$10]: [{ data: $("data", "GetCapitalCommitByHashInput!") }, commitSelector]
10178
+ });
10179
+
10180
+ const getCommit = {
10181
+ __proto__: null,
10182
+ name: name$10,
10183
+ query: query$10
10184
+ };
10185
+
10186
+ const name$$ = "capitalCommits";
10187
+ const query$$ = Selector("Query")({
10188
+ [name$$]: [{ filter: $("filter", "CapitalCommitFilter"), options: $("options", "PaginationInput") }, commitsPaginationSelector]
10189
+ });
10190
+
10191
+ const getCommits = {
10192
+ __proto__: null,
10193
+ name: name$$,
10194
+ query: query$$
10195
+ };
10196
+
10197
+ const name$_ = "capitalContributor";
10198
+ const query$_ = Selector("Query")({
10199
+ [name$_]: [{ data: $("data", "GetContributorInput!") }, contributorSelector]
10200
+ });
10201
+
10202
+ const getContributor = {
10203
+ __proto__: null,
10204
+ name: name$_,
10205
+ query: query$_
10206
+ };
10207
+
10208
+ const name$Z = "capitalContributors";
10209
+ const query$Z = Selector("Query")({
10210
+ [name$Z]: [{ filter: $("filter", "CapitalContributorFilter"), options: $("options", "PaginationInput") }, contributorsPaginationSelector]
10211
+ });
10212
+
10213
+ const getContributors = {
9746
10214
  __proto__: null,
9747
10215
  name: name$Z,
9748
10216
  query: query$Z
9749
10217
  };
9750
10218
 
9751
- const name$Y = "capitalCommit";
10219
+ const name$Y = "capitalCycles";
9752
10220
  const query$Y = Selector("Query")({
9753
- [name$Y]: [{ data: $("data", "GetCapitalCommitByHashInput!") }, commitSelector]
10221
+ [name$Y]: [{ filter: $("filter", "CapitalCycleFilter"), options: $("options", "PaginationInput") }, cyclesPaginationSelector]
9754
10222
  });
9755
10223
 
9756
- const getCommit = {
10224
+ const getCycles = {
9757
10225
  __proto__: null,
9758
10226
  name: name$Y,
9759
10227
  query: query$Y
9760
10228
  };
9761
10229
 
9762
- const name$X = "capitalCommits";
10230
+ const name$X = "capitalDebt";
9763
10231
  const query$X = Selector("Query")({
9764
- [name$X]: [{ filter: $("filter", "CapitalCommitFilter"), options: $("options", "PaginationInput") }, commitsPaginationSelector]
10232
+ [name$X]: [{ data: $("data", "GetDebtInput!") }, debtSelector]
9765
10233
  });
9766
10234
 
9767
- const getCommits = {
10235
+ const getDebt = {
9768
10236
  __proto__: null,
9769
10237
  name: name$X,
9770
10238
  query: query$X
9771
10239
  };
9772
10240
 
9773
- const name$W = "capitalContributor";
10241
+ const name$W = "capitalDebts";
9774
10242
  const query$W = Selector("Query")({
9775
- [name$W]: [{ data: $("data", "GetContributorInput!") }, contributorSelector]
10243
+ [name$W]: [{ filter: $("filter", "DebtFilter"), options: $("options", "PaginationInput") }, debtsPaginationSelector]
9776
10244
  });
9777
10245
 
9778
- const getContributor = {
10246
+ const getDebts = {
9779
10247
  __proto__: null,
9780
10248
  name: name$W,
9781
10249
  query: query$W
9782
10250
  };
9783
10251
 
9784
- const name$V = "capitalContributors";
10252
+ const name$V = "capitalExpense";
9785
10253
  const query$V = Selector("Query")({
9786
- [name$V]: [{ filter: $("filter", "CapitalContributorFilter"), options: $("options", "PaginationInput") }, contributorsPaginationSelector]
10254
+ [name$V]: [{ data: $("data", "GetExpenseInput!") }, expenseSelector]
9787
10255
  });
9788
10256
 
9789
- const getContributors = {
10257
+ const getExpense = {
9790
10258
  __proto__: null,
9791
10259
  name: name$V,
9792
10260
  query: query$V
9793
10261
  };
9794
10262
 
9795
- const name$U = "capitalCycles";
10263
+ const name$U = "capitalExpenses";
9796
10264
  const query$U = Selector("Query")({
9797
- [name$U]: [{ filter: $("filter", "CapitalCycleFilter"), options: $("options", "PaginationInput") }, cyclesPaginationSelector]
10265
+ [name$U]: [{ filter: $("filter", "ExpenseFilter"), options: $("options", "PaginationInput") }, expensesPaginationSelector]
9798
10266
  });
9799
10267
 
9800
- const getCycles = {
10268
+ const getExpenses = {
9801
10269
  __proto__: null,
9802
10270
  name: name$U,
9803
10271
  query: query$U
9804
10272
  };
9805
10273
 
9806
- const name$T = "capitalDebt";
10274
+ const name$T = "capitalInvest";
9807
10275
  const query$T = Selector("Query")({
9808
- [name$T]: [{ data: $("data", "GetDebtInput!") }, debtSelector]
10276
+ [name$T]: [{ data: $("data", "GetInvestInput!") }, investSelector]
9809
10277
  });
9810
10278
 
9811
- const getDebt = {
10279
+ const getInvest = {
9812
10280
  __proto__: null,
9813
10281
  name: name$T,
9814
10282
  query: query$T
9815
10283
  };
9816
10284
 
9817
- const name$S = "capitalDebts";
10285
+ const name$S = "capitalInvests";
9818
10286
  const query$S = Selector("Query")({
9819
- [name$S]: [{ filter: $("filter", "DebtFilter"), options: $("options", "PaginationInput") }, debtsPaginationSelector]
10287
+ [name$S]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, investsPaginationSelector]
9820
10288
  });
9821
10289
 
9822
- const getDebts = {
10290
+ const getInvests = {
9823
10291
  __proto__: null,
9824
10292
  name: name$S,
9825
10293
  query: query$S
9826
10294
  };
9827
10295
 
9828
- const name$R = "capitalExpense";
10296
+ const name$R = "capitalIssue";
9829
10297
  const query$R = Selector("Query")({
9830
- [name$R]: [{ data: $("data", "GetExpenseInput!") }, expenseSelector]
10298
+ [name$R]: [{ data: $("data", "GetCapitalIssueByHashInput!") }, issueSelector]
9831
10299
  });
9832
10300
 
9833
- const getExpense = {
10301
+ const getIssue = {
9834
10302
  __proto__: null,
9835
10303
  name: name$R,
9836
10304
  query: query$R
9837
10305
  };
9838
10306
 
9839
- const name$Q = "capitalExpenses";
10307
+ const name$Q = "getCapitalIssueLogs";
9840
10308
  const query$Q = Selector("Query")({
9841
- [name$Q]: [{ filter: $("filter", "ExpenseFilter"), options: $("options", "PaginationInput") }, expensesPaginationSelector]
10309
+ [name$Q]: [
10310
+ {
10311
+ data: $("data", "GetCapitalIssueLogsInput!"),
10312
+ options: $("options", "PaginationInput")
10313
+ },
10314
+ logsPaginationSelector
10315
+ ]
9842
10316
  });
9843
10317
 
9844
- const getExpenses = {
10318
+ const getIssueLogs = {
9845
10319
  __proto__: null,
9846
10320
  name: name$Q,
9847
10321
  query: query$Q
9848
10322
  };
9849
10323
 
9850
- const name$P = "capitalInvest";
10324
+ const name$P = "capitalIssues";
9851
10325
  const query$P = Selector("Query")({
9852
- [name$P]: [{ data: $("data", "GetInvestInput!") }, investSelector]
10326
+ [name$P]: [{ filter: $("filter", "CapitalIssueFilter"), options: $("options", "PaginationInput") }, issuesPaginationSelector]
9853
10327
  });
9854
10328
 
9855
- const getInvest = {
10329
+ const getIssues = {
9856
10330
  __proto__: null,
9857
10331
  name: name$P,
9858
10332
  query: query$P
9859
10333
  };
9860
10334
 
9861
- const name$O = "capitalInvests";
10335
+ const name$O = "getCapitalOnboardingState";
9862
10336
  const query$O = Selector("Query")({
9863
- [name$O]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, investsPaginationSelector]
10337
+ [name$O]: capitalOnboardingStateSelector
9864
10338
  });
9865
10339
 
9866
- const getInvests = {
10340
+ const getOnboardingState$1 = {
9867
10341
  __proto__: null,
9868
10342
  name: name$O,
9869
10343
  query: query$O
9870
10344
  };
9871
10345
 
9872
- const name$N = "capitalIssue";
10346
+ const name$N = "capitalProject";
9873
10347
  const query$N = Selector("Query")({
9874
- [name$N]: [{ data: $("data", "GetCapitalIssueByHashInput!") }, issueSelector]
10348
+ [name$N]: [{ data: $("data", "GetProjectInput!") }, projectSelector]
9875
10349
  });
9876
10350
 
9877
- const getIssue = {
10351
+ const getProject = {
9878
10352
  __proto__: null,
9879
10353
  name: name$N,
9880
10354
  query: query$N
9881
10355
  };
9882
10356
 
9883
- const name$M = "getCapitalIssueLogs";
10357
+ const name$M = "getCapitalProjectLogs";
9884
10358
  const query$M = Selector("Query")({
9885
- [name$M]: [
9886
- {
9887
- data: $("data", "GetCapitalIssueLogsInput!"),
9888
- options: $("options", "PaginationInput")
9889
- },
9890
- logsPaginationSelector
9891
- ]
10359
+ [name$M]: [{ data: $("data", "GetCapitalLogsInput!") }, logsPaginationSelector]
9892
10360
  });
9893
10361
 
9894
- const getIssueLogs = {
10362
+ const getProjectLogs = {
9895
10363
  __proto__: null,
9896
10364
  name: name$M,
9897
10365
  query: query$M
9898
10366
  };
9899
10367
 
9900
- const name$L = "capitalIssues";
10368
+ const name$L = "capitalProjects";
9901
10369
  const query$L = Selector("Query")({
9902
- [name$L]: [{ filter: $("filter", "CapitalIssueFilter"), options: $("options", "PaginationInput") }, issuesPaginationSelector]
10370
+ [name$L]: [{ filter: $("filter", "CapitalProjectFilter"), options: $("options", "PaginationInput") }, projectsPaginationSelector]
9903
10371
  });
9904
10372
 
9905
- const getIssues = {
10373
+ const getProjects = {
9906
10374
  __proto__: null,
9907
10375
  name: name$L,
9908
10376
  query: query$L
9909
10377
  };
9910
10378
 
9911
- const name$K = "getCapitalOnboardingState";
10379
+ const name$K = "capitalProjectWithRelations";
9912
10380
  const query$K = Selector("Query")({
9913
- [name$K]: capitalOnboardingStateSelector
10381
+ [name$K]: [{ data: $("data", "GetProjectWithRelationsInput!") }, projectSelector]
9914
10382
  });
9915
10383
 
9916
- const getOnboardingState$1 = {
10384
+ const getProjectWithRelations = {
9917
10385
  __proto__: null,
9918
10386
  name: name$K,
9919
10387
  query: query$K
9920
10388
  };
9921
10389
 
9922
- const name$J = "capitalProgramInvest";
10390
+ const name$J = "capitalResult";
9923
10391
  const query$J = Selector("Query")({
9924
- [name$J]: [{ data: $("data", "GetProgramInvestInput!") }, programInvestSelector]
10392
+ [name$J]: [{ data: $("data", "GetResultInput!") }, resultSelector]
9925
10393
  });
9926
10394
 
9927
- const getProgramInvest = {
10395
+ const getResult = {
9928
10396
  __proto__: null,
9929
10397
  name: name$J,
9930
10398
  query: query$J
9931
10399
  };
9932
10400
 
9933
- const name$I = "capitalProgramInvests";
10401
+ const name$I = "capitalResults";
9934
10402
  const query$I = Selector("Query")({
9935
- [name$I]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, programInvestsPaginationSelector]
10403
+ [name$I]: [{ filter: $("filter", "ResultFilter"), options: $("options", "PaginationInput") }, resultsPaginationSelector]
9936
10404
  });
9937
10405
 
9938
- const getProgramInvests = {
10406
+ const getResults = {
9939
10407
  __proto__: null,
9940
10408
  name: name$I,
9941
10409
  query: query$I
9942
10410
  };
9943
10411
 
9944
- const name$H = "capitalProject";
10412
+ const name$H = "capitalSegment";
9945
10413
  const query$H = Selector("Query")({
9946
- [name$H]: [{ data: $("data", "GetProjectInput!") }, projectSelector]
10414
+ [name$H]: [{ filter: $("filter", "CapitalSegmentFilter") }, segmentSelector]
9947
10415
  });
9948
10416
 
9949
- const getProject = {
10417
+ const getSegment = {
9950
10418
  __proto__: null,
9951
10419
  name: name$H,
9952
10420
  query: query$H
9953
10421
  };
9954
10422
 
9955
- const name$G = "getCapitalProjectLogs";
10423
+ const name$G = "capitalSegments";
9956
10424
  const query$G = Selector("Query")({
9957
- [name$G]: [{ data: $("data", "GetCapitalLogsInput!") }, logsPaginationSelector]
10425
+ [name$G]: [{ filter: $("filter", "CapitalSegmentFilter"), options: $("options", "PaginationInput") }, segmentsPaginationSelector]
9958
10426
  });
9959
10427
 
9960
- const getProjectLogs = {
10428
+ const getSegments = {
9961
10429
  __proto__: null,
9962
10430
  name: name$G,
9963
10431
  query: query$G
9964
10432
  };
9965
10433
 
9966
- const name$F = "capitalProjects";
10434
+ const name$F = "capitalState";
9967
10435
  const query$F = Selector("Query")({
9968
- [name$F]: [{ filter: $("filter", "CapitalProjectFilter"), options: $("options", "PaginationInput") }, projectsPaginationSelector]
10436
+ [name$F]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
9969
10437
  });
9970
10438
 
9971
- const getProjects = {
10439
+ const getState = {
9972
10440
  __proto__: null,
9973
10441
  name: name$F,
9974
10442
  query: query$F
9975
10443
  };
9976
10444
 
9977
- const name$E = "capitalProjectWithRelations";
10445
+ const name$E = "capitalStories";
9978
10446
  const query$E = Selector("Query")({
9979
- [name$E]: [{ data: $("data", "GetProjectWithRelationsInput!") }, projectSelector]
10447
+ [name$E]: [{ filter: $("filter", "CapitalStoryFilter"), options: $("options", "PaginationInput") }, storiesPaginationSelector]
9980
10448
  });
9981
10449
 
9982
- const getProjectWithRelations = {
10450
+ const getStories = {
9983
10451
  __proto__: null,
9984
10452
  name: name$E,
9985
10453
  query: query$E
9986
10454
  };
9987
10455
 
9988
- const name$D = "capitalResult";
10456
+ const name$D = "capitalStory";
9989
10457
  const query$D = Selector("Query")({
9990
- [name$D]: [{ data: $("data", "GetResultInput!") }, resultSelector]
10458
+ [name$D]: [{ data: $("data", "GetCapitalStoryByHashInput!") }, storySelector]
9991
10459
  });
9992
10460
 
9993
- const getResult = {
10461
+ const getStory = {
9994
10462
  __proto__: null,
9995
10463
  name: name$D,
9996
10464
  query: query$D
9997
10465
  };
9998
10466
 
9999
- const name$C = "capitalResults";
10467
+ const name$C = "capitalTimeEntries";
10000
10468
  const query$C = Selector("Query")({
10001
- [name$C]: [{ filter: $("filter", "ResultFilter"), options: $("options", "PaginationInput") }, resultsPaginationSelector]
10469
+ [name$C]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesPaginationSelector]
10002
10470
  });
10003
10471
 
10004
- const getResults = {
10472
+ const getTimeEntries = {
10005
10473
  __proto__: null,
10006
10474
  name: name$C,
10007
10475
  query: query$C
10008
10476
  };
10009
10477
 
10010
- const name$B = "capitalSegment";
10478
+ const name$B = "capitalTimeEntriesByIssues";
10011
10479
  const query$B = Selector("Query")({
10012
- [name$B]: [{ filter: $("filter", "CapitalSegmentFilter") }, segmentSelector]
10480
+ [name$B]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesByIssuesPaginationSelector]
10013
10481
  });
10014
10482
 
10015
- const getSegment = {
10483
+ const getTimeEntriesByIssues = {
10016
10484
  __proto__: null,
10017
10485
  name: name$B,
10018
10486
  query: query$B
10019
10487
  };
10020
10488
 
10021
- const name$A = "capitalSegments";
10489
+ const name$A = "capitalTimeStats";
10022
10490
  const query$A = Selector("Query")({
10023
- [name$A]: [{ filter: $("filter", "CapitalSegmentFilter"), options: $("options", "PaginationInput") }, segmentsPaginationSelector]
10491
+ [name$A]: [{ data: $("data", "CapitalTimeStatsInput"), options: $("options", "PaginationInput") }, flexibleTimeStatsSelector]
10024
10492
  });
10025
10493
 
10026
- const getSegments = {
10494
+ const getTimeStats = {
10027
10495
  __proto__: null,
10028
10496
  name: name$A,
10029
10497
  query: query$A
10030
10498
  };
10031
10499
 
10032
- const name$z = "capitalState";
10500
+ const name$z = "capitalVote";
10033
10501
  const query$z = Selector("Query")({
10034
- [name$z]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
10502
+ [name$z]: [{ data: $("data", "GetVoteInput!") }, voteSelector]
10035
10503
  });
10036
10504
 
10037
- const getState = {
10505
+ const getVote = {
10038
10506
  __proto__: null,
10039
10507
  name: name$z,
10040
10508
  query: query$z
10041
10509
  };
10042
10510
 
10043
- const name$y = "capitalStories";
10511
+ const name$y = "capitalVotes";
10044
10512
  const query$y = Selector("Query")({
10045
- [name$y]: [{ filter: $("filter", "CapitalStoryFilter"), options: $("options", "PaginationInput") }, storiesPaginationSelector]
10513
+ [name$y]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
10046
10514
  });
10047
10515
 
10048
- const getStories = {
10516
+ const getVotes = {
10049
10517
  __proto__: null,
10050
10518
  name: name$y,
10051
10519
  query: query$y
10052
10520
  };
10053
10521
 
10054
- const name$x = "capitalStory";
10522
+ const index$l = {
10523
+ __proto__: null,
10524
+ GetCapitalCandidates: getCapitalCandidates,
10525
+ GetCommit: getCommit,
10526
+ GetCommits: getCommits,
10527
+ GetContributor: getContributor,
10528
+ GetContributors: getContributors,
10529
+ GetCycles: getCycles,
10530
+ GetDebt: getDebt,
10531
+ GetDebts: getDebts,
10532
+ GetExpense: getExpense,
10533
+ GetExpenses: getExpenses,
10534
+ GetInvest: getInvest,
10535
+ GetInvests: getInvests,
10536
+ GetIssue: getIssue,
10537
+ GetIssueLogs: getIssueLogs,
10538
+ GetIssues: getIssues,
10539
+ GetOnboardingState: getOnboardingState$1,
10540
+ GetProject: getProject,
10541
+ GetProjectLogs: getProjectLogs,
10542
+ GetProjectWithRelations: getProjectWithRelations,
10543
+ GetProjects: getProjects,
10544
+ GetResult: getResult,
10545
+ GetResults: getResults,
10546
+ GetSegment: getSegment,
10547
+ GetSegments: getSegments,
10548
+ GetState: getState,
10549
+ GetStories: getStories,
10550
+ GetStory: getStory,
10551
+ GetTimeEntries: getTimeEntries,
10552
+ GetTimeEntriesByIssues: getTimeEntriesByIssues,
10553
+ GetTimeStats: getTimeStats,
10554
+ GetVote: getVote,
10555
+ GetVotes: getVotes
10556
+ };
10557
+
10558
+ const name$x = "chairmanApproval";
10055
10559
  const query$x = Selector("Query")({
10056
- [name$x]: [{ data: $("data", "GetCapitalStoryByHashInput!") }, storySelector]
10560
+ [name$x]: [{ id: $("id", "String!") }, approvalSelector]
10057
10561
  });
10058
10562
 
10059
- const getStory = {
10563
+ const getApproval = {
10060
10564
  __proto__: null,
10061
10565
  name: name$x,
10062
10566
  query: query$x
10063
10567
  };
10064
10568
 
10065
- const name$w = "capitalTimeEntries";
10569
+ const name$w = "chairmanApprovals";
10066
10570
  const query$w = Selector("Query")({
10067
- [name$w]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesPaginationSelector]
10571
+ [name$w]: [
10572
+ {
10573
+ filter: $("filter", "ApprovalFilter"),
10574
+ options: $("options", "PaginationInput")
10575
+ },
10576
+ approvalsPaginationSelector
10577
+ ]
10068
10578
  });
10069
10579
 
10070
- const getTimeEntries = {
10580
+ const getApprovals = {
10071
10581
  __proto__: null,
10072
10582
  name: name$w,
10073
10583
  query: query$w
10074
10584
  };
10075
10585
 
10076
- const name$v = "capitalTimeEntriesByIssues";
10586
+ const name$v = "getChairmanOnboardingState";
10077
10587
  const query$v = Selector("Query")({
10078
- [name$v]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesByIssuesPaginationSelector]
10588
+ [name$v]: chairmanOnboardingStateSelector
10079
10589
  });
10080
10590
 
10081
- const getTimeEntriesByIssues = {
10591
+ const getOnboardingState = {
10082
10592
  __proto__: null,
10083
10593
  name: name$v,
10084
10594
  query: query$v
10085
10595
  };
10086
10596
 
10087
- const name$u = "capitalTimeStats";
10597
+ const index$k = {
10598
+ __proto__: null,
10599
+ GetApproval: getApproval,
10600
+ GetApprovals: getApprovals,
10601
+ GetOnboardingState: getOnboardingState
10602
+ };
10603
+
10604
+ const name$u = "chatcoopCheckUsernameAvailability";
10088
10605
  const query$u = Selector("Query")({
10089
- [name$u]: [{ data: $("data", "CapitalTimeStatsInput"), options: $("options", "PaginationInput") }, flexibleTimeStatsSelector]
10606
+ [name$u]: [{ data: $("data", "CheckMatrixUsernameInput!") }, true]
10090
10607
  });
10091
10608
 
10092
- const getTimeStats = {
10609
+ const checkUsernameAvailability = {
10093
10610
  __proto__: null,
10094
10611
  name: name$u,
10095
10612
  query: query$u
10096
10613
  };
10097
10614
 
10098
- const name$t = "capitalVote";
10615
+ const name$t = "chatcoopGetAccountStatus";
10099
10616
  const query$t = Selector("Query")({
10100
- [name$t]: [{ data: $("data", "GetVoteInput!") }, voteSelector]
10617
+ [name$t]: chatcoopAccountStatusSelector
10101
10618
  });
10102
10619
 
10103
- const getVote = {
10620
+ const getAccountStatus = {
10104
10621
  __proto__: null,
10105
10622
  name: name$t,
10106
10623
  query: query$t
10107
10624
  };
10108
10625
 
10109
- const name$s = "capitalVotes";
10626
+ const name$s = "chatcoopGetMaxOriginServerTsForRoom";
10110
10627
  const query$s = Selector("Query")({
10111
- [name$s]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
10628
+ [name$s]: [{ data: $("data", "GetMaxOriginServerTsForRoomInput!") }, true]
10112
10629
  });
10113
10630
 
10114
- const getVotes = {
10631
+ const getMaxOriginServerTsForRoom = {
10115
10632
  __proto__: null,
10116
10633
  name: name$s,
10117
10634
  query: query$s
10118
10635
  };
10119
10636
 
10120
- const index$l = {
10121
- __proto__: null,
10122
- GetCapitalCandidates: getCapitalCandidates,
10123
- GetCommit: getCommit,
10124
- GetCommits: getCommits,
10125
- GetContributor: getContributor,
10126
- GetContributors: getContributors,
10127
- GetCycles: getCycles,
10128
- GetDebt: getDebt,
10129
- GetDebts: getDebts,
10130
- GetExpense: getExpense,
10131
- GetExpenses: getExpenses,
10132
- GetInvest: getInvest,
10133
- GetInvests: getInvests,
10134
- GetIssue: getIssue,
10135
- GetIssueLogs: getIssueLogs,
10136
- GetIssues: getIssues,
10137
- GetOnboardingState: getOnboardingState$1,
10138
- GetProgramInvest: getProgramInvest,
10139
- GetProgramInvests: getProgramInvests,
10140
- GetProject: getProject,
10141
- GetProjectLogs: getProjectLogs,
10142
- GetProjectWithRelations: getProjectWithRelations,
10143
- GetProjects: getProjects,
10144
- GetResult: getResult,
10145
- GetResults: getResults,
10146
- GetSegment: getSegment,
10147
- GetSegments: getSegments,
10148
- GetState: getState,
10149
- GetStories: getStories,
10150
- GetStory: getStory,
10151
- GetTimeEntries: getTimeEntries,
10152
- GetTimeEntriesByIssues: getTimeEntriesByIssues,
10153
- GetTimeStats: getTimeStats,
10154
- GetVote: getVote,
10155
- GetVotes: getVotes
10156
- };
10157
-
10158
- const name$r = "chairmanApproval";
10637
+ const name$r = "chatcoopGetRoomMessagesForUtcDate";
10159
10638
  const query$r = Selector("Query")({
10160
- [name$r]: [{ id: $("id", "String!") }, approvalSelector]
10639
+ [name$r]: [{ data: $("data", "GetRoomMessagesForUtcDateInput!") }, rawChatcoopRoomMessageLineSelector]
10161
10640
  });
10162
10641
 
10163
- const getApproval = {
10642
+ const getRoomMessagesForUtcDate = {
10164
10643
  __proto__: null,
10165
10644
  name: name$r,
10166
10645
  query: query$r
10167
10646
  };
10168
10647
 
10169
- const name$q = "chairmanApprovals";
10648
+ const name$q = "chatcoopGetTranscription";
10170
10649
  const query$q = Selector("Query")({
10171
- [name$q]: [
10172
- {
10173
- filter: $("filter", "ApprovalFilter"),
10174
- options: $("options", "PaginationInput")
10175
- },
10176
- approvalsPaginationSelector
10177
- ]
10650
+ [name$q]: [{ data: $("data", "GetTranscriptionInput!") }, rawCallTranscriptionWithSegmentsSelector]
10178
10651
  });
10179
10652
 
10180
- const getApprovals = {
10653
+ const getTranscription = {
10181
10654
  __proto__: null,
10182
10655
  name: name$q,
10183
10656
  query: query$q
10184
10657
  };
10185
10658
 
10186
- const name$p = "getChairmanOnboardingState";
10659
+ const name$p = "chatcoopGetTranscriptions";
10187
10660
  const query$p = Selector("Query")({
10188
- [name$p]: chairmanOnboardingStateSelector
10661
+ [name$p]: [{ data: $("data", "GetTranscriptionsInput") }, rawCallTranscriptionSelector]
10189
10662
  });
10190
10663
 
10191
- const getOnboardingState = {
10664
+ const getTranscriptions = {
10192
10665
  __proto__: null,
10193
10666
  name: name$p,
10194
10667
  query: query$p
10195
10668
  };
10196
10669
 
10197
- const index$k = {
10198
- __proto__: null,
10199
- GetApproval: getApproval,
10200
- GetApprovals: getApprovals,
10201
- GetOnboardingState: getOnboardingState
10202
- };
10203
-
10204
- const name$o = "chatcoopCheckUsernameAvailability";
10670
+ const name$o = "chatcoopListCalendarEvents";
10205
10671
  const query$o = Selector("Query")({
10206
- [name$o]: [{ data: $("data", "CheckMatrixUsernameInput!") }, true]
10672
+ [name$o]: chatCoopCalendarEventSelector
10207
10673
  });
10208
10674
 
10209
- const checkUsernameAvailability = {
10675
+ const listCalendarEvents = {
10210
10676
  __proto__: null,
10211
10677
  name: name$o,
10212
10678
  query: query$o
10213
10679
  };
10214
10680
 
10215
- const name$n = "chatcoopGetAccountStatus";
10681
+ const name$n = "chatcoopListCalendarRooms";
10216
10682
  const query$n = Selector("Query")({
10217
- [name$n]: chatcoopAccountStatusSelector
10683
+ [name$n]: chatCoopCalendarRoomOptionSelector
10218
10684
  });
10219
10685
 
10220
- const getAccountStatus = {
10686
+ const listCalendarRooms = {
10221
10687
  __proto__: null,
10222
10688
  name: name$n,
10223
10689
  query: query$n
10224
10690
  };
10225
10691
 
10226
- const name$m = "chatcoopGetTranscription";
10692
+ const name$m = "chatcoopListProjectCommunicationRooms";
10227
10693
  const query$m = Selector("Query")({
10228
- [name$m]: [{ data: $("data", "GetTranscriptionInput!") }, rawCallTranscriptionWithSegmentsSelector]
10694
+ [name$m]: [{ data: $("data", "GetProjectCommunicationRoomsInput!") }, rawChatcoopProjectCommunicationRoomSelector]
10229
10695
  });
10230
10696
 
10231
- const getTranscription = {
10697
+ const listProjectCommunicationRooms = {
10232
10698
  __proto__: null,
10233
10699
  name: name$m,
10234
10700
  query: query$m
10235
10701
  };
10236
10702
 
10237
- const name$l = "chatcoopGetTranscriptions";
10703
+ const name$l = "chatcoopListUtcDatesWithNewRoomMessages";
10238
10704
  const query$l = Selector("Query")({
10239
- [name$l]: [{ data: $("data", "GetTranscriptionsInput") }, rawCallTranscriptionSelector]
10705
+ [name$l]: [{ data: $("data", "ListUtcDatesWithNewRoomMessagesInput!") }, true]
10240
10706
  });
10241
10707
 
10242
- const getTranscriptions = {
10708
+ const listUtcDatesWithNewRoomMessages = {
10243
10709
  __proto__: null,
10244
10710
  name: name$l,
10245
10711
  query: query$l
@@ -10249,8 +10715,14 @@ const index$j = {
10249
10715
  __proto__: null,
10250
10716
  CheckUsernameAvailability: checkUsernameAvailability,
10251
10717
  GetAccountStatus: getAccountStatus,
10718
+ GetMaxOriginServerTsForRoom: getMaxOriginServerTsForRoom,
10719
+ GetRoomMessagesForUtcDate: getRoomMessagesForUtcDate,
10252
10720
  GetTranscription: getTranscription,
10253
- GetTranscriptions: getTranscriptions
10721
+ GetTranscriptions: getTranscriptions,
10722
+ ListCalendarEvents: listCalendarEvents,
10723
+ ListCalendarRooms: listCalendarRooms,
10724
+ ListProjectCommunicationRooms: listProjectCommunicationRooms,
10725
+ ListUtcDatesWithNewRoomMessages: listUtcDatesWithNewRoomMessages
10254
10726
  };
10255
10727
 
10256
10728
  const rawWorkspaceSelector = {
@@ -10767,8 +11239,8 @@ const _Client = class _Client {
10767
11239
  signature
10768
11240
  }
10769
11241
  };
10770
- const { [name$3t]: result } = await this.thunder("mutation")(
10771
- mutation$2l,
11242
+ const { [name$3G]: result } = await this.thunder("mutation")(
11243
+ mutation$2u,
10772
11244
  {
10773
11245
  variables
10774
11246
  }