@coopenomics/sdk 2025.11.10-alpha-3 → 2025.11.12-alpha-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1059,6 +1059,7 @@ const AllTypesProps = {
1059
1059
  soviet: "SovietMemberInput",
1060
1060
  vars: "SetVarsInput"
1061
1061
  },
1062
+ InstanceStatus: "enum",
1062
1063
  InvestStatus: "enum",
1063
1064
  IssuePriority: "enum",
1064
1065
  IssueStatus: "enum",
@@ -2795,6 +2796,17 @@ const ReturnTypes = {
2795
2796
  id: "String",
2796
2797
  question: "String"
2797
2798
  },
2799
+ CurrentInstanceDTO: {
2800
+ blockchain_status: "String",
2801
+ description: "String",
2802
+ domain: "String",
2803
+ image: "String",
2804
+ is_delegated: "Boolean",
2805
+ is_valid: "Boolean",
2806
+ progress: "Float",
2807
+ status: "InstanceStatus",
2808
+ title: "String"
2809
+ },
2798
2810
  CurrentTableState: {
2799
2811
  block_num: "Float",
2800
2812
  code: "String",
@@ -3571,6 +3583,7 @@ const ReturnTypes = {
3571
3583
  getActions: "PaginatedActionsPaginationResult",
3572
3584
  getAgenda: "AgendaWithDocuments",
3573
3585
  getBranches: "Branch",
3586
+ getCurrentInstance: "CurrentInstanceDTO",
3574
3587
  getCurrentTableStates: "PaginatedCurrentTableStatesPaginationResult",
3575
3588
  getDeltas: "PaginatedDeltasPaginationResult",
3576
3589
  getDesktop: "Desktop",
@@ -4381,6 +4394,15 @@ var ExtendedMeetStatus = /* @__PURE__ */ ((ExtendedMeetStatus2) => {
4381
4394
  ExtendedMeetStatus2["WAITING_FOR_OPENING"] = "WAITING_FOR_OPENING";
4382
4395
  return ExtendedMeetStatus2;
4383
4396
  })(ExtendedMeetStatus || {});
4397
+ var InstanceStatus = /* @__PURE__ */ ((InstanceStatus2) => {
4398
+ InstanceStatus2["ACTIVE"] = "ACTIVE";
4399
+ InstanceStatus2["BLOCKED"] = "BLOCKED";
4400
+ InstanceStatus2["ERROR"] = "ERROR";
4401
+ InstanceStatus2["INSTALL"] = "INSTALL";
4402
+ InstanceStatus2["PENDING"] = "PENDING";
4403
+ InstanceStatus2["RENT"] = "RENT";
4404
+ return InstanceStatus2;
4405
+ })(InstanceStatus || {});
4384
4406
  var InvestStatus = /* @__PURE__ */ ((InvestStatus2) => {
4385
4407
  InvestStatus2["ACTIVE"] = "ACTIVE";
4386
4408
  InvestStatus2["APPROVED"] = "APPROVED";
@@ -4517,6 +4539,7 @@ const index$C = {
4517
4539
  GraphQLError: GraphQLError,
4518
4540
  HEADERS: HEADERS,
4519
4541
  HOST: HOST,
4542
+ InstanceStatus: InstanceStatus,
4520
4543
  InternalArgsBuilt: InternalArgsBuilt,
4521
4544
  InternalsBuildQuery: InternalsBuildQuery,
4522
4545
  InvestStatus: InvestStatus,
@@ -4928,37 +4951,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
4928
4951
  rawRegisteredAccountSelector
4929
4952
  );
4930
4953
 
4931
- const name$3h = "registerAccount";
4954
+ const name$3i = "registerAccount";
4932
4955
  const mutation$2p = Selector("Mutation")({
4933
- [name$3h]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
4956
+ [name$3i]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
4934
4957
  });
4935
4958
 
4936
4959
  const registerAccount = {
4937
4960
  __proto__: null,
4938
4961
  mutation: mutation$2p,
4939
- name: name$3h
4962
+ name: name$3i
4940
4963
  };
4941
4964
 
4942
- const name$3g = "resetKey";
4965
+ const name$3h = "resetKey";
4943
4966
  const mutation$2o = Selector("Mutation")({
4944
- [name$3g]: [{ data: $("data", "ResetKeyInput!") }, true]
4967
+ [name$3h]: [{ data: $("data", "ResetKeyInput!") }, true]
4945
4968
  });
4946
4969
 
4947
4970
  const resetKey = {
4948
4971
  __proto__: null,
4949
4972
  mutation: mutation$2o,
4950
- name: name$3g
4973
+ name: name$3h
4951
4974
  };
4952
4975
 
4953
- const name$3f = "startResetKey";
4976
+ const name$3g = "startResetKey";
4954
4977
  const mutation$2n = Selector("Mutation")({
4955
- [name$3f]: [{ data: $("data", "StartResetKeyInput!") }, true]
4978
+ [name$3g]: [{ data: $("data", "StartResetKeyInput!") }, true]
4956
4979
  });
4957
4980
 
4958
4981
  const startResetKey = {
4959
4982
  __proto__: null,
4960
4983
  mutation: mutation$2n,
4961
- name: name$3f
4984
+ name: name$3g
4962
4985
  };
4963
4986
 
4964
4987
  const paginationSelector = {
@@ -6022,6 +6045,19 @@ Selector("CooperativeOperatorAccount")(
6022
6045
  rawCooperatorAccountSelector
6023
6046
  );
6024
6047
 
6048
+ const rawCurrentInstanceSelector = {
6049
+ status: true,
6050
+ is_valid: true,
6051
+ is_delegated: true,
6052
+ blockchain_status: true,
6053
+ progress: true,
6054
+ domain: true,
6055
+ title: true,
6056
+ description: true,
6057
+ image: true
6058
+ };
6059
+ const currentInstanceSelector = Selector("CurrentInstanceDTO")(rawCurrentInstanceSelector);
6060
+
6025
6061
  const rawInstallationStatusSelector = {
6026
6062
  has_private_account: true,
6027
6063
  init_by_server: true,
@@ -6129,15 +6165,15 @@ const rawCreateWithdrawResponseSelector = {
6129
6165
  };
6130
6166
  const createWithdrawResponseSelector = Selector("CreateWithdrawResponse")(rawCreateWithdrawResponseSelector);
6131
6167
 
6132
- const name$3e = "updateAccount";
6168
+ const name$3f = "updateAccount";
6133
6169
  const mutation$2m = Selector("Mutation")({
6134
- [name$3e]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
6170
+ [name$3f]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
6135
6171
  });
6136
6172
 
6137
6173
  const updateAccount = {
6138
6174
  __proto__: null,
6139
6175
  mutation: mutation$2m,
6140
- name: name$3e
6176
+ name: name$3f
6141
6177
  };
6142
6178
 
6143
6179
  const index$B = {
@@ -6148,81 +6184,81 @@ const index$B = {
6148
6184
  UpdateAccount: updateAccount
6149
6185
  };
6150
6186
 
6151
- const name$3d = "generatePrivacyAgreement";
6187
+ const name$3e = "generatePrivacyAgreement";
6152
6188
  const mutation$2l = Selector("Mutation")({
6153
- [name$3d]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6189
+ [name$3e]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6154
6190
  });
6155
6191
 
6156
6192
  const generatePrivacyAgreement = {
6157
6193
  __proto__: null,
6158
6194
  mutation: mutation$2l,
6159
- name: name$3d
6195
+ name: name$3e
6160
6196
  };
6161
6197
 
6162
- const name$3c = "generateSignatureAgreement";
6198
+ const name$3d = "generateSignatureAgreement";
6163
6199
  const mutation$2k = Selector("Mutation")({
6164
- [name$3c]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6200
+ [name$3d]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6165
6201
  });
6166
6202
 
6167
6203
  const generateSignatureAgreement = {
6168
6204
  __proto__: null,
6169
6205
  mutation: mutation$2k,
6170
- name: name$3c
6206
+ name: name$3d
6171
6207
  };
6172
6208
 
6173
- const name$3b = "generateWalletAgreement";
6209
+ const name$3c = "generateWalletAgreement";
6174
6210
  const mutation$2j = Selector("Mutation")({
6175
- [name$3b]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6211
+ [name$3c]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6176
6212
  });
6177
6213
 
6178
6214
  const generateWalletAgreement = {
6179
6215
  __proto__: null,
6180
6216
  mutation: mutation$2j,
6181
- name: name$3b
6217
+ name: name$3c
6182
6218
  };
6183
6219
 
6184
- const name$3a = "generateUserAgreement";
6220
+ const name$3b = "generateUserAgreement";
6185
6221
  const mutation$2i = Selector("Mutation")({
6186
- [name$3a]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6222
+ [name$3b]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6187
6223
  });
6188
6224
 
6189
6225
  const generateUserAgreement = {
6190
6226
  __proto__: null,
6191
6227
  mutation: mutation$2i,
6192
- name: name$3a
6228
+ name: name$3b
6193
6229
  };
6194
6230
 
6195
- const name$39 = "sendAgreement";
6231
+ const name$3a = "sendAgreement";
6196
6232
  const mutation$2h = Selector("Mutation")({
6197
- [name$39]: [{ data: $("data", "SendAgreementInput!") }, rawTransactionSelector]
6233
+ [name$3a]: [{ data: $("data", "SendAgreementInput!") }, rawTransactionSelector]
6198
6234
  });
6199
6235
 
6200
6236
  const sendAgreement = {
6201
6237
  __proto__: null,
6202
6238
  mutation: mutation$2h,
6203
- name: name$39
6239
+ name: name$3a
6204
6240
  };
6205
6241
 
6206
- const name$38 = "confirmAgreement";
6242
+ const name$39 = "confirmAgreement";
6207
6243
  const mutation$2g = Selector("Mutation")({
6208
- [name$38]: [{ data: $("data", "ConfirmAgreementInput!") }, rawTransactionSelector]
6244
+ [name$39]: [{ data: $("data", "ConfirmAgreementInput!") }, rawTransactionSelector]
6209
6245
  });
6210
6246
 
6211
6247
  const confirmAgreement = {
6212
6248
  __proto__: null,
6213
6249
  mutation: mutation$2g,
6214
- name: name$38
6250
+ name: name$39
6215
6251
  };
6216
6252
 
6217
- const name$37 = "declineAgreement";
6253
+ const name$38 = "declineAgreement";
6218
6254
  const mutation$2f = Selector("Mutation")({
6219
- [name$37]: [{ data: $("data", "DeclineAgreementInput!") }, rawTransactionSelector]
6255
+ [name$38]: [{ data: $("data", "DeclineAgreementInput!") }, rawTransactionSelector]
6220
6256
  });
6221
6257
 
6222
6258
  const declineAgreement = {
6223
6259
  __proto__: null,
6224
6260
  mutation: mutation$2f,
6225
- name: name$37
6261
+ name: name$38
6226
6262
  };
6227
6263
 
6228
6264
  const index$A = {
@@ -6236,37 +6272,37 @@ const index$A = {
6236
6272
  SendAgreement: sendAgreement
6237
6273
  };
6238
6274
 
6239
- const name$36 = "refresh";
6275
+ const name$37 = "refresh";
6240
6276
  const mutation$2e = Selector("Mutation")({
6241
- [name$36]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
6277
+ [name$37]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
6242
6278
  });
6243
6279
 
6244
6280
  const refresh = {
6245
6281
  __proto__: null,
6246
6282
  mutation: mutation$2e,
6247
- name: name$36
6283
+ name: name$37
6248
6284
  };
6249
6285
 
6250
- const name$35 = "logout";
6286
+ const name$36 = "logout";
6251
6287
  const mutation$2d = Selector("Mutation")({
6252
- [name$35]: [{ data: $("data", "LogoutInput!") }, true]
6288
+ [name$36]: [{ data: $("data", "LogoutInput!") }, true]
6253
6289
  });
6254
6290
 
6255
6291
  const logout = {
6256
6292
  __proto__: null,
6257
6293
  mutation: mutation$2d,
6258
- name: name$35
6294
+ name: name$36
6259
6295
  };
6260
6296
 
6261
- const name$34 = "login";
6297
+ const name$35 = "login";
6262
6298
  const mutation$2c = Selector("Mutation")({
6263
- [name$34]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
6299
+ [name$35]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
6264
6300
  });
6265
6301
 
6266
6302
  const login = {
6267
6303
  __proto__: null,
6268
6304
  mutation: mutation$2c,
6269
- name: name$34
6305
+ name: name$35
6270
6306
  };
6271
6307
 
6272
6308
  const index$z = {
@@ -6276,81 +6312,81 @@ const index$z = {
6276
6312
  Refresh: refresh
6277
6313
  };
6278
6314
 
6279
- const name$33 = "addTrustedAccount";
6315
+ const name$34 = "addTrustedAccount";
6280
6316
  const mutation$2b = Selector("Mutation")({
6281
- [name$33]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
6317
+ [name$34]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
6282
6318
  });
6283
6319
 
6284
6320
  const addTrustedAccount = {
6285
6321
  __proto__: null,
6286
6322
  mutation: mutation$2b,
6287
- name: name$33
6323
+ name: name$34
6288
6324
  };
6289
6325
 
6290
- const name$32 = "createBranch";
6326
+ const name$33 = "createBranch";
6291
6327
  const mutation$2a = Selector("Mutation")({
6292
- [name$32]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
6328
+ [name$33]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
6293
6329
  });
6294
6330
 
6295
6331
  const createBranch = {
6296
6332
  __proto__: null,
6297
6333
  mutation: mutation$2a,
6298
- name: name$32
6334
+ name: name$33
6299
6335
  };
6300
6336
 
6301
- const name$31 = "deleteBranch";
6337
+ const name$32 = "deleteBranch";
6302
6338
  const mutation$29 = Selector("Mutation")({
6303
- [name$31]: [{ data: $("data", "DeleteBranchInput!") }, true]
6339
+ [name$32]: [{ data: $("data", "DeleteBranchInput!") }, true]
6304
6340
  });
6305
6341
 
6306
6342
  const deleteBranch = {
6307
6343
  __proto__: null,
6308
6344
  mutation: mutation$29,
6309
- name: name$31
6345
+ name: name$32
6310
6346
  };
6311
6347
 
6312
- const name$30 = "deleteTrustedAccount";
6348
+ const name$31 = "deleteTrustedAccount";
6313
6349
  const mutation$28 = Selector("Mutation")({
6314
- [name$30]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
6350
+ [name$31]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
6315
6351
  });
6316
6352
 
6317
6353
  const deleteTrustedAccount = {
6318
6354
  __proto__: null,
6319
6355
  mutation: mutation$28,
6320
- name: name$30
6356
+ name: name$31
6321
6357
  };
6322
6358
 
6323
- const name$2$ = "editBranch";
6359
+ const name$30 = "editBranch";
6324
6360
  const mutation$27 = Selector("Mutation")({
6325
- [name$2$]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
6361
+ [name$30]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
6326
6362
  });
6327
6363
 
6328
6364
  const editBranch = {
6329
6365
  __proto__: null,
6330
6366
  mutation: mutation$27,
6331
- name: name$2$
6367
+ name: name$30
6332
6368
  };
6333
6369
 
6334
- const name$2_ = "generateSelectBranchDocument";
6370
+ const name$2$ = "generateSelectBranchDocument";
6335
6371
  const mutation$26 = Selector("Mutation")({
6336
- [name$2_]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6372
+ [name$2$]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6337
6373
  });
6338
6374
 
6339
6375
  const generateSelectBranchDocument = {
6340
6376
  __proto__: null,
6341
6377
  mutation: mutation$26,
6342
- name: name$2_
6378
+ name: name$2$
6343
6379
  };
6344
6380
 
6345
- const name$2Z = "selectBranch";
6381
+ const name$2_ = "selectBranch";
6346
6382
  const mutation$25 = Selector("Mutation")({
6347
- [name$2Z]: [{ data: $("data", "SelectBranchInput!") }, true]
6383
+ [name$2_]: [{ data: $("data", "SelectBranchInput!") }, true]
6348
6384
  });
6349
6385
 
6350
6386
  const selectBranch = {
6351
6387
  __proto__: null,
6352
6388
  mutation: mutation$25,
6353
- name: name$2Z
6389
+ name: name$2_
6354
6390
  };
6355
6391
 
6356
6392
  const index$y = {
@@ -6364,730 +6400,730 @@ const index$y = {
6364
6400
  SelectBranch: selectBranch
6365
6401
  };
6366
6402
 
6367
- const name$2Y = "capitalSetConfig";
6403
+ const name$2Z = "capitalSetConfig";
6368
6404
  const mutation$24 = Selector("Mutation")({
6369
- [name$2Y]: [{ data: $("data", "SetConfigInput!") }, rawTransactionSelector]
6405
+ [name$2Z]: [{ data: $("data", "SetConfigInput!") }, rawTransactionSelector]
6370
6406
  });
6371
6407
 
6372
6408
  const setConfig = {
6373
6409
  __proto__: null,
6374
6410
  mutation: mutation$24,
6375
- name: name$2Y
6411
+ name: name$2Z
6376
6412
  };
6377
6413
 
6378
- const name$2X = "capitalCreateProject";
6414
+ const name$2Y = "capitalCreateProject";
6379
6415
  const mutation$23 = Selector("Mutation")({
6380
- [name$2X]: [{ data: $("data", "CreateProjectInput!") }, rawTransactionSelector]
6416
+ [name$2Y]: [{ data: $("data", "CreateProjectInput!") }, rawTransactionSelector]
6381
6417
  });
6382
6418
 
6383
6419
  const createProject = {
6384
6420
  __proto__: null,
6385
6421
  mutation: mutation$23,
6386
- name: name$2X
6422
+ name: name$2Y
6387
6423
  };
6388
6424
 
6389
- const name$2W = "capitalCreateDebt";
6425
+ const name$2X = "capitalCreateDebt";
6390
6426
  const mutation$22 = Selector("Mutation")({
6391
- [name$2W]: [{ data: $("data", "CreateDebtInput!") }, rawTransactionSelector]
6427
+ [name$2X]: [{ data: $("data", "CreateDebtInput!") }, rawTransactionSelector]
6392
6428
  });
6393
6429
 
6394
6430
  const createDebt = {
6395
6431
  __proto__: null,
6396
6432
  mutation: mutation$22,
6397
- name: name$2W
6433
+ name: name$2X
6398
6434
  };
6399
6435
 
6400
- const name$2V = "capitalFundProgram";
6436
+ const name$2W = "capitalFundProgram";
6401
6437
  const mutation$21 = Selector("Mutation")({
6402
- [name$2V]: [{ data: $("data", "FundProgramInput!") }, rawTransactionSelector]
6438
+ [name$2W]: [{ data: $("data", "FundProgramInput!") }, rawTransactionSelector]
6403
6439
  });
6404
6440
 
6405
6441
  const fundProgram = {
6406
6442
  __proto__: null,
6407
6443
  mutation: mutation$21,
6408
- name: name$2V
6444
+ name: name$2W
6409
6445
  };
6410
6446
 
6411
- const name$2U = "capitalFundProject";
6447
+ const name$2V = "capitalFundProject";
6412
6448
  const mutation$20 = Selector("Mutation")({
6413
- [name$2U]: [{ data: $("data", "FundProjectInput!") }, rawTransactionSelector]
6449
+ [name$2V]: [{ data: $("data", "FundProjectInput!") }, rawTransactionSelector]
6414
6450
  });
6415
6451
 
6416
6452
  const fundProject = {
6417
6453
  __proto__: null,
6418
6454
  mutation: mutation$20,
6419
- name: name$2U
6455
+ name: name$2V
6420
6456
  };
6421
6457
 
6422
- const name$2T = "capitalRefreshProgram";
6458
+ const name$2U = "capitalRefreshProgram";
6423
6459
  const mutation$1$ = Selector("Mutation")({
6424
- [name$2T]: [{ data: $("data", "RefreshProgramInput!") }, rawTransactionSelector]
6460
+ [name$2U]: [{ data: $("data", "RefreshProgramInput!") }, rawTransactionSelector]
6425
6461
  });
6426
6462
 
6427
6463
  const refreshProgram = {
6428
6464
  __proto__: null,
6429
6465
  mutation: mutation$1$,
6430
- name: name$2T
6466
+ name: name$2U
6431
6467
  };
6432
6468
 
6433
- const name$2S = "capitalRefreshProject";
6469
+ const name$2T = "capitalRefreshProject";
6434
6470
  const mutation$1_ = Selector("Mutation")({
6435
- [name$2S]: [{ data: $("data", "RefreshProjectInput!") }, rawTransactionSelector]
6471
+ [name$2T]: [{ data: $("data", "RefreshProjectInput!") }, rawTransactionSelector]
6436
6472
  });
6437
6473
 
6438
6474
  const refreshProject = {
6439
6475
  __proto__: null,
6440
6476
  mutation: mutation$1_,
6441
- name: name$2S
6477
+ name: name$2T
6442
6478
  };
6443
6479
 
6444
- const name$2R = "capitalCreateCommit";
6480
+ const name$2S = "capitalCreateCommit";
6445
6481
  const mutation$1Z = Selector("Mutation")({
6446
- [name$2R]: [{ data: $("data", "CreateCommitInput!") }, rawTransactionSelector]
6482
+ [name$2S]: [{ data: $("data", "CreateCommitInput!") }, rawTransactionSelector]
6447
6483
  });
6448
6484
 
6449
6485
  const createCommit = {
6450
6486
  __proto__: null,
6451
6487
  mutation: mutation$1Z,
6452
- name: name$2R
6488
+ name: name$2S
6453
6489
  };
6454
6490
 
6455
- const name$2Q = "capitalApproveCommit";
6491
+ const name$2R = "capitalApproveCommit";
6456
6492
  const mutation$1Y = Selector("Mutation")({
6457
- [name$2Q]: [{ data: $("data", "CommitApproveInput!") }, rawCommitSelector]
6493
+ [name$2R]: [{ data: $("data", "CommitApproveInput!") }, rawCommitSelector]
6458
6494
  });
6459
6495
 
6460
6496
  const approveCommit = {
6461
6497
  __proto__: null,
6462
6498
  mutation: mutation$1Y,
6463
- name: name$2Q
6499
+ name: name$2R
6464
6500
  };
6465
6501
 
6466
- const name$2P = "capitalDeclineCommit";
6502
+ const name$2Q = "capitalDeclineCommit";
6467
6503
  const mutation$1X = Selector("Mutation")({
6468
- [name$2P]: [{ data: $("data", "CommitDeclineInput!") }, rawCommitSelector]
6504
+ [name$2Q]: [{ data: $("data", "CommitDeclineInput!") }, rawCommitSelector]
6469
6505
  });
6470
6506
 
6471
6507
  const declineCommit = {
6472
6508
  __proto__: null,
6473
6509
  mutation: mutation$1X,
6474
- name: name$2P
6510
+ name: name$2Q
6475
6511
  };
6476
6512
 
6477
- const name$2O = "capitalRefreshSegment";
6513
+ const name$2P = "capitalRefreshSegment";
6478
6514
  const mutation$1W = Selector("Mutation")({
6479
- [name$2O]: [{ data: $("data", "RefreshSegmentInput!") }, rawSegmentSelector]
6515
+ [name$2P]: [{ data: $("data", "RefreshSegmentInput!") }, rawSegmentSelector]
6480
6516
  });
6481
6517
 
6482
6518
  const refreshSegment = {
6483
6519
  __proto__: null,
6484
6520
  mutation: mutation$1W,
6485
- name: name$2O
6521
+ name: name$2P
6486
6522
  };
6487
6523
 
6488
- const name$2N = "capitalCreateProjectInvest";
6524
+ const name$2O = "capitalCreateProjectInvest";
6489
6525
  const mutation$1V = Selector("Mutation")({
6490
- [name$2N]: [{ data: $("data", "CreateProjectInvestInput!") }, rawTransactionSelector]
6526
+ [name$2O]: [{ data: $("data", "CreateProjectInvestInput!") }, rawTransactionSelector]
6491
6527
  });
6492
6528
 
6493
6529
  const createProjectInvest = {
6494
6530
  __proto__: null,
6495
6531
  mutation: mutation$1V,
6496
- name: name$2N
6532
+ name: name$2O
6497
6533
  };
6498
6534
 
6499
- const name$2M = "capitalRegisterContributor";
6535
+ const name$2N = "capitalRegisterContributor";
6500
6536
  const mutation$1U = Selector("Mutation")({
6501
- [name$2M]: [{ data: $("data", "RegisterContributorInput!") }, rawTransactionSelector]
6537
+ [name$2N]: [{ data: $("data", "RegisterContributorInput!") }, rawTransactionSelector]
6502
6538
  });
6503
6539
 
6504
6540
  const registerContributor = {
6505
6541
  __proto__: null,
6506
6542
  mutation: mutation$1U,
6507
- name: name$2M
6543
+ name: name$2N
6508
6544
  };
6509
6545
 
6510
- const name$2L = "capitalImportContributor";
6546
+ const name$2M = "capitalImportContributor";
6511
6547
  const mutation$1T = Selector("Mutation")({
6512
- [name$2L]: [{ data: $("data", "ImportContributorInput!") }, rawTransactionSelector]
6548
+ [name$2M]: [{ data: $("data", "ImportContributorInput!") }, rawTransactionSelector]
6513
6549
  });
6514
6550
 
6515
6551
  const importContributor = {
6516
6552
  __proto__: null,
6517
6553
  mutation: mutation$1T,
6518
- name: name$2L
6554
+ name: name$2M
6519
6555
  };
6520
6556
 
6521
- const name$2K = "capitalMakeClearance";
6557
+ const name$2L = "capitalMakeClearance";
6522
6558
  const mutation$1S = Selector("Mutation")({
6523
- [name$2K]: [{ data: $("data", "MakeClearanceInput!") }, rawTransactionSelector]
6559
+ [name$2L]: [{ data: $("data", "MakeClearanceInput!") }, rawTransactionSelector]
6524
6560
  });
6525
6561
 
6526
6562
  const makeClearance = {
6527
6563
  __proto__: null,
6528
6564
  mutation: mutation$1S,
6529
- name: name$2K
6565
+ name: name$2L
6530
6566
  };
6531
6567
 
6532
- const name$2J = "capitalSetMaster";
6568
+ const name$2K = "capitalSetMaster";
6533
6569
  const mutation$1R = Selector("Mutation")({
6534
- [name$2J]: [{ data: $("data", "SetMasterInput!") }, rawTransactionSelector]
6570
+ [name$2K]: [{ data: $("data", "SetMasterInput!") }, rawTransactionSelector]
6535
6571
  });
6536
6572
 
6537
6573
  const setMaster = {
6538
6574
  __proto__: null,
6539
6575
  mutation: mutation$1R,
6540
- name: name$2J
6576
+ name: name$2K
6541
6577
  };
6542
6578
 
6543
- const name$2I = "capitalAddAuthor";
6579
+ const name$2J = "capitalAddAuthor";
6544
6580
  const mutation$1Q = Selector("Mutation")({
6545
- [name$2I]: [{ data: $("data", "AddAuthorInput!") }, rawProjectSelector]
6581
+ [name$2J]: [{ data: $("data", "AddAuthorInput!") }, rawProjectSelector]
6546
6582
  });
6547
6583
 
6548
6584
  const addAuthor = {
6549
6585
  __proto__: null,
6550
6586
  mutation: mutation$1Q,
6551
- name: name$2I
6587
+ name: name$2J
6552
6588
  };
6553
6589
 
6554
- const name$2H = "capitalSetPlan";
6590
+ const name$2I = "capitalSetPlan";
6555
6591
  const mutation$1P = Selector("Mutation")({
6556
- [name$2H]: [{ data: $("data", "SetPlanInput!") }, rawProjectSelector]
6592
+ [name$2I]: [{ data: $("data", "SetPlanInput!") }, rawProjectSelector]
6557
6593
  });
6558
6594
 
6559
6595
  const setPlan = {
6560
6596
  __proto__: null,
6561
6597
  mutation: mutation$1P,
6562
- name: name$2H
6598
+ name: name$2I
6563
6599
  };
6564
6600
 
6565
- const name$2G = "capitalStartProject";
6601
+ const name$2H = "capitalStartProject";
6566
6602
  const mutation$1O = Selector("Mutation")({
6567
- [name$2G]: [{ data: $("data", "StartProjectInput!") }, projectSelector]
6603
+ [name$2H]: [{ data: $("data", "StartProjectInput!") }, projectSelector]
6568
6604
  });
6569
6605
 
6570
6606
  const startProject = {
6571
6607
  __proto__: null,
6572
6608
  mutation: mutation$1O,
6573
- name: name$2G
6609
+ name: name$2H
6574
6610
  };
6575
6611
 
6576
- const name$2F = "capitalOpenProject";
6612
+ const name$2G = "capitalOpenProject";
6577
6613
  const mutation$1N = Selector("Mutation")({
6578
- [name$2F]: [{ data: $("data", "OpenProjectInput!") }, projectSelector]
6614
+ [name$2G]: [{ data: $("data", "OpenProjectInput!") }, projectSelector]
6579
6615
  });
6580
6616
 
6581
6617
  const openProject = {
6582
6618
  __proto__: null,
6583
6619
  mutation: mutation$1N,
6584
- name: name$2F
6620
+ name: name$2G
6585
6621
  };
6586
6622
 
6587
- const name$2E = "capitalCloseProject";
6623
+ const name$2F = "capitalCloseProject";
6588
6624
  const mutation$1M = Selector("Mutation")({
6589
- [name$2E]: [{ data: $("data", "CloseProjectInput!") }, projectSelector]
6625
+ [name$2F]: [{ data: $("data", "CloseProjectInput!") }, projectSelector]
6590
6626
  });
6591
6627
 
6592
6628
  const closeProject = {
6593
6629
  __proto__: null,
6594
6630
  mutation: mutation$1M,
6595
- name: name$2E
6631
+ name: name$2F
6596
6632
  };
6597
6633
 
6598
- const name$2D = "capitalStopProject";
6634
+ const name$2E = "capitalStopProject";
6599
6635
  const mutation$1L = Selector("Mutation")({
6600
- [name$2D]: [{ data: $("data", "StopProjectInput!") }, projectSelector]
6636
+ [name$2E]: [{ data: $("data", "StopProjectInput!") }, projectSelector]
6601
6637
  });
6602
6638
 
6603
6639
  const stopProject = {
6604
6640
  __proto__: null,
6605
6641
  mutation: mutation$1L,
6606
- name: name$2D
6642
+ name: name$2E
6607
6643
  };
6608
6644
 
6609
- const name$2C = "capitalDeleteProject";
6645
+ const name$2D = "capitalDeleteProject";
6610
6646
  const mutation$1K = Selector("Mutation")({
6611
- [name$2C]: [{ data: $("data", "DeleteProjectInput!") }, rawTransactionSelector]
6647
+ [name$2D]: [{ data: $("data", "DeleteProjectInput!") }, rawTransactionSelector]
6612
6648
  });
6613
6649
 
6614
6650
  const deleteProject = {
6615
6651
  __proto__: null,
6616
6652
  mutation: mutation$1K,
6617
- name: name$2C
6653
+ name: name$2D
6618
6654
  };
6619
6655
 
6620
- const name$2B = "capitalEditProject";
6656
+ const name$2C = "capitalEditProject";
6621
6657
  const mutation$1J = Selector("Mutation")({
6622
- [name$2B]: [{ data: $("data", "EditProjectInput!") }, rawTransactionSelector]
6658
+ [name$2C]: [{ data: $("data", "EditProjectInput!") }, rawTransactionSelector]
6623
6659
  });
6624
6660
 
6625
6661
  const editProject = {
6626
6662
  __proto__: null,
6627
6663
  mutation: mutation$1J,
6628
- name: name$2B
6664
+ name: name$2C
6629
6665
  };
6630
6666
 
6631
- const name$2A = "capitalCreateProjectProperty";
6667
+ const name$2B = "capitalCreateProjectProperty";
6632
6668
  const mutation$1I = Selector("Mutation")({
6633
- [name$2A]: [{ data: $("data", "CreateProjectPropertyInput!") }, rawTransactionSelector]
6669
+ [name$2B]: [{ data: $("data", "CreateProjectPropertyInput!") }, rawTransactionSelector]
6634
6670
  });
6635
6671
 
6636
6672
  const createProjectProperty = {
6637
6673
  __proto__: null,
6638
6674
  mutation: mutation$1I,
6639
- name: name$2A
6675
+ name: name$2B
6640
6676
  };
6641
6677
 
6642
- const name$2z = "capitalCreateProgramProperty";
6678
+ const name$2A = "capitalCreateProgramProperty";
6643
6679
  const mutation$1H = Selector("Mutation")({
6644
- [name$2z]: [{ data: $("data", "CreateProgramPropertyInput!") }, rawTransactionSelector]
6680
+ [name$2A]: [{ data: $("data", "CreateProgramPropertyInput!") }, rawTransactionSelector]
6645
6681
  });
6646
6682
 
6647
6683
  const createProgramProperty = {
6648
6684
  __proto__: null,
6649
6685
  mutation: mutation$1H,
6650
- name: name$2z
6686
+ name: name$2A
6651
6687
  };
6652
6688
 
6653
- const name$2y = "capitalPushResult";
6689
+ const name$2z = "capitalPushResult";
6654
6690
  const mutation$1G = Selector("Mutation")({
6655
- [name$2y]: [{ data: $("data", "PushResultInput!") }, rawSegmentSelector]
6691
+ [name$2z]: [{ data: $("data", "PushResultInput!") }, rawSegmentSelector]
6656
6692
  });
6657
6693
 
6658
6694
  const pushResult = {
6659
6695
  __proto__: null,
6660
6696
  mutation: mutation$1G,
6661
- name: name$2y
6697
+ name: name$2z
6662
6698
  };
6663
6699
 
6664
- const name$2x = "capitalConvertSegment";
6700
+ const name$2y = "capitalConvertSegment";
6665
6701
  const mutation$1F = Selector("Mutation")({
6666
- [name$2x]: [{ data: $("data", "ConvertSegmentInput!") }, rawSegmentSelector]
6702
+ [name$2y]: [{ data: $("data", "ConvertSegmentInput!") }, rawSegmentSelector]
6667
6703
  });
6668
6704
 
6669
6705
  const convertSegment = {
6670
6706
  __proto__: null,
6671
6707
  mutation: mutation$1F,
6672
- name: name$2x
6708
+ name: name$2y
6673
6709
  };
6674
6710
 
6675
- const name$2w = "capitalStartVoting";
6711
+ const name$2x = "capitalStartVoting";
6676
6712
  const mutation$1E = Selector("Mutation")({
6677
- [name$2w]: [{ data: $("data", "StartVotingInput!") }, rawTransactionSelector]
6713
+ [name$2x]: [{ data: $("data", "StartVotingInput!") }, rawTransactionSelector]
6678
6714
  });
6679
6715
 
6680
6716
  const startVoting = {
6681
6717
  __proto__: null,
6682
6718
  mutation: mutation$1E,
6683
- name: name$2w
6719
+ name: name$2x
6684
6720
  };
6685
6721
 
6686
- const name$2v = "capitalSubmitVote";
6722
+ const name$2w = "capitalSubmitVote";
6687
6723
  const mutation$1D = Selector("Mutation")({
6688
- [name$2v]: [{ data: $("data", "SubmitVoteInput!") }, rawTransactionSelector]
6724
+ [name$2w]: [{ data: $("data", "SubmitVoteInput!") }, rawTransactionSelector]
6689
6725
  });
6690
6726
 
6691
6727
  const submitVote = {
6692
6728
  __proto__: null,
6693
6729
  mutation: mutation$1D,
6694
- name: name$2v
6730
+ name: name$2w
6695
6731
  };
6696
6732
 
6697
- const name$2u = "capitalCompleteVoting";
6733
+ const name$2v = "capitalCompleteVoting";
6698
6734
  const mutation$1C = Selector("Mutation")({
6699
- [name$2u]: [{ data: $("data", "CompleteVotingInput!") }, rawTransactionSelector]
6735
+ [name$2v]: [{ data: $("data", "CompleteVotingInput!") }, rawTransactionSelector]
6700
6736
  });
6701
6737
 
6702
6738
  const completeVoting = {
6703
6739
  __proto__: null,
6704
6740
  mutation: mutation$1C,
6705
- name: name$2u
6741
+ name: name$2v
6706
6742
  };
6707
6743
 
6708
- const name$2t = "capitalCalculateVotes";
6744
+ const name$2u = "capitalCalculateVotes";
6709
6745
  const mutation$1B = Selector("Mutation")({
6710
- [name$2t]: [{ data: $("data", "CalculateVotesInput!") }, rawSegmentSelector]
6746
+ [name$2u]: [{ data: $("data", "CalculateVotesInput!") }, rawSegmentSelector]
6711
6747
  });
6712
6748
 
6713
6749
  const calculateVotes = {
6714
6750
  __proto__: null,
6715
6751
  mutation: mutation$1B,
6716
- name: name$2t
6752
+ name: name$2u
6717
6753
  };
6718
6754
 
6719
- const name$2s = "capitalCreateStory";
6755
+ const name$2t = "capitalCreateStory";
6720
6756
  const mutation$1A = Selector("Mutation")({
6721
- [name$2s]: [{ data: $("data", "CreateStoryInput!") }, rawStorySelector]
6757
+ [name$2t]: [{ data: $("data", "CreateStoryInput!") }, rawStorySelector]
6722
6758
  });
6723
6759
 
6724
6760
  const createStory = {
6725
6761
  __proto__: null,
6726
6762
  mutation: mutation$1A,
6727
- name: name$2s
6763
+ name: name$2t
6728
6764
  };
6729
6765
 
6730
- const name$2r = "capitalUpdateStory";
6766
+ const name$2s = "capitalUpdateStory";
6731
6767
  const mutation$1z = Selector("Mutation")({
6732
- [name$2r]: [{ data: $("data", "UpdateStoryInput!") }, rawStorySelector]
6768
+ [name$2s]: [{ data: $("data", "UpdateStoryInput!") }, rawStorySelector]
6733
6769
  });
6734
6770
 
6735
6771
  const updateStory = {
6736
6772
  __proto__: null,
6737
6773
  mutation: mutation$1z,
6738
- name: name$2r
6774
+ name: name$2s
6739
6775
  };
6740
6776
 
6741
- const name$2q = "capitalDeleteStory";
6777
+ const name$2r = "capitalDeleteStory";
6742
6778
  const mutation$1y = Selector("Mutation")({
6743
- [name$2q]: [{ data: $("data", "DeleteCapitalStoryByHashInput!") }, true]
6779
+ [name$2r]: [{ data: $("data", "DeleteCapitalStoryByHashInput!") }, true]
6744
6780
  });
6745
6781
 
6746
6782
  const deleteStory = {
6747
6783
  __proto__: null,
6748
6784
  mutation: mutation$1y,
6749
- name: name$2q
6785
+ name: name$2r
6750
6786
  };
6751
6787
 
6752
- const name$2p = "capitalCreateIssue";
6788
+ const name$2q = "capitalCreateIssue";
6753
6789
  const mutation$1x = Selector("Mutation")({
6754
- [name$2p]: [{ data: $("data", "CreateIssueInput!") }, rawIssueSelector]
6790
+ [name$2q]: [{ data: $("data", "CreateIssueInput!") }, rawIssueSelector]
6755
6791
  });
6756
6792
 
6757
6793
  const createIssue = {
6758
6794
  __proto__: null,
6759
6795
  mutation: mutation$1x,
6760
- name: name$2p
6796
+ name: name$2q
6761
6797
  };
6762
6798
 
6763
- const name$2o = "capitalUpdateIssue";
6799
+ const name$2p = "capitalUpdateIssue";
6764
6800
  const mutation$1w = Selector("Mutation")({
6765
- [name$2o]: [{ data: $("data", "UpdateIssueInput!") }, rawIssueSelector]
6801
+ [name$2p]: [{ data: $("data", "UpdateIssueInput!") }, rawIssueSelector]
6766
6802
  });
6767
6803
 
6768
6804
  const updateIssue = {
6769
6805
  __proto__: null,
6770
6806
  mutation: mutation$1w,
6771
- name: name$2o
6807
+ name: name$2p
6772
6808
  };
6773
6809
 
6774
- const name$2n = "capitalDeleteIssue";
6810
+ const name$2o = "capitalDeleteIssue";
6775
6811
  const mutation$1v = Selector("Mutation")({
6776
- [name$2n]: [{ data: $("data", "DeleteCapitalIssueByHashInput!") }, true]
6812
+ [name$2o]: [{ data: $("data", "DeleteCapitalIssueByHashInput!") }, true]
6777
6813
  });
6778
6814
 
6779
6815
  const deleteIssue = {
6780
6816
  __proto__: null,
6781
6817
  mutation: mutation$1v,
6782
- name: name$2n
6818
+ name: name$2o
6783
6819
  };
6784
6820
 
6785
- const name$2m = "capitalCreateCycle";
6821
+ const name$2n = "capitalCreateCycle";
6786
6822
  const mutation$1u = Selector("Mutation")({
6787
- [name$2m]: [{ data: $("data", "CreateCycleInput!") }, rawCycleSelector]
6823
+ [name$2n]: [{ data: $("data", "CreateCycleInput!") }, rawCycleSelector]
6788
6824
  });
6789
6825
 
6790
6826
  const createCycle = {
6791
6827
  __proto__: null,
6792
6828
  mutation: mutation$1u,
6793
- name: name$2m
6829
+ name: name$2n
6794
6830
  };
6795
6831
 
6796
- const name$2l = "capitalCreateExpense";
6832
+ const name$2m = "capitalCreateExpense";
6797
6833
  const mutation$1t = Selector("Mutation")({
6798
- [name$2l]: [{ data: $("data", "CreateExpenseInput!") }, rawTransactionSelector]
6834
+ [name$2m]: [{ data: $("data", "CreateExpenseInput!") }, rawTransactionSelector]
6799
6835
  });
6800
6836
 
6801
6837
  const createExpense = {
6802
6838
  __proto__: null,
6803
6839
  mutation: mutation$1t,
6804
- name: name$2l
6840
+ name: name$2m
6805
6841
  };
6806
6842
 
6807
- const name$2k = "capitalGenerateCapitalizationAgreement";
6843
+ const name$2l = "capitalGenerateCapitalizationAgreement";
6808
6844
  const mutation$1s = Selector("Mutation")({
6809
- [name$2k]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6845
+ [name$2l]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6810
6846
  });
6811
6847
 
6812
6848
  const generateCapitalizationAgreement = {
6813
6849
  __proto__: null,
6814
6850
  mutation: mutation$1s,
6815
- name: name$2k
6851
+ name: name$2l
6816
6852
  };
6817
6853
 
6818
- const name$2j = "capitalGenerateGenerationAgreement";
6854
+ const name$2k = "capitalGenerateGenerationAgreement";
6819
6855
  const mutation$1r = Selector("Mutation")({
6820
- [name$2j]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6856
+ [name$2k]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6821
6857
  });
6822
6858
 
6823
6859
  const generateGenerationAgreement = {
6824
6860
  __proto__: null,
6825
6861
  mutation: mutation$1r,
6826
- name: name$2j
6862
+ name: name$2k
6827
6863
  };
6828
6864
 
6829
- const name$2i = "capitalGenerateAppendixGenerationAgreement";
6865
+ const name$2j = "capitalGenerateAppendixGenerationAgreement";
6830
6866
  const mutation$1q = Selector("Mutation")({
6831
- [name$2i]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6867
+ [name$2j]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6832
6868
  });
6833
6869
 
6834
6870
  const generateAppendixGenerationAgreement = {
6835
6871
  __proto__: null,
6836
6872
  mutation: mutation$1q,
6837
- name: name$2i
6873
+ name: name$2j
6838
6874
  };
6839
6875
 
6840
- const name$2h = "capitalGenerateExpenseStatement";
6876
+ const name$2i = "capitalGenerateExpenseStatement";
6841
6877
  const mutation$1p = Selector("Mutation")({
6842
- [name$2h]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6878
+ [name$2i]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6843
6879
  });
6844
6880
 
6845
6881
  const generateExpenseStatement = {
6846
6882
  __proto__: null,
6847
6883
  mutation: mutation$1p,
6848
- name: name$2h
6884
+ name: name$2i
6849
6885
  };
6850
6886
 
6851
- const name$2g = "capitalGenerateExpenseDecision";
6887
+ const name$2h = "capitalGenerateExpenseDecision";
6852
6888
  const mutation$1o = Selector("Mutation")({
6853
- [name$2g]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6889
+ [name$2h]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6854
6890
  });
6855
6891
 
6856
6892
  const generateExpenseDecision = {
6857
6893
  __proto__: null,
6858
6894
  mutation: mutation$1o,
6859
- name: name$2g
6895
+ name: name$2h
6860
6896
  };
6861
6897
 
6862
- const name$2f = "capitalGenerateGenerationMoneyInvestStatement";
6898
+ const name$2g = "capitalGenerateGenerationMoneyInvestStatement";
6863
6899
  const mutation$1n = Selector("Mutation")({
6864
- [name$2f]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6900
+ [name$2g]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6865
6901
  });
6866
6902
 
6867
6903
  const generateGenerationMoneyInvestStatement = {
6868
6904
  __proto__: null,
6869
6905
  mutation: mutation$1n,
6870
- name: name$2f
6906
+ name: name$2g
6871
6907
  };
6872
6908
 
6873
- const name$2e = "capitalGenerateGenerationMoneyReturnUnusedStatement";
6909
+ const name$2f = "capitalGenerateGenerationMoneyReturnUnusedStatement";
6874
6910
  const mutation$1m = Selector("Mutation")({
6875
- [name$2e]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6911
+ [name$2f]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6876
6912
  });
6877
6913
 
6878
6914
  const generateGenerationMoneyReturnUnusedStatement = {
6879
6915
  __proto__: null,
6880
6916
  mutation: mutation$1m,
6881
- name: name$2e
6917
+ name: name$2f
6882
6918
  };
6883
6919
 
6884
- const name$2d = "capitalGenerateCapitalizationMoneyInvestStatement";
6920
+ const name$2e = "capitalGenerateCapitalizationMoneyInvestStatement";
6885
6921
  const mutation$1l = Selector("Mutation")({
6886
- [name$2d]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6922
+ [name$2e]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6887
6923
  });
6888
6924
 
6889
6925
  const generateCapitalizationMoneyInvestStatement = {
6890
6926
  __proto__: null,
6891
6927
  mutation: mutation$1l,
6892
- name: name$2d
6928
+ name: name$2e
6893
6929
  };
6894
6930
 
6895
- const name$2c = "capitalGenerateResultContributionStatement";
6931
+ const name$2d = "capitalGenerateResultContributionStatement";
6896
6932
  const mutation$1k = Selector("Mutation")({
6897
- [name$2c]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6933
+ [name$2d]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6898
6934
  });
6899
6935
 
6900
6936
  const generateResultContributionStatement = {
6901
6937
  __proto__: null,
6902
6938
  mutation: mutation$1k,
6903
- name: name$2c
6939
+ name: name$2d
6904
6940
  };
6905
6941
 
6906
- const name$2b = "capitalGenerateResultContributionDecision";
6942
+ const name$2c = "capitalGenerateResultContributionDecision";
6907
6943
  const mutation$1j = Selector("Mutation")({
6908
- [name$2b]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6944
+ [name$2c]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6909
6945
  });
6910
6946
 
6911
6947
  const generateResultContributionDecision = {
6912
6948
  __proto__: null,
6913
6949
  mutation: mutation$1j,
6914
- name: name$2b
6950
+ name: name$2c
6915
6951
  };
6916
6952
 
6917
- const name$2a = "capitalGenerateResultContributionAct";
6953
+ const name$2b = "capitalGenerateResultContributionAct";
6918
6954
  const mutation$1i = Selector("Mutation")({
6919
- [name$2a]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6955
+ [name$2b]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6920
6956
  });
6921
6957
 
6922
6958
  const generateResultContributionAct = {
6923
6959
  __proto__: null,
6924
6960
  mutation: mutation$1i,
6925
- name: name$2a
6961
+ name: name$2b
6926
6962
  };
6927
6963
 
6928
- const name$29 = "capitalGenerateGetLoanStatement";
6964
+ const name$2a = "capitalGenerateGetLoanStatement";
6929
6965
  const mutation$1h = Selector("Mutation")({
6930
- [name$29]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6966
+ [name$2a]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6931
6967
  });
6932
6968
 
6933
6969
  const generateGetLoanStatement = {
6934
6970
  __proto__: null,
6935
6971
  mutation: mutation$1h,
6936
- name: name$29
6972
+ name: name$2a
6937
6973
  };
6938
6974
 
6939
- const name$28 = "capitalGenerateGetLoanDecision";
6975
+ const name$29 = "capitalGenerateGetLoanDecision";
6940
6976
  const mutation$1g = Selector("Mutation")({
6941
- [name$28]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6977
+ [name$29]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6942
6978
  });
6943
6979
 
6944
6980
  const generateGetLoanDecision = {
6945
6981
  __proto__: null,
6946
6982
  mutation: mutation$1g,
6947
- name: name$28
6983
+ name: name$29
6948
6984
  };
6949
6985
 
6950
- const name$27 = "capitalGenerateGenerationPropertyInvestStatement";
6986
+ const name$28 = "capitalGenerateGenerationPropertyInvestStatement";
6951
6987
  const mutation$1f = Selector("Mutation")({
6952
- [name$27]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6988
+ [name$28]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6953
6989
  });
6954
6990
 
6955
6991
  const generateGenerationPropertyInvestStatement = {
6956
6992
  __proto__: null,
6957
6993
  mutation: mutation$1f,
6958
- name: name$27
6994
+ name: name$28
6959
6995
  };
6960
6996
 
6961
- const name$26 = "capitalGenerateGenerationPropertyInvestDecision";
6997
+ const name$27 = "capitalGenerateGenerationPropertyInvestDecision";
6962
6998
  const mutation$1e = Selector("Mutation")({
6963
- [name$26]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6999
+ [name$27]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6964
7000
  });
6965
7001
 
6966
7002
  const generateGenerationPropertyInvestDecision = {
6967
7003
  __proto__: null,
6968
7004
  mutation: mutation$1e,
6969
- name: name$26
7005
+ name: name$27
6970
7006
  };
6971
7007
 
6972
- const name$25 = "capitalGenerateGenerationPropertyInvestAct";
7008
+ const name$26 = "capitalGenerateGenerationPropertyInvestAct";
6973
7009
  const mutation$1d = Selector("Mutation")({
6974
- [name$25]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7010
+ [name$26]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6975
7011
  });
6976
7012
 
6977
7013
  const generateGenerationPropertyInvestAct = {
6978
7014
  __proto__: null,
6979
7015
  mutation: mutation$1d,
6980
- name: name$25
7016
+ name: name$26
6981
7017
  };
6982
7018
 
6983
- const name$24 = "capitalGenerateCapitalizationPropertyInvestStatement";
7019
+ const name$25 = "capitalGenerateCapitalizationPropertyInvestStatement";
6984
7020
  const mutation$1c = Selector("Mutation")({
6985
- [name$24]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7021
+ [name$25]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6986
7022
  });
6987
7023
 
6988
7024
  const generateCapitalizationPropertyInvestStatement = {
6989
7025
  __proto__: null,
6990
7026
  mutation: mutation$1c,
6991
- name: name$24
7027
+ name: name$25
6992
7028
  };
6993
7029
 
6994
- const name$23 = "capitalGenerateCapitalizationPropertyInvestDecision";
7030
+ const name$24 = "capitalGenerateCapitalizationPropertyInvestDecision";
6995
7031
  const mutation$1b = Selector("Mutation")({
6996
- [name$23]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7032
+ [name$24]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
6997
7033
  });
6998
7034
 
6999
7035
  const generateCapitalizationPropertyInvestDecision = {
7000
7036
  __proto__: null,
7001
7037
  mutation: mutation$1b,
7002
- name: name$23
7038
+ name: name$24
7003
7039
  };
7004
7040
 
7005
- const name$22 = "capitalGenerateCapitalizationPropertyInvestAct";
7041
+ const name$23 = "capitalGenerateCapitalizationPropertyInvestAct";
7006
7042
  const mutation$1a = Selector("Mutation")({
7007
- [name$22]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7043
+ [name$23]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7008
7044
  });
7009
7045
 
7010
7046
  const generateCapitalizationPropertyInvestAct = {
7011
7047
  __proto__: null,
7012
7048
  mutation: mutation$1a,
7013
- name: name$22
7049
+ name: name$23
7014
7050
  };
7015
7051
 
7016
- const name$21 = "capitalGenerateGenerationToMainWalletConvertStatement";
7052
+ const name$22 = "capitalGenerateGenerationToMainWalletConvertStatement";
7017
7053
  const mutation$19 = Selector("Mutation")({
7018
- [name$21]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7054
+ [name$22]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7019
7055
  });
7020
7056
 
7021
7057
  const generateGenerationToMainWalletConvertStatement = {
7022
7058
  __proto__: null,
7023
7059
  mutation: mutation$19,
7024
- name: name$21
7060
+ name: name$22
7025
7061
  };
7026
7062
 
7027
- const name$20 = "capitalGenerateGenerationToProjectConvertStatement";
7063
+ const name$21 = "capitalGenerateGenerationToProjectConvertStatement";
7028
7064
  const mutation$18 = Selector("Mutation")({
7029
- [name$20]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7065
+ [name$21]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7030
7066
  });
7031
7067
 
7032
7068
  const generateGenerationToProjectConvertStatement = {
7033
7069
  __proto__: null,
7034
7070
  mutation: mutation$18,
7035
- name: name$20
7071
+ name: name$21
7036
7072
  };
7037
7073
 
7038
- const name$1$ = "capitalGenerateGenerationToCapitalizationConvertStatement";
7074
+ const name$20 = "capitalGenerateGenerationToCapitalizationConvertStatement";
7039
7075
  const mutation$17 = Selector("Mutation")({
7040
- [name$1$]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7076
+ [name$20]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7041
7077
  });
7042
7078
 
7043
7079
  const generateGenerationToCapitalizationConvertStatement = {
7044
7080
  __proto__: null,
7045
7081
  mutation: mutation$17,
7046
- name: name$1$
7082
+ name: name$20
7047
7083
  };
7048
7084
 
7049
- const name$1_ = "capitalGenerateCapitalizationToMainWalletConvertStatement";
7085
+ const name$1$ = "capitalGenerateCapitalizationToMainWalletConvertStatement";
7050
7086
  const mutation$16 = Selector("Mutation")({
7051
- [name$1_]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7087
+ [name$1$]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7052
7088
  });
7053
7089
 
7054
7090
  const generateCapitalizationToMainWalletConvertStatement = {
7055
7091
  __proto__: null,
7056
7092
  mutation: mutation$16,
7057
- name: name$1_
7093
+ name: name$1$
7058
7094
  };
7059
7095
 
7060
- const name$1Z = "capitalSignActAsContributor";
7096
+ const name$1_ = "capitalSignActAsContributor";
7061
7097
  const mutation$15 = Selector("Mutation")({
7062
- [name$1Z]: [{ data: $("data", "SignActAsContributorInput!") }, rawSegmentSelector]
7098
+ [name$1_]: [{ data: $("data", "SignActAsContributorInput!") }, rawSegmentSelector]
7063
7099
  });
7064
7100
 
7065
7101
  const signActAsContributor = {
7066
7102
  __proto__: null,
7067
7103
  mutation: mutation$15,
7068
- name: name$1Z
7104
+ name: name$1_
7069
7105
  };
7070
7106
 
7071
- const name$1Y = "capitalSignActAsChairman";
7107
+ const name$1Z = "capitalSignActAsChairman";
7072
7108
  const mutation$14 = Selector("Mutation")({
7073
- [name$1Y]: [{ data: $("data", "SignActAsChairmanInput!") }, rawSegmentSelector]
7109
+ [name$1Z]: [{ data: $("data", "SignActAsChairmanInput!") }, rawSegmentSelector]
7074
7110
  });
7075
7111
 
7076
7112
  const signActAsChairman = {
7077
7113
  __proto__: null,
7078
7114
  mutation: mutation$14,
7079
- name: name$1Y
7115
+ name: name$1Z
7080
7116
  };
7081
7117
 
7082
- const name$1X = "capitalEditContributor";
7118
+ const name$1Y = "capitalEditContributor";
7083
7119
  const mutation$13 = Selector("Mutation")({
7084
- [name$1X]: [{ data: $("data", "EditContributorInput!") }, rawContributorSelector]
7120
+ [name$1Y]: [{ data: $("data", "EditContributorInput!") }, rawContributorSelector]
7085
7121
  });
7086
7122
 
7087
7123
  const editContributor = {
7088
7124
  __proto__: null,
7089
7125
  mutation: mutation$13,
7090
- name: name$1X
7126
+ name: name$1Y
7091
7127
  };
7092
7128
 
7093
7129
  const index$x = {
@@ -7160,26 +7196,26 @@ const index$x = {
7160
7196
  UpdateStory: updateStory
7161
7197
  };
7162
7198
 
7163
- const name$1W = "chairmanConfirmApprove";
7199
+ const name$1X = "chairmanConfirmApprove";
7164
7200
  const mutation$12 = Selector("Mutation")({
7165
- [name$1W]: [{ data: $("data", "ConfirmApproveInput!") }, approvalSelector]
7201
+ [name$1X]: [{ data: $("data", "ConfirmApproveInput!") }, approvalSelector]
7166
7202
  });
7167
7203
 
7168
7204
  const confirmApprove = {
7169
7205
  __proto__: null,
7170
7206
  mutation: mutation$12,
7171
- name: name$1W
7207
+ name: name$1X
7172
7208
  };
7173
7209
 
7174
- const name$1V = "chairmanDeclineApprove";
7210
+ const name$1W = "chairmanDeclineApprove";
7175
7211
  const mutation$11 = Selector("Mutation")({
7176
- [name$1V]: [{ data: $("data", "DeclineApproveInput!") }, approvalSelector]
7212
+ [name$1W]: [{ data: $("data", "DeclineApproveInput!") }, approvalSelector]
7177
7213
  });
7178
7214
 
7179
7215
  const declineApprove = {
7180
7216
  __proto__: null,
7181
7217
  mutation: mutation$11,
7182
- name: name$1V
7218
+ name: name$1W
7183
7219
  };
7184
7220
 
7185
7221
  const index$w = {
@@ -7188,257 +7224,257 @@ const index$w = {
7188
7224
  DeclineApprove: declineApprove
7189
7225
  };
7190
7226
 
7191
- const name$1U = "acceptChildOrder";
7227
+ const name$1V = "acceptChildOrder";
7192
7228
  const mutation$10 = Selector("Mutation")({
7193
- [name$1U]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
7229
+ [name$1V]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
7194
7230
  });
7195
7231
 
7196
7232
  const acceptChildOrder = {
7197
7233
  __proto__: null,
7198
7234
  mutation: mutation$10,
7199
- name: name$1U
7235
+ name: name$1V
7200
7236
  };
7201
7237
 
7202
- const name$1T = "cancelRequest";
7238
+ const name$1U = "cancelRequest";
7203
7239
  const mutation$$ = Selector("Mutation")({
7204
- [name$1T]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
7240
+ [name$1U]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
7205
7241
  });
7206
7242
 
7207
7243
  const cancelRequest = {
7208
7244
  __proto__: null,
7209
7245
  mutation: mutation$$,
7210
- name: name$1T
7246
+ name: name$1U
7211
7247
  };
7212
7248
 
7213
- const name$1S = "confirmReceiveOnRequest";
7249
+ const name$1T = "confirmReceiveOnRequest";
7214
7250
  const mutation$_ = Selector("Mutation")({
7215
- [name$1S]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
7251
+ [name$1T]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
7216
7252
  });
7217
7253
 
7218
7254
  const completeReceiveOnRequest = {
7219
7255
  __proto__: null,
7220
7256
  mutation: mutation$_,
7221
- name: name$1S
7257
+ name: name$1T
7222
7258
  };
7223
7259
 
7224
- const name$1R = "completeRequest";
7260
+ const name$1S = "completeRequest";
7225
7261
  const mutation$Z = Selector("Mutation")({
7226
- [name$1R]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
7262
+ [name$1S]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
7227
7263
  });
7228
7264
 
7229
7265
  const completeRequest = {
7230
7266
  __proto__: null,
7231
7267
  mutation: mutation$Z,
7232
- name: name$1R
7268
+ name: name$1S
7233
7269
  };
7234
7270
 
7235
- const name$1Q = "confirmSupplyOnRequest";
7271
+ const name$1R = "confirmSupplyOnRequest";
7236
7272
  const mutation$Y = Selector("Mutation")({
7237
- [name$1Q]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
7273
+ [name$1R]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
7238
7274
  });
7239
7275
 
7240
7276
  const confirmSupplyOnRequest = {
7241
7277
  __proto__: null,
7242
7278
  mutation: mutation$Y,
7243
- name: name$1Q
7279
+ name: name$1R
7244
7280
  };
7245
7281
 
7246
- const name$1P = "createChildOrder";
7282
+ const name$1Q = "createChildOrder";
7247
7283
  const mutation$X = Selector("Mutation")({
7248
- [name$1P]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
7284
+ [name$1Q]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
7249
7285
  });
7250
7286
 
7251
7287
  const createChildOrder = {
7252
7288
  __proto__: null,
7253
7289
  mutation: mutation$X,
7254
- name: name$1P
7290
+ name: name$1Q
7255
7291
  };
7256
7292
 
7257
- const name$1O = "createParentOffer";
7293
+ const name$1P = "createParentOffer";
7258
7294
  const mutation$W = Selector("Mutation")({
7259
- [name$1O]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
7295
+ [name$1P]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
7260
7296
  });
7261
7297
 
7262
7298
  const createParentOffer = {
7263
7299
  __proto__: null,
7264
7300
  mutation: mutation$W,
7265
- name: name$1O
7301
+ name: name$1P
7266
7302
  };
7267
7303
 
7268
- const name$1N = "declineRequest";
7304
+ const name$1O = "declineRequest";
7269
7305
  const mutation$V = Selector("Mutation")({
7270
- [name$1N]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
7306
+ [name$1O]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
7271
7307
  });
7272
7308
 
7273
7309
  const declineRequest = {
7274
7310
  __proto__: null,
7275
7311
  mutation: mutation$V,
7276
- name: name$1N
7312
+ name: name$1O
7277
7313
  };
7278
7314
 
7279
- const name$1M = "deliverOnRequest";
7315
+ const name$1N = "deliverOnRequest";
7280
7316
  const mutation$U = Selector("Mutation")({
7281
- [name$1M]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
7317
+ [name$1N]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
7282
7318
  });
7283
7319
 
7284
7320
  const deliverOnRequest = {
7285
7321
  __proto__: null,
7286
7322
  mutation: mutation$U,
7287
- name: name$1M
7323
+ name: name$1N
7288
7324
  };
7289
7325
 
7290
- const name$1L = "disputeOnRequest";
7326
+ const name$1M = "disputeOnRequest";
7291
7327
  const mutation$T = Selector("Mutation")({
7292
- [name$1L]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
7328
+ [name$1M]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
7293
7329
  });
7294
7330
 
7295
7331
  const disputeOnRequest = {
7296
7332
  __proto__: null,
7297
7333
  mutation: mutation$T,
7298
- name: name$1L
7334
+ name: name$1M
7299
7335
  };
7300
7336
 
7301
- const name$1K = "generateAssetContributionAct";
7337
+ const name$1L = "generateAssetContributionAct";
7302
7338
  const mutation$S = Selector("Mutation")({
7303
- [name$1K]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7339
+ [name$1L]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7304
7340
  });
7305
7341
 
7306
7342
  const generateAssetContributionAct = {
7307
7343
  __proto__: null,
7308
7344
  mutation: mutation$S,
7309
- name: name$1K
7345
+ name: name$1L
7310
7346
  };
7311
7347
 
7312
- const name$1J = "generateAssetContributionDecision";
7348
+ const name$1K = "generateAssetContributionDecision";
7313
7349
  const mutation$R = Selector("Mutation")({
7314
- [name$1J]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7350
+ [name$1K]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7315
7351
  });
7316
7352
 
7317
7353
  const generateAssetContributionDecision = {
7318
7354
  __proto__: null,
7319
7355
  mutation: mutation$R,
7320
- name: name$1J
7356
+ name: name$1K
7321
7357
  };
7322
7358
 
7323
- const name$1I = "generateAssetContributionStatement";
7359
+ const name$1J = "generateAssetContributionStatement";
7324
7360
  const mutation$Q = Selector("Mutation")({
7325
- [name$1I]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7361
+ [name$1J]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7326
7362
  });
7327
7363
 
7328
7364
  const generateAssetContributionStatement = {
7329
7365
  __proto__: null,
7330
7366
  mutation: mutation$Q,
7331
- name: name$1I
7367
+ name: name$1J
7332
7368
  };
7333
7369
 
7334
- const name$1H = "generateReturnByAssetAct";
7370
+ const name$1I = "generateReturnByAssetAct";
7335
7371
  const mutation$P = Selector("Mutation")({
7336
- [name$1H]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7372
+ [name$1I]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7337
7373
  });
7338
7374
 
7339
7375
  const generateReturnByAssetAct = {
7340
7376
  __proto__: null,
7341
7377
  mutation: mutation$P,
7342
- name: name$1H
7378
+ name: name$1I
7343
7379
  };
7344
7380
 
7345
- const name$1G = "generateReturnByAssetDecision";
7381
+ const name$1H = "generateReturnByAssetDecision";
7346
7382
  const mutation$O = Selector("Mutation")({
7347
- [name$1G]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7383
+ [name$1H]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7348
7384
  });
7349
7385
 
7350
7386
  const generateReturnByAssetDecision = {
7351
7387
  __proto__: null,
7352
7388
  mutation: mutation$O,
7353
- name: name$1G
7389
+ name: name$1H
7354
7390
  };
7355
7391
 
7356
- const name$1F = "generateReturnByAssetStatement";
7392
+ const name$1G = "generateReturnByAssetStatement";
7357
7393
  const mutation$N = Selector("Mutation")({
7358
- [name$1F]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7394
+ [name$1G]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7359
7395
  });
7360
7396
 
7361
7397
  const generateReturnByAssetStatement = {
7362
7398
  __proto__: null,
7363
7399
  mutation: mutation$N,
7364
- name: name$1F
7400
+ name: name$1G
7365
7401
  };
7366
7402
 
7367
- const name$1E = "moderateRequest";
7403
+ const name$1F = "moderateRequest";
7368
7404
  const mutation$M = Selector("Mutation")({
7369
- [name$1E]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
7405
+ [name$1F]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
7370
7406
  });
7371
7407
 
7372
7408
  const moderateRequest = {
7373
7409
  __proto__: null,
7374
7410
  mutation: mutation$M,
7375
- name: name$1E
7411
+ name: name$1F
7376
7412
  };
7377
7413
 
7378
- const name$1D = "prohibitRequest";
7414
+ const name$1E = "prohibitRequest";
7379
7415
  const mutation$L = Selector("Mutation")({
7380
- [name$1D]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
7416
+ [name$1E]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
7381
7417
  });
7382
7418
 
7383
7419
  const prohibitRequest = {
7384
7420
  __proto__: null,
7385
7421
  mutation: mutation$L,
7386
- name: name$1D
7422
+ name: name$1E
7387
7423
  };
7388
7424
 
7389
- const name$1C = "publishRequest";
7425
+ const name$1D = "publishRequest";
7390
7426
  const mutation$K = Selector("Mutation")({
7391
- [name$1C]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
7427
+ [name$1D]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
7392
7428
  });
7393
7429
 
7394
7430
  const publishRequest = {
7395
7431
  __proto__: null,
7396
7432
  mutation: mutation$K,
7397
- name: name$1C
7433
+ name: name$1D
7398
7434
  };
7399
7435
 
7400
- const name$1B = "receiveOnRequest";
7436
+ const name$1C = "receiveOnRequest";
7401
7437
  const mutation$J = Selector("Mutation")({
7402
- [name$1B]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
7438
+ [name$1C]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
7403
7439
  });
7404
7440
 
7405
7441
  const receiveOnRequest = {
7406
7442
  __proto__: null,
7407
7443
  mutation: mutation$J,
7408
- name: name$1B
7444
+ name: name$1C
7409
7445
  };
7410
7446
 
7411
- const name$1A = "supplyOnRequest";
7447
+ const name$1B = "supplyOnRequest";
7412
7448
  const mutation$I = Selector("Mutation")({
7413
- [name$1A]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
7449
+ [name$1B]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
7414
7450
  });
7415
7451
 
7416
7452
  const supplyOnRequest = {
7417
7453
  __proto__: null,
7418
7454
  mutation: mutation$I,
7419
- name: name$1A
7455
+ name: name$1B
7420
7456
  };
7421
7457
 
7422
- const name$1z = "unpublishRequest";
7458
+ const name$1A = "unpublishRequest";
7423
7459
  const mutation$H = Selector("Mutation")({
7424
- [name$1z]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
7460
+ [name$1A]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
7425
7461
  });
7426
7462
 
7427
7463
  const unpublishRequest = {
7428
7464
  __proto__: null,
7429
7465
  mutation: mutation$H,
7430
- name: name$1z
7466
+ name: name$1A
7431
7467
  };
7432
7468
 
7433
- const name$1y = "updateRequest";
7469
+ const name$1z = "updateRequest";
7434
7470
  const mutation$G = Selector("Mutation")({
7435
- [name$1y]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
7471
+ [name$1z]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
7436
7472
  });
7437
7473
 
7438
7474
  const updateRequest = {
7439
7475
  __proto__: null,
7440
7476
  mutation: mutation$G,
7441
- name: name$1y
7477
+ name: name$1z
7442
7478
  };
7443
7479
 
7444
7480
  const index$v = {
@@ -7468,37 +7504,37 @@ const index$v = {
7468
7504
  UpdateRequest: updateRequest
7469
7505
  };
7470
7506
 
7471
- const name$1x = "installExtension";
7507
+ const name$1y = "installExtension";
7472
7508
  const mutation$F = Selector("Mutation")({
7473
- [name$1x]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
7509
+ [name$1y]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
7474
7510
  });
7475
7511
 
7476
7512
  const installExtension = {
7477
7513
  __proto__: null,
7478
7514
  mutation: mutation$F,
7479
- name: name$1x
7515
+ name: name$1y
7480
7516
  };
7481
7517
 
7482
- const name$1w = "uninstallExtension";
7518
+ const name$1x = "uninstallExtension";
7483
7519
  const mutation$E = Selector("Mutation")({
7484
- [name$1w]: [{ data: $("data", "UninstallExtensionInput!") }, true]
7520
+ [name$1x]: [{ data: $("data", "UninstallExtensionInput!") }, true]
7485
7521
  });
7486
7522
 
7487
7523
  const uninstallExtension = {
7488
7524
  __proto__: null,
7489
7525
  mutation: mutation$E,
7490
- name: name$1w
7526
+ name: name$1x
7491
7527
  };
7492
7528
 
7493
- const name$1v = "updateExtension";
7529
+ const name$1w = "updateExtension";
7494
7530
  const mutation$D = Selector("Mutation")({
7495
- [name$1v]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
7531
+ [name$1w]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
7496
7532
  });
7497
7533
 
7498
7534
  const updateExtension = {
7499
7535
  __proto__: null,
7500
7536
  mutation: mutation$D,
7501
- name: name$1v
7537
+ name: name$1w
7502
7538
  };
7503
7539
 
7504
7540
  const index$u = {
@@ -7508,48 +7544,48 @@ const index$u = {
7508
7544
  UpdateExtension: updateExtension
7509
7545
  };
7510
7546
 
7511
- const name$1u = "generateProjectOfFreeDecision";
7547
+ const name$1v = "generateProjectOfFreeDecision";
7512
7548
  const mutation$C = Selector("Mutation")({
7513
- [name$1u]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7549
+ [name$1v]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7514
7550
  });
7515
7551
 
7516
7552
  const generateProjectOfFreeDecisionDocument = {
7517
7553
  __proto__: null,
7518
7554
  mutation: mutation$C,
7519
- name: name$1u
7555
+ name: name$1v
7520
7556
  };
7521
7557
 
7522
- const name$1t = "generateFreeDecision";
7558
+ const name$1u = "generateFreeDecision";
7523
7559
  const mutation$B = Selector("Mutation")({
7524
- [name$1t]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7560
+ [name$1u]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7525
7561
  });
7526
7562
 
7527
7563
  const generateFreeDecision = {
7528
7564
  __proto__: null,
7529
7565
  mutation: mutation$B,
7530
- name: name$1t
7566
+ name: name$1u
7531
7567
  };
7532
7568
 
7533
- const name$1s = "publishProjectOfFreeDecision";
7569
+ const name$1t = "publishProjectOfFreeDecision";
7534
7570
  const mutation$A = Selector("Mutation")({
7535
- [name$1s]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
7571
+ [name$1t]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
7536
7572
  });
7537
7573
 
7538
7574
  const publishProjectOfFreeDecision = {
7539
7575
  __proto__: null,
7540
7576
  mutation: mutation$A,
7541
- name: name$1s
7577
+ name: name$1t
7542
7578
  };
7543
7579
 
7544
- const name$1r = "createProjectOfFreeDecision";
7580
+ const name$1s = "createProjectOfFreeDecision";
7545
7581
  const mutation$z = Selector("Mutation")({
7546
- [name$1r]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
7582
+ [name$1s]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
7547
7583
  });
7548
7584
 
7549
7585
  const createProjectOfFreeDecision = {
7550
7586
  __proto__: null,
7551
7587
  mutation: mutation$z,
7552
- name: name$1r
7588
+ name: name$1s
7553
7589
  };
7554
7590
 
7555
7591
  const index$t = {
@@ -7560,37 +7596,37 @@ const index$t = {
7560
7596
  PublishProjectOfFreeDecision: publishProjectOfFreeDecision
7561
7597
  };
7562
7598
 
7563
- const name$1q = "setPaymentStatus";
7599
+ const name$1r = "setPaymentStatus";
7564
7600
  const mutation$y = Selector("Mutation")({
7565
- [name$1q]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
7601
+ [name$1r]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
7566
7602
  });
7567
7603
 
7568
7604
  const updatePaymentStatus = {
7569
7605
  __proto__: null,
7570
7606
  mutation: mutation$y,
7571
- name: name$1q
7607
+ name: name$1r
7572
7608
  };
7573
7609
 
7574
- const name$1p = "createInitialPayment";
7610
+ const name$1q = "createInitialPayment";
7575
7611
  const mutation$x = Selector("Mutation")({
7576
- [name$1p]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
7612
+ [name$1q]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
7577
7613
  });
7578
7614
 
7579
7615
  const createInitialPayment$1 = {
7580
7616
  __proto__: null,
7581
7617
  mutation: mutation$x,
7582
- name: name$1p
7618
+ name: name$1q
7583
7619
  };
7584
7620
 
7585
- const name$1o = "createDepositPayment";
7621
+ const name$1p = "createDepositPayment";
7586
7622
  const mutation$w = Selector("Mutation")({
7587
- [name$1o]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
7623
+ [name$1p]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
7588
7624
  });
7589
7625
 
7590
7626
  const createDepositPayment$1 = {
7591
7627
  __proto__: null,
7592
7628
  mutation: mutation$w,
7593
- name: name$1o
7629
+ name: name$1p
7594
7630
  };
7595
7631
 
7596
7632
  const index$s = {
@@ -7600,20 +7636,20 @@ const index$s = {
7600
7636
  SetPaymentStatus: updatePaymentStatus
7601
7637
  };
7602
7638
 
7603
- const name$1n = "createAnnualGeneralMeet";
7639
+ const name$1o = "createAnnualGeneralMeet";
7604
7640
  const mutation$v = Selector("Mutation")({
7605
- [name$1n]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
7641
+ [name$1o]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
7606
7642
  });
7607
7643
 
7608
7644
  const createAnnualGeneralMeet = {
7609
7645
  __proto__: null,
7610
7646
  mutation: mutation$v,
7611
- name: name$1n
7647
+ name: name$1o
7612
7648
  };
7613
7649
 
7614
- const name$1m = "generateAnnualGeneralMeetAgendaDocument";
7650
+ const name$1n = "generateAnnualGeneralMeetAgendaDocument";
7615
7651
  const mutation$u = Selector("Mutation")({
7616
- [name$1m]: [
7652
+ [name$1n]: [
7617
7653
  {
7618
7654
  data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
7619
7655
  options: $("options", "GenerateDocumentOptionsInput")
@@ -7625,12 +7661,12 @@ const mutation$u = Selector("Mutation")({
7625
7661
  const generateAnnualGeneralMeetAgendaDocument = {
7626
7662
  __proto__: null,
7627
7663
  mutation: mutation$u,
7628
- name: name$1m
7664
+ name: name$1n
7629
7665
  };
7630
7666
 
7631
- const name$1l = "generateAnnualGeneralMeetDecisionDocument";
7667
+ const name$1m = "generateAnnualGeneralMeetDecisionDocument";
7632
7668
  const mutation$t = Selector("Mutation")({
7633
- [name$1l]: [
7669
+ [name$1m]: [
7634
7670
  {
7635
7671
  data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
7636
7672
  options: $("options", "GenerateDocumentOptionsInput")
@@ -7642,12 +7678,12 @@ const mutation$t = Selector("Mutation")({
7642
7678
  const generateAnnualGeneralMeetDecisionDocument = {
7643
7679
  __proto__: null,
7644
7680
  mutation: mutation$t,
7645
- name: name$1l
7681
+ name: name$1m
7646
7682
  };
7647
7683
 
7648
- const name$1k = "generateAnnualGeneralMeetNotificationDocument";
7684
+ const name$1l = "generateAnnualGeneralMeetNotificationDocument";
7649
7685
  const mutation$s = Selector("Mutation")({
7650
- [name$1k]: [
7686
+ [name$1l]: [
7651
7687
  {
7652
7688
  data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
7653
7689
  options: $("options", "GenerateDocumentOptionsInput")
@@ -7659,12 +7695,12 @@ const mutation$s = Selector("Mutation")({
7659
7695
  const generateAnnualGeneralMeetNotificationDocument = {
7660
7696
  __proto__: null,
7661
7697
  mutation: mutation$s,
7662
- name: name$1k
7698
+ name: name$1l
7663
7699
  };
7664
7700
 
7665
- const name$1j = "generateBallotForAnnualGeneralMeetDocument";
7701
+ const name$1k = "generateBallotForAnnualGeneralMeetDocument";
7666
7702
  const mutation$r = Selector("Mutation")({
7667
- [name$1j]: [
7703
+ [name$1k]: [
7668
7704
  {
7669
7705
  data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
7670
7706
  options: $("options", "GenerateDocumentOptionsInput")
@@ -7676,12 +7712,12 @@ const mutation$r = Selector("Mutation")({
7676
7712
  const generateBallotForAnnualGeneralMeetDocument = {
7677
7713
  __proto__: null,
7678
7714
  mutation: mutation$r,
7679
- name: name$1j
7715
+ name: name$1k
7680
7716
  };
7681
7717
 
7682
- const name$1i = "generateSovietDecisionOnAnnualMeetDocument";
7718
+ const name$1j = "generateSovietDecisionOnAnnualMeetDocument";
7683
7719
  const mutation$q = Selector("Mutation")({
7684
- [name$1i]: [{
7720
+ [name$1j]: [{
7685
7721
  data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
7686
7722
  options: $("options", "GenerateDocumentOptionsInput")
7687
7723
  }, documentSelector]
@@ -7690,62 +7726,62 @@ const mutation$q = Selector("Mutation")({
7690
7726
  const generateSovietDecisionOnAnnualMeetDocument = {
7691
7727
  __proto__: null,
7692
7728
  mutation: mutation$q,
7693
- name: name$1i
7729
+ name: name$1j
7694
7730
  };
7695
7731
 
7696
- const name$1h = "notifyOnAnnualGeneralMeet";
7732
+ const name$1i = "notifyOnAnnualGeneralMeet";
7697
7733
  const mutation$p = Selector("Mutation")({
7698
- [name$1h]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7734
+ [name$1i]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7699
7735
  });
7700
7736
 
7701
7737
  const notifyOnAnnualGeneralMeet = {
7702
7738
  __proto__: null,
7703
7739
  mutation: mutation$p,
7704
- name: name$1h
7740
+ name: name$1i
7705
7741
  };
7706
7742
 
7707
- const name$1g = "restartAnnualGeneralMeet";
7743
+ const name$1h = "restartAnnualGeneralMeet";
7708
7744
  const mutation$o = Selector("Mutation")({
7709
- [name$1g]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
7745
+ [name$1h]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
7710
7746
  });
7711
7747
 
7712
7748
  const restartAnnualGeneralMeet = {
7713
7749
  __proto__: null,
7714
7750
  mutation: mutation$o,
7715
- name: name$1g
7751
+ name: name$1h
7716
7752
  };
7717
7753
 
7718
- const name$1f = "signByPresiderOnAnnualGeneralMeet";
7754
+ const name$1g = "signByPresiderOnAnnualGeneralMeet";
7719
7755
  const mutation$n = Selector("Mutation")({
7720
- [name$1f]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7756
+ [name$1g]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7721
7757
  });
7722
7758
 
7723
7759
  const signByPresiderOnAnnualGeneralMeet = {
7724
7760
  __proto__: null,
7725
7761
  mutation: mutation$n,
7726
- name: name$1f
7762
+ name: name$1g
7727
7763
  };
7728
7764
 
7729
- const name$1e = "signBySecretaryOnAnnualGeneralMeet";
7765
+ const name$1f = "signBySecretaryOnAnnualGeneralMeet";
7730
7766
  const mutation$m = Selector("Mutation")({
7731
- [name$1e]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7767
+ [name$1f]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7732
7768
  });
7733
7769
 
7734
7770
  const signBySecretaryOnAnnualGeneralMeet = {
7735
7771
  __proto__: null,
7736
7772
  mutation: mutation$m,
7737
- name: name$1e
7773
+ name: name$1f
7738
7774
  };
7739
7775
 
7740
- const name$1d = "voteOnAnnualGeneralMeet";
7776
+ const name$1e = "voteOnAnnualGeneralMeet";
7741
7777
  const mutation$l = Selector("Mutation")({
7742
- [name$1d]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7778
+ [name$1e]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
7743
7779
  });
7744
7780
 
7745
7781
  const voteOnAnnualGeneralMeet = {
7746
7782
  __proto__: null,
7747
7783
  mutation: mutation$l,
7748
- name: name$1d
7784
+ name: name$1e
7749
7785
  };
7750
7786
 
7751
7787
  const index$r = {
@@ -7763,37 +7799,37 @@ const index$r = {
7763
7799
  VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
7764
7800
  };
7765
7801
 
7766
- const name$1c = "createWebPushSubscription";
7802
+ const name$1d = "createWebPushSubscription";
7767
7803
  const mutation$k = Selector("Mutation")({
7768
- [name$1c]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
7804
+ [name$1d]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
7769
7805
  });
7770
7806
 
7771
7807
  const createWebPushSubscription = {
7772
7808
  __proto__: null,
7773
7809
  mutation: mutation$k,
7774
- name: name$1c
7810
+ name: name$1d
7775
7811
  };
7776
7812
 
7777
- const name$1b = "deactivateWebPushSubscriptionById";
7813
+ const name$1c = "deactivateWebPushSubscriptionById";
7778
7814
  const mutation$j = Selector("Mutation")({
7779
- [name$1b]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
7815
+ [name$1c]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
7780
7816
  });
7781
7817
 
7782
7818
  const deactivateWebPushSubscriptionById = {
7783
7819
  __proto__: null,
7784
7820
  mutation: mutation$j,
7785
- name: name$1b
7821
+ name: name$1c
7786
7822
  };
7787
7823
 
7788
- const name$1a = "triggerNotificationWorkflow";
7824
+ const name$1b = "triggerNotificationWorkflow";
7789
7825
  const mutation$i = Selector("Mutation")({
7790
- [name$1a]: [{ data: $("data", "TriggerNotificationWorkflowInput!") }, true]
7826
+ [name$1b]: [{ data: $("data", "TriggerNotificationWorkflowInput!") }, true]
7791
7827
  });
7792
7828
 
7793
7829
  const triggerNotificationWorkflow = {
7794
7830
  __proto__: null,
7795
7831
  mutation: mutation$i,
7796
- name: name$1a
7832
+ name: name$1b
7797
7833
  };
7798
7834
 
7799
7835
  const index$q = {
@@ -7803,59 +7839,59 @@ const index$q = {
7803
7839
  TriggerNotificationWorkflow: triggerNotificationWorkflow
7804
7840
  };
7805
7841
 
7806
- const name$19 = "addParticipant";
7842
+ const name$1a = "addParticipant";
7807
7843
  const mutation$h = Selector("Mutation")({
7808
- [name$19]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
7844
+ [name$1a]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
7809
7845
  });
7810
7846
 
7811
7847
  const addParticipant = {
7812
7848
  __proto__: null,
7813
7849
  mutation: mutation$h,
7814
- name: name$19
7850
+ name: name$1a
7815
7851
  };
7816
7852
 
7817
- const name$18 = "generateParticipantApplication";
7853
+ const name$19 = "generateParticipantApplication";
7818
7854
  const mutation$g = Selector("Mutation")({
7819
- [name$18]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7855
+ [name$19]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7820
7856
  });
7821
7857
 
7822
7858
  const generateParticipantApplication = {
7823
7859
  __proto__: null,
7824
7860
  mutation: mutation$g,
7825
- name: name$18
7861
+ name: name$19
7826
7862
  };
7827
7863
 
7828
- const name$17 = "generateParticipantApplicationDecision";
7864
+ const name$18 = "generateParticipantApplicationDecision";
7829
7865
  const mutation$f = Selector("Mutation")({
7830
- [name$17]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7866
+ [name$18]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
7831
7867
  });
7832
7868
 
7833
7869
  const generateParticipantApplicationDecision = {
7834
7870
  __proto__: null,
7835
7871
  mutation: mutation$f,
7836
- name: name$17
7872
+ name: name$18
7837
7873
  };
7838
7874
 
7839
- const name$16 = "registerParticipant";
7875
+ const name$17 = "registerParticipant";
7840
7876
  const mutation$e = Selector("Mutation")({
7841
- [name$16]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
7877
+ [name$17]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
7842
7878
  });
7843
7879
 
7844
7880
  const registerParticipant = {
7845
7881
  __proto__: null,
7846
7882
  mutation: mutation$e,
7847
- name: name$16
7883
+ name: name$17
7848
7884
  };
7849
7885
 
7850
- const name$15 = "createInitialPayment";
7886
+ const name$16 = "createInitialPayment";
7851
7887
  const mutation$d = Selector("Mutation")({
7852
- [name$15]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
7888
+ [name$16]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
7853
7889
  });
7854
7890
 
7855
7891
  const createInitialPayment = {
7856
7892
  __proto__: null,
7857
7893
  mutation: mutation$d,
7858
- name: name$15
7894
+ name: name$16
7859
7895
  };
7860
7896
 
7861
7897
  const index$p = {
@@ -7867,37 +7903,37 @@ const index$p = {
7867
7903
  RegisterParticipant: registerParticipant
7868
7904
  };
7869
7905
 
7870
- const name$14 = "createBankAccount";
7906
+ const name$15 = "createBankAccount";
7871
7907
  const mutation$c = Selector("Mutation")({
7872
- [name$14]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
7908
+ [name$15]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
7873
7909
  });
7874
7910
 
7875
7911
  const createBankAccount = {
7876
7912
  __proto__: null,
7877
7913
  mutation: mutation$c,
7878
- name: name$14
7914
+ name: name$15
7879
7915
  };
7880
7916
 
7881
- const name$13 = "deletePaymentMethod";
7917
+ const name$14 = "deletePaymentMethod";
7882
7918
  const mutation$b = Selector("Mutation")({
7883
- [name$13]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
7919
+ [name$14]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
7884
7920
  });
7885
7921
 
7886
7922
  const deletePaymentMethod = {
7887
7923
  __proto__: null,
7888
7924
  mutation: mutation$b,
7889
- name: name$13
7925
+ name: name$14
7890
7926
  };
7891
7927
 
7892
- const name$12 = "updateBankAccount";
7928
+ const name$13 = "updateBankAccount";
7893
7929
  const mutation$a = Selector("Mutation")({
7894
- [name$12]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
7930
+ [name$13]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
7895
7931
  });
7896
7932
 
7897
7933
  const updateBankAccount = {
7898
7934
  __proto__: null,
7899
7935
  mutation: mutation$a,
7900
- name: name$12
7936
+ name: name$13
7901
7937
  };
7902
7938
 
7903
7939
  const index$o = {
@@ -7907,42 +7943,42 @@ const index$o = {
7907
7943
  UpdateBankAccount: updateBankAccount
7908
7944
  };
7909
7945
 
7910
- const name$11 = "initSystem";
7946
+ const name$12 = "initSystem";
7911
7947
  const mutation$9 = Selector("Mutation")({
7912
- [name$11]: [{ data: $("data", "Init!") }, systemInfoSelector]
7948
+ [name$12]: [{ data: $("data", "Init!") }, systemInfoSelector]
7913
7949
  });
7914
7950
 
7915
7951
  const initSystem = {
7916
7952
  __proto__: null,
7917
7953
  mutation: mutation$9,
7918
- name: name$11
7954
+ name: name$12
7919
7955
  };
7920
7956
 
7921
- const name$10 = "installSystem";
7957
+ const name$11 = "installSystem";
7922
7958
  const mutation$8 = Selector("Mutation")({
7923
- [name$10]: [{ data: $("data", "Install!") }, systemInfoSelector]
7959
+ [name$11]: [{ data: $("data", "Install!") }, systemInfoSelector]
7924
7960
  });
7925
7961
 
7926
7962
  const installSystem = {
7927
7963
  __proto__: null,
7928
7964
  mutation: mutation$8,
7929
- name: name$10
7965
+ name: name$11
7930
7966
  };
7931
7967
 
7932
- const name$$ = "setWif";
7968
+ const name$10 = "setWif";
7933
7969
  const mutation$7 = Selector("Mutation")({
7934
- [name$$]: [{ data: $("data", "SetWifInput!") }, true]
7970
+ [name$10]: [{ data: $("data", "SetWifInput!") }, true]
7935
7971
  });
7936
7972
 
7937
7973
  const saveWif = {
7938
7974
  __proto__: null,
7939
7975
  mutation: mutation$7,
7940
- name: name$$
7976
+ name: name$10
7941
7977
  };
7942
7978
 
7943
- const name$_ = "startInstall";
7979
+ const name$$ = "startInstall";
7944
7980
  const mutation$6 = Selector("Mutation")({
7945
- [name$_]: [{ data: $("data", "StartInstallInput!") }, {
7981
+ [name$$]: [{ data: $("data", "StartInstallInput!") }, {
7946
7982
  install_code: true,
7947
7983
  coopname: true
7948
7984
  }]
@@ -7951,29 +7987,29 @@ const mutation$6 = Selector("Mutation")({
7951
7987
  const startInstall = {
7952
7988
  __proto__: null,
7953
7989
  mutation: mutation$6,
7954
- name: name$_
7990
+ name: name$$
7955
7991
  };
7956
7992
 
7957
- const name$Z = "updateSettings";
7993
+ const name$_ = "updateSettings";
7958
7994
  const mutation$5 = Selector("Mutation")({
7959
- [name$Z]: [{ data: $("data", "UpdateSettingsInput!") }, rawSettingsSelector]
7995
+ [name$_]: [{ data: $("data", "UpdateSettingsInput!") }, rawSettingsSelector]
7960
7996
  });
7961
7997
 
7962
7998
  const updateSettings = {
7963
7999
  __proto__: null,
7964
8000
  mutation: mutation$5,
7965
- name: name$Z
8001
+ name: name$_
7966
8002
  };
7967
8003
 
7968
- const name$Y = "updateSystem";
8004
+ const name$Z = "updateSystem";
7969
8005
  const mutation$4 = Selector("Mutation")({
7970
- [name$Y]: [{ data: $("data", "Update!") }, systemInfoSelector]
8006
+ [name$Z]: [{ data: $("data", "Update!") }, systemInfoSelector]
7971
8007
  });
7972
8008
 
7973
8009
  const updateSystem = {
7974
8010
  __proto__: null,
7975
8011
  mutation: mutation$4,
7976
- name: name$Y
8012
+ name: name$Z
7977
8013
  };
7978
8014
 
7979
8015
  const index$n = {
@@ -7986,31 +8022,31 @@ const index$n = {
7986
8022
  UpdateSystem: updateSystem
7987
8023
  };
7988
8024
 
7989
- const name$X = "createWithdraw";
8025
+ const name$Y = "createWithdraw";
7990
8026
  const mutation$3 = Selector("Mutation")({
7991
- [name$X]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
8027
+ [name$Y]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
7992
8028
  });
7993
8029
 
7994
8030
  const createWithdraw = {
7995
8031
  __proto__: null,
7996
8032
  mutation: mutation$3,
7997
- name: name$X
8033
+ name: name$Y
7998
8034
  };
7999
8035
 
8000
- const name$W = "createDepositPayment";
8036
+ const name$X = "createDepositPayment";
8001
8037
  const mutation$2 = Selector("Mutation")({
8002
- [name$W]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
8038
+ [name$X]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
8003
8039
  });
8004
8040
 
8005
8041
  const createDepositPayment = {
8006
8042
  __proto__: null,
8007
8043
  mutation: mutation$2,
8008
- name: name$W
8044
+ name: name$X
8009
8045
  };
8010
8046
 
8011
- const name$V = "generateReturnByMoneyStatementDocument";
8047
+ const name$W = "generateReturnByMoneyStatementDocument";
8012
8048
  const mutation$1 = Selector("Mutation")({
8013
- [name$V]: [
8049
+ [name$W]: [
8014
8050
  {
8015
8051
  data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
8016
8052
  options: $("options", "GenerateDocumentOptionsInput")
@@ -8022,12 +8058,12 @@ const mutation$1 = Selector("Mutation")({
8022
8058
  const generateReturnByMoneyStatementDocument = {
8023
8059
  __proto__: null,
8024
8060
  mutation: mutation$1,
8025
- name: name$V
8061
+ name: name$W
8026
8062
  };
8027
8063
 
8028
- const name$U = "generateReturnByMoneyDecisionDocument";
8064
+ const name$V = "generateReturnByMoneyDecisionDocument";
8029
8065
  const mutation = Selector("Mutation")({
8030
- [name$U]: [
8066
+ [name$V]: [
8031
8067
  {
8032
8068
  data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
8033
8069
  options: $("options", "GenerateDocumentOptionsInput")
@@ -8039,7 +8075,7 @@ const mutation = Selector("Mutation")({
8039
8075
  const generateReturnByMoneyDecisionDocument = {
8040
8076
  __proto__: null,
8041
8077
  mutation: mutation,
8042
- name: name$U
8078
+ name: name$V
8043
8079
  };
8044
8080
 
8045
8081
  const index$m = {
@@ -8070,26 +8106,26 @@ const Mutations = {
8070
8106
  Wallet: index$m
8071
8107
  };
8072
8108
 
8073
- const name$T = "getAccount";
8074
- const query$T = Selector("Query")({
8075
- [name$T]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
8109
+ const name$U = "getAccount";
8110
+ const query$U = Selector("Query")({
8111
+ [name$U]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
8076
8112
  });
8077
8113
 
8078
8114
  const getAccount = {
8079
8115
  __proto__: null,
8080
- name: name$T,
8081
- query: query$T
8116
+ name: name$U,
8117
+ query: query$U
8082
8118
  };
8083
8119
 
8084
- const name$S = "getAccounts";
8085
- const query$S = Selector("Query")({
8086
- [name$S]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
8120
+ const name$T = "getAccounts";
8121
+ const query$T = Selector("Query")({
8122
+ [name$T]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
8087
8123
  });
8088
8124
 
8089
8125
  const getAccounts = {
8090
8126
  __proto__: null,
8091
- name: name$S,
8092
- query: query$S
8127
+ name: name$T,
8128
+ query: query$T
8093
8129
  };
8094
8130
 
8095
8131
  const rawSearchPrivateAccountsResultSelector = {
@@ -8106,15 +8142,15 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
8106
8142
  rawSearchPrivateAccountsResultSelector
8107
8143
  );
8108
8144
 
8109
- const name$R = "searchPrivateAccounts";
8110
- const query$R = Selector("Query")({
8111
- [name$R]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
8145
+ const name$S = "searchPrivateAccounts";
8146
+ const query$S = Selector("Query")({
8147
+ [name$S]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
8112
8148
  });
8113
8149
 
8114
8150
  const searchPrivateAccounts = {
8115
8151
  __proto__: null,
8116
- name: name$R,
8117
- query: query$R
8152
+ name: name$S,
8153
+ query: query$S
8118
8154
  };
8119
8155
 
8120
8156
  const index$l = {
@@ -8158,15 +8194,15 @@ const rawAgendaSelector = {
8158
8194
  };
8159
8195
  const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
8160
8196
 
8161
- const name$Q = "getAgenda";
8162
- const query$Q = Selector("Query")({
8163
- [name$Q]: agendaSelector
8197
+ const name$R = "getAgenda";
8198
+ const query$R = Selector("Query")({
8199
+ [name$R]: agendaSelector
8164
8200
  });
8165
8201
 
8166
8202
  const getAgenda = {
8167
8203
  __proto__: null,
8168
- name: name$Q,
8169
- query: query$Q
8204
+ name: name$R,
8205
+ query: query$R
8170
8206
  };
8171
8207
 
8172
8208
  const index$k = {
@@ -8174,9 +8210,9 @@ const index$k = {
8174
8210
  GetAgenda: getAgenda
8175
8211
  };
8176
8212
 
8177
- const name$P = "agreements";
8178
- const query$P = Selector("Query")({
8179
- [name$P]: [
8213
+ const name$Q = "agreements";
8214
+ const query$Q = Selector("Query")({
8215
+ [name$Q]: [
8180
8216
  {
8181
8217
  filter: $("filter", "AgreementFilter"),
8182
8218
  options: $("options", "PaginationInput")
@@ -8187,8 +8223,8 @@ const query$P = Selector("Query")({
8187
8223
 
8188
8224
  const agreements = {
8189
8225
  __proto__: null,
8190
- name: name$P,
8191
- query: query$P
8226
+ name: name$Q,
8227
+ query: query$Q
8192
8228
  };
8193
8229
 
8194
8230
  const index$j = {
@@ -8197,9 +8233,9 @@ const index$j = {
8197
8233
  };
8198
8234
 
8199
8235
  const paginatedActionsSelector = { ...paginationSelector, items: rawBlockchainActionSelector };
8200
- const name$O = "getActions";
8201
- const query$O = Selector("Query")({
8202
- [name$O]: [
8236
+ const name$P = "getActions";
8237
+ const query$P = Selector("Query")({
8238
+ [name$P]: [
8203
8239
  {
8204
8240
  filters: $("filters", "ActionFiltersInput"),
8205
8241
  pagination: $("pagination", "PaginationInput")
@@ -8210,14 +8246,14 @@ const query$O = Selector("Query")({
8210
8246
 
8211
8247
  const getActions = {
8212
8248
  __proto__: null,
8213
- name: name$O,
8214
- query: query$O
8249
+ name: name$P,
8250
+ query: query$P
8215
8251
  };
8216
8252
 
8217
- const name$N = "getCurrentTableStates";
8253
+ const name$O = "getCurrentTableStates";
8218
8254
  const paginatedCurrentTableStatesSelector = { ...paginationSelector, items: rawCurrentTableStateSelector };
8219
- const query$N = Selector("Query")({
8220
- [name$N]: [
8255
+ const query$O = Selector("Query")({
8256
+ [name$O]: [
8221
8257
  {
8222
8258
  filters: $("filters", "CurrentTableStatesFiltersInput"),
8223
8259
  pagination: $("pagination", "PaginationInput")
@@ -8228,14 +8264,14 @@ const query$N = Selector("Query")({
8228
8264
 
8229
8265
  const getCurrentTableStates = {
8230
8266
  __proto__: null,
8231
- name: name$N,
8232
- query: query$N
8267
+ name: name$O,
8268
+ query: query$O
8233
8269
  };
8234
8270
 
8235
8271
  const paginatedDeltasSelector = { ...paginationSelector, items: rawDeltaSelector };
8236
- const name$M = "getDeltas";
8237
- const query$M = Selector("Query")({
8238
- [name$M]: [
8272
+ const name$N = "getDeltas";
8273
+ const query$N = Selector("Query")({
8274
+ [name$N]: [
8239
8275
  {
8240
8276
  filters: $("filters", "DeltaFiltersInput"),
8241
8277
  pagination: $("pagination", "PaginationInput")
@@ -8246,8 +8282,8 @@ const query$M = Selector("Query")({
8246
8282
 
8247
8283
  const getDeltas = {
8248
8284
  __proto__: null,
8249
- name: name$M,
8250
- query: query$M
8285
+ name: name$N,
8286
+ query: query$N
8251
8287
  };
8252
8288
 
8253
8289
  const index$i = {
@@ -8257,26 +8293,26 @@ const index$i = {
8257
8293
  GetDeltas: getDeltas
8258
8294
  };
8259
8295
 
8260
- const name$L = "getBranches";
8261
- const query$L = Selector("Query")({
8262
- [name$L]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
8296
+ const name$M = "getBranches";
8297
+ const query$M = Selector("Query")({
8298
+ [name$M]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
8263
8299
  });
8264
8300
 
8265
8301
  const getBranches = {
8266
8302
  __proto__: null,
8267
- name: name$L,
8268
- query: query$L
8303
+ name: name$M,
8304
+ query: query$M
8269
8305
  };
8270
8306
 
8271
- const name$K = "getBranches";
8272
- const query$K = Selector("Query")({
8273
- [name$K]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
8307
+ const name$L = "getBranches";
8308
+ const query$L = Selector("Query")({
8309
+ [name$L]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
8274
8310
  });
8275
8311
 
8276
8312
  const getPublicBranches = {
8277
8313
  __proto__: null,
8278
- name: name$K,
8279
- query: query$K
8314
+ name: name$L,
8315
+ query: query$L
8280
8316
  };
8281
8317
 
8282
8318
  const index$h = {
@@ -8285,336 +8321,336 @@ const index$h = {
8285
8321
  GetPublicBranches: getPublicBranches
8286
8322
  };
8287
8323
 
8288
- const name$J = "capitalVotes";
8289
- const query$J = Selector("Query")({
8290
- [name$J]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
8324
+ const name$K = "capitalVotes";
8325
+ const query$K = Selector("Query")({
8326
+ [name$K]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
8291
8327
  });
8292
8328
 
8293
8329
  const getVotes = {
8330
+ __proto__: null,
8331
+ name: name$K,
8332
+ query: query$K
8333
+ };
8334
+
8335
+ const name$J = "capitalVote";
8336
+ const query$J = Selector("Query")({
8337
+ [name$J]: [{ data: $("data", "GetVoteInput!") }, voteSelector]
8338
+ });
8339
+
8340
+ const getVote = {
8294
8341
  __proto__: null,
8295
8342
  name: name$J,
8296
8343
  query: query$J
8297
8344
  };
8298
8345
 
8299
- const name$I = "capitalVote";
8346
+ const name$I = "capitalProjects";
8300
8347
  const query$I = Selector("Query")({
8301
- [name$I]: [{ data: $("data", "GetVoteInput!") }, voteSelector]
8348
+ [name$I]: [{ filter: $("filter", "CapitalProjectFilter"), options: $("options", "PaginationInput") }, projectsPaginationSelector]
8302
8349
  });
8303
8350
 
8304
- const getVote = {
8351
+ const getProjects = {
8305
8352
  __proto__: null,
8306
8353
  name: name$I,
8307
8354
  query: query$I
8308
8355
  };
8309
8356
 
8310
- const name$H = "capitalProjects";
8357
+ const name$H = "capitalProject";
8311
8358
  const query$H = Selector("Query")({
8312
- [name$H]: [{ filter: $("filter", "CapitalProjectFilter"), options: $("options", "PaginationInput") }, projectsPaginationSelector]
8359
+ [name$H]: [{ data: $("data", "GetProjectInput!") }, projectSelector]
8313
8360
  });
8314
8361
 
8315
- const getProjects = {
8362
+ const getProject = {
8316
8363
  __proto__: null,
8317
8364
  name: name$H,
8318
8365
  query: query$H
8319
8366
  };
8320
8367
 
8321
- const name$G = "capitalProject";
8368
+ const name$G = "capitalProjectWithRelations";
8322
8369
  const query$G = Selector("Query")({
8323
- [name$G]: [{ data: $("data", "GetProjectInput!") }, projectSelector]
8370
+ [name$G]: [{ data: $("data", "GetProjectWithRelationsInput!") }, projectSelector]
8324
8371
  });
8325
8372
 
8326
- const getProject = {
8373
+ const getProjectWithRelations = {
8327
8374
  __proto__: null,
8328
8375
  name: name$G,
8329
8376
  query: query$G
8330
8377
  };
8331
8378
 
8332
- const name$F = "capitalProjectWithRelations";
8379
+ const name$F = "capitalSegments";
8333
8380
  const query$F = Selector("Query")({
8334
- [name$F]: [{ data: $("data", "GetProjectWithRelationsInput!") }, projectSelector]
8381
+ [name$F]: [{ filter: $("filter", "CapitalSegmentFilter"), options: $("options", "PaginationInput") }, segmentsPaginationSelector]
8335
8382
  });
8336
8383
 
8337
- const getProjectWithRelations = {
8384
+ const getSegments = {
8338
8385
  __proto__: null,
8339
8386
  name: name$F,
8340
8387
  query: query$F
8341
8388
  };
8342
8389
 
8343
- const name$E = "capitalSegments";
8390
+ const name$E = "capitalSegment";
8344
8391
  const query$E = Selector("Query")({
8345
- [name$E]: [{ filter: $("filter", "CapitalSegmentFilter"), options: $("options", "PaginationInput") }, segmentsPaginationSelector]
8392
+ [name$E]: [{ filter: $("filter", "CapitalSegmentFilter") }, segmentSelector]
8346
8393
  });
8347
8394
 
8348
- const getSegments = {
8395
+ const getSegment = {
8349
8396
  __proto__: null,
8350
8397
  name: name$E,
8351
8398
  query: query$E
8352
8399
  };
8353
8400
 
8354
- const name$D = "capitalSegment";
8401
+ const name$D = "capitalContributors";
8355
8402
  const query$D = Selector("Query")({
8356
- [name$D]: [{ filter: $("filter", "CapitalSegmentFilter") }, segmentSelector]
8403
+ [name$D]: [{ filter: $("filter", "CapitalContributorFilter"), options: $("options", "PaginationInput") }, contributorsPaginationSelector]
8357
8404
  });
8358
8405
 
8359
- const getSegment = {
8406
+ const getContributors = {
8360
8407
  __proto__: null,
8361
8408
  name: name$D,
8362
8409
  query: query$D
8363
8410
  };
8364
8411
 
8365
- const name$C = "capitalContributors";
8412
+ const name$C = "capitalContributor";
8366
8413
  const query$C = Selector("Query")({
8367
- [name$C]: [{ filter: $("filter", "CapitalContributorFilter"), options: $("options", "PaginationInput") }, contributorsPaginationSelector]
8414
+ [name$C]: [{ data: $("data", "GetContributorInput!") }, contributorSelector]
8368
8415
  });
8369
8416
 
8370
- const getContributors = {
8417
+ const getContributor = {
8371
8418
  __proto__: null,
8372
8419
  name: name$C,
8373
8420
  query: query$C
8374
8421
  };
8375
8422
 
8376
- const name$B = "capitalContributor";
8423
+ const name$B = "capitalInvests";
8377
8424
  const query$B = Selector("Query")({
8378
- [name$B]: [{ data: $("data", "GetContributorInput!") }, contributorSelector]
8425
+ [name$B]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, investsPaginationSelector]
8379
8426
  });
8380
8427
 
8381
- const getContributor = {
8428
+ const getInvests = {
8382
8429
  __proto__: null,
8383
8430
  name: name$B,
8384
8431
  query: query$B
8385
8432
  };
8386
8433
 
8387
- const name$A = "capitalInvests";
8434
+ const name$A = "capitalInvest";
8388
8435
  const query$A = Selector("Query")({
8389
- [name$A]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, investsPaginationSelector]
8436
+ [name$A]: [{ data: $("data", "GetInvestInput!") }, investSelector]
8390
8437
  });
8391
8438
 
8392
- const getInvests = {
8439
+ const getInvest = {
8393
8440
  __proto__: null,
8394
8441
  name: name$A,
8395
8442
  query: query$A
8396
8443
  };
8397
8444
 
8398
- const name$z = "capitalInvest";
8445
+ const name$z = "capitalProgramInvests";
8399
8446
  const query$z = Selector("Query")({
8400
- [name$z]: [{ data: $("data", "GetInvestInput!") }, investSelector]
8447
+ [name$z]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, programInvestsPaginationSelector]
8401
8448
  });
8402
8449
 
8403
- const getInvest = {
8450
+ const getProgramInvests = {
8404
8451
  __proto__: null,
8405
8452
  name: name$z,
8406
8453
  query: query$z
8407
8454
  };
8408
8455
 
8409
- const name$y = "capitalProgramInvests";
8456
+ const name$y = "capitalProgramInvest";
8410
8457
  const query$y = Selector("Query")({
8411
- [name$y]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, programInvestsPaginationSelector]
8458
+ [name$y]: [{ data: $("data", "GetProgramInvestInput!") }, programInvestSelector]
8412
8459
  });
8413
8460
 
8414
- const getProgramInvests = {
8461
+ const getProgramInvest = {
8415
8462
  __proto__: null,
8416
8463
  name: name$y,
8417
8464
  query: query$y
8418
8465
  };
8419
8466
 
8420
- const name$x = "capitalProgramInvest";
8467
+ const name$x = "capitalDebts";
8421
8468
  const query$x = Selector("Query")({
8422
- [name$x]: [{ data: $("data", "GetProgramInvestInput!") }, programInvestSelector]
8469
+ [name$x]: [{ filter: $("filter", "DebtFilter"), options: $("options", "PaginationInput") }, debtsPaginationSelector]
8423
8470
  });
8424
8471
 
8425
- const getProgramInvest = {
8472
+ const getDebts = {
8426
8473
  __proto__: null,
8427
8474
  name: name$x,
8428
8475
  query: query$x
8429
8476
  };
8430
8477
 
8431
- const name$w = "capitalDebts";
8478
+ const name$w = "capitalDebt";
8432
8479
  const query$w = Selector("Query")({
8433
- [name$w]: [{ filter: $("filter", "DebtFilter"), options: $("options", "PaginationInput") }, debtsPaginationSelector]
8480
+ [name$w]: [{ data: $("data", "GetDebtInput!") }, debtSelector]
8434
8481
  });
8435
8482
 
8436
- const getDebts = {
8483
+ const getDebt = {
8437
8484
  __proto__: null,
8438
8485
  name: name$w,
8439
8486
  query: query$w
8440
8487
  };
8441
8488
 
8442
- const name$v = "capitalDebt";
8489
+ const name$v = "capitalResults";
8443
8490
  const query$v = Selector("Query")({
8444
- [name$v]: [{ data: $("data", "GetDebtInput!") }, debtSelector]
8491
+ [name$v]: [{ filter: $("filter", "ResultFilter"), options: $("options", "PaginationInput") }, resultsPaginationSelector]
8445
8492
  });
8446
8493
 
8447
- const getDebt = {
8494
+ const getResults = {
8448
8495
  __proto__: null,
8449
8496
  name: name$v,
8450
8497
  query: query$v
8451
8498
  };
8452
8499
 
8453
- const name$u = "capitalResults";
8500
+ const name$u = "capitalResult";
8454
8501
  const query$u = Selector("Query")({
8455
- [name$u]: [{ filter: $("filter", "ResultFilter"), options: $("options", "PaginationInput") }, resultsPaginationSelector]
8502
+ [name$u]: [{ data: $("data", "GetResultInput!") }, resultSelector]
8456
8503
  });
8457
8504
 
8458
- const getResults = {
8505
+ const getResult = {
8459
8506
  __proto__: null,
8460
8507
  name: name$u,
8461
8508
  query: query$u
8462
8509
  };
8463
8510
 
8464
- const name$t = "capitalResult";
8511
+ const name$t = "capitalExpenses";
8465
8512
  const query$t = Selector("Query")({
8466
- [name$t]: [{ data: $("data", "GetResultInput!") }, resultSelector]
8513
+ [name$t]: [{ filter: $("filter", "ExpenseFilter"), options: $("options", "PaginationInput") }, expensesPaginationSelector]
8467
8514
  });
8468
8515
 
8469
- const getResult = {
8516
+ const getExpenses = {
8470
8517
  __proto__: null,
8471
8518
  name: name$t,
8472
8519
  query: query$t
8473
8520
  };
8474
8521
 
8475
- const name$s = "capitalExpenses";
8522
+ const name$s = "capitalExpense";
8476
8523
  const query$s = Selector("Query")({
8477
- [name$s]: [{ filter: $("filter", "ExpenseFilter"), options: $("options", "PaginationInput") }, expensesPaginationSelector]
8524
+ [name$s]: [{ data: $("data", "GetExpenseInput!") }, expenseSelector]
8478
8525
  });
8479
8526
 
8480
- const getExpenses = {
8527
+ const getExpense = {
8481
8528
  __proto__: null,
8482
8529
  name: name$s,
8483
8530
  query: query$s
8484
8531
  };
8485
8532
 
8486
- const name$r = "capitalExpense";
8533
+ const name$r = "capitalTimeStats";
8487
8534
  const query$r = Selector("Query")({
8488
- [name$r]: [{ data: $("data", "GetExpenseInput!") }, expenseSelector]
8535
+ [name$r]: [{ data: $("data", "CapitalTimeStatsInput"), options: $("options", "PaginationInput") }, flexibleTimeStatsSelector]
8489
8536
  });
8490
8537
 
8491
- const getExpense = {
8538
+ const getTimeStats = {
8492
8539
  __proto__: null,
8493
8540
  name: name$r,
8494
8541
  query: query$r
8495
8542
  };
8496
8543
 
8497
- const name$q = "capitalTimeStats";
8544
+ const name$q = "capitalTimeEntries";
8498
8545
  const query$q = Selector("Query")({
8499
- [name$q]: [{ data: $("data", "CapitalTimeStatsInput"), options: $("options", "PaginationInput") }, flexibleTimeStatsSelector]
8546
+ [name$q]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesPaginationSelector]
8500
8547
  });
8501
8548
 
8502
- const getTimeStats = {
8549
+ const getTimeEntries = {
8503
8550
  __proto__: null,
8504
8551
  name: name$q,
8505
8552
  query: query$q
8506
8553
  };
8507
8554
 
8508
- const name$p = "capitalTimeEntries";
8555
+ const name$p = "capitalTimeEntriesByIssues";
8509
8556
  const query$p = Selector("Query")({
8510
- [name$p]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesPaginationSelector]
8557
+ [name$p]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesByIssuesPaginationSelector]
8511
8558
  });
8512
8559
 
8513
- const getTimeEntries = {
8560
+ const getTimeEntriesByIssues = {
8514
8561
  __proto__: null,
8515
8562
  name: name$p,
8516
8563
  query: query$p
8517
8564
  };
8518
8565
 
8519
- const name$o = "capitalTimeEntriesByIssues";
8566
+ const name$o = "capitalCommit";
8520
8567
  const query$o = Selector("Query")({
8521
- [name$o]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesByIssuesPaginationSelector]
8568
+ [name$o]: [{ data: $("data", "GetCapitalCommitByHashInput!") }, commitSelector]
8522
8569
  });
8523
8570
 
8524
- const getTimeEntriesByIssues = {
8571
+ const getCommit = {
8525
8572
  __proto__: null,
8526
8573
  name: name$o,
8527
8574
  query: query$o
8528
8575
  };
8529
8576
 
8530
- const name$n = "capitalCommit";
8577
+ const name$n = "capitalStories";
8531
8578
  const query$n = Selector("Query")({
8532
- [name$n]: [{ data: $("data", "GetCapitalCommitByHashInput!") }, commitSelector]
8579
+ [name$n]: [{ filter: $("filter", "CapitalStoryFilter"), options: $("options", "PaginationInput") }, storiesPaginationSelector]
8533
8580
  });
8534
8581
 
8535
- const getCommit = {
8582
+ const getStories = {
8536
8583
  __proto__: null,
8537
8584
  name: name$n,
8538
8585
  query: query$n
8539
8586
  };
8540
8587
 
8541
- const name$m = "capitalStories";
8588
+ const name$m = "capitalStory";
8542
8589
  const query$m = Selector("Query")({
8543
- [name$m]: [{ filter: $("filter", "CapitalStoryFilter"), options: $("options", "PaginationInput") }, storiesPaginationSelector]
8590
+ [name$m]: [{ data: $("data", "GetCapitalStoryByHashInput!") }, storySelector]
8544
8591
  });
8545
8592
 
8546
- const getStories = {
8593
+ const getStory = {
8547
8594
  __proto__: null,
8548
8595
  name: name$m,
8549
8596
  query: query$m
8550
8597
  };
8551
8598
 
8552
- const name$l = "capitalStory";
8599
+ const name$l = "capitalIssues";
8553
8600
  const query$l = Selector("Query")({
8554
- [name$l]: [{ data: $("data", "GetCapitalStoryByHashInput!") }, storySelector]
8601
+ [name$l]: [{ filter: $("filter", "CapitalIssueFilter"), options: $("options", "PaginationInput") }, issuesPaginationSelector]
8555
8602
  });
8556
8603
 
8557
- const getStory = {
8604
+ const getIssues = {
8558
8605
  __proto__: null,
8559
8606
  name: name$l,
8560
8607
  query: query$l
8561
8608
  };
8562
8609
 
8563
- const name$k = "capitalIssues";
8610
+ const name$k = "capitalIssue";
8564
8611
  const query$k = Selector("Query")({
8565
- [name$k]: [{ filter: $("filter", "CapitalIssueFilter"), options: $("options", "PaginationInput") }, issuesPaginationSelector]
8612
+ [name$k]: [{ data: $("data", "GetCapitalIssueByHashInput!") }, issueSelector]
8566
8613
  });
8567
8614
 
8568
- const getIssues = {
8615
+ const getIssue = {
8569
8616
  __proto__: null,
8570
8617
  name: name$k,
8571
8618
  query: query$k
8572
8619
  };
8573
8620
 
8574
- const name$j = "capitalIssue";
8621
+ const name$j = "capitalCommits";
8575
8622
  const query$j = Selector("Query")({
8576
- [name$j]: [{ data: $("data", "GetCapitalIssueByHashInput!") }, issueSelector]
8623
+ [name$j]: [{ filter: $("filter", "CapitalCommitFilter"), options: $("options", "PaginationInput") }, commitsPaginationSelector]
8577
8624
  });
8578
8625
 
8579
- const getIssue = {
8626
+ const getCommits = {
8580
8627
  __proto__: null,
8581
8628
  name: name$j,
8582
8629
  query: query$j
8583
8630
  };
8584
8631
 
8585
- const name$i = "capitalCommits";
8632
+ const name$i = "capitalCycles";
8586
8633
  const query$i = Selector("Query")({
8587
- [name$i]: [{ filter: $("filter", "CapitalCommitFilter"), options: $("options", "PaginationInput") }, commitsPaginationSelector]
8634
+ [name$i]: [{ filter: $("filter", "CapitalCycleFilter"), options: $("options", "PaginationInput") }, cyclesPaginationSelector]
8588
8635
  });
8589
8636
 
8590
- const getCommits = {
8637
+ const getCycles = {
8591
8638
  __proto__: null,
8592
8639
  name: name$i,
8593
8640
  query: query$i
8594
8641
  };
8595
8642
 
8596
- const name$h = "capitalCycles";
8643
+ const name$h = "capitalState";
8597
8644
  const query$h = Selector("Query")({
8598
- [name$h]: [{ filter: $("filter", "CapitalCycleFilter"), options: $("options", "PaginationInput") }, cyclesPaginationSelector]
8645
+ [name$h]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
8599
8646
  });
8600
8647
 
8601
- const getCycles = {
8648
+ const getState = {
8602
8649
  __proto__: null,
8603
8650
  name: name$h,
8604
8651
  query: query$h
8605
8652
  };
8606
8653
 
8607
- const name$g = "capitalState";
8608
- const query$g = Selector("Query")({
8609
- [name$g]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
8610
- });
8611
-
8612
- const getState = {
8613
- __proto__: null,
8614
- name: name$g,
8615
- query: query$g
8616
- };
8617
-
8618
8654
  const index$g = {
8619
8655
  __proto__: null,
8620
8656
  GetCommit: getCommit,
@@ -8649,9 +8685,9 @@ const index$g = {
8649
8685
  GetVotes: getVotes
8650
8686
  };
8651
8687
 
8652
- const name$f = "chairmanApprovals";
8653
- const query$f = Selector("Query")({
8654
- [name$f]: [
8688
+ const name$g = "chairmanApprovals";
8689
+ const query$g = Selector("Query")({
8690
+ [name$g]: [
8655
8691
  {
8656
8692
  filter: $("filter", "ApprovalFilter"),
8657
8693
  options: $("options", "PaginationInput")
@@ -8662,19 +8698,19 @@ const query$f = Selector("Query")({
8662
8698
 
8663
8699
  const getApprovals = {
8664
8700
  __proto__: null,
8665
- name: name$f,
8666
- query: query$f
8701
+ name: name$g,
8702
+ query: query$g
8667
8703
  };
8668
8704
 
8669
- const name$e = "chairmanApproval";
8670
- const query$e = Selector("Query")({
8671
- [name$e]: [{ id: $("id", "String!") }, approvalSelector]
8705
+ const name$f = "chairmanApproval";
8706
+ const query$f = Selector("Query")({
8707
+ [name$f]: [{ id: $("id", "String!") }, approvalSelector]
8672
8708
  });
8673
8709
 
8674
8710
  const getApproval = {
8675
8711
  __proto__: null,
8676
- name: name$e,
8677
- query: query$e
8712
+ name: name$f,
8713
+ query: query$f
8678
8714
  };
8679
8715
 
8680
8716
  const index$f = {
@@ -8699,15 +8735,15 @@ const rawDesktopSelector = {
8699
8735
  };
8700
8736
  const desktopSelector = Selector("Desktop")(rawDesktopSelector);
8701
8737
 
8702
- const name$d = "getDesktop";
8703
- const query$d = Selector("Query")({
8704
- [name$d]: desktopSelector
8738
+ const name$e = "getDesktop";
8739
+ const query$e = Selector("Query")({
8740
+ [name$e]: desktopSelector
8705
8741
  });
8706
8742
 
8707
8743
  const getDesktop = {
8708
8744
  __proto__: null,
8709
- name: name$d,
8710
- query: query$d
8745
+ name: name$e,
8746
+ query: query$e
8711
8747
  };
8712
8748
 
8713
8749
  const index$e = {
@@ -8716,15 +8752,15 @@ const index$e = {
8716
8752
  };
8717
8753
 
8718
8754
  const documentPaginationSelector = { ...paginationSelector, items: rawDocumentPackageAggregateSelector };
8719
- const name$c = "getDocuments";
8720
- const query$c = Selector("Query")({
8721
- [name$c]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
8755
+ const name$d = "getDocuments";
8756
+ const query$d = Selector("Query")({
8757
+ [name$d]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
8722
8758
  });
8723
8759
 
8724
8760
  const getDocuments = {
8725
8761
  __proto__: null,
8726
- name: name$c,
8727
- query: query$c
8762
+ name: name$d,
8763
+ query: query$d
8728
8764
  };
8729
8765
 
8730
8766
  const index$d = {
@@ -8732,15 +8768,15 @@ const index$d = {
8732
8768
  GetDocuments: getDocuments
8733
8769
  };
8734
8770
 
8735
- const name$b = "getExtensions";
8736
- const query$b = Selector("Query")({
8737
- [name$b]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
8771
+ const name$c = "getExtensions";
8772
+ const query$c = Selector("Query")({
8773
+ [name$c]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
8738
8774
  });
8739
8775
 
8740
8776
  const getExtensions = {
8741
8777
  __proto__: null,
8742
- name: name$b,
8743
- query: query$b
8778
+ name: name$c,
8779
+ query: query$c
8744
8780
  };
8745
8781
 
8746
8782
  const index$c = {
@@ -8749,9 +8785,9 @@ const index$c = {
8749
8785
  };
8750
8786
 
8751
8787
  const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
8752
- const name$a = "getPayments";
8753
- const query$a = Selector("Query")({
8754
- [name$a]: [
8788
+ const name$b = "getPayments";
8789
+ const query$b = Selector("Query")({
8790
+ [name$b]: [
8755
8791
  {
8756
8792
  data: $("data", "PaymentFiltersInput"),
8757
8793
  options: $("options", "PaginationInput")
@@ -8762,8 +8798,8 @@ const query$a = Selector("Query")({
8762
8798
 
8763
8799
  const getPayments = {
8764
8800
  __proto__: null,
8765
- name: name$a,
8766
- query: query$a
8801
+ name: name$b,
8802
+ query: query$b
8767
8803
  };
8768
8804
 
8769
8805
  const index$b = {
@@ -8771,26 +8807,26 @@ const index$b = {
8771
8807
  GetPayments: getPayments
8772
8808
  };
8773
8809
 
8774
- const name$9 = "getLedger";
8775
- const query$9 = Selector("Query")({
8776
- [name$9]: [{ data: $("data", "GetLedgerInput!") }, ledgerStateSelector]
8810
+ const name$a = "getLedger";
8811
+ const query$a = Selector("Query")({
8812
+ [name$a]: [{ data: $("data", "GetLedgerInput!") }, ledgerStateSelector]
8777
8813
  });
8778
8814
 
8779
8815
  const getLedger = {
8780
8816
  __proto__: null,
8781
- name: name$9,
8782
- query: query$9
8817
+ name: name$a,
8818
+ query: query$a
8783
8819
  };
8784
8820
 
8785
- const name$8 = "getLedgerHistory";
8786
- const query$8 = Selector("Query")({
8787
- [name$8]: [{ data: $("data", "GetLedgerHistoryInput!") }, rawLedgerHistorySelector]
8821
+ const name$9 = "getLedgerHistory";
8822
+ const query$9 = Selector("Query")({
8823
+ [name$9]: [{ data: $("data", "GetLedgerHistoryInput!") }, rawLedgerHistorySelector]
8788
8824
  });
8789
8825
 
8790
8826
  const getLedgerHistory = {
8791
8827
  __proto__: null,
8792
- name: name$8,
8793
- query: query$8
8828
+ name: name$9,
8829
+ query: query$9
8794
8830
  };
8795
8831
 
8796
8832
  const index$a = {
@@ -8799,26 +8835,26 @@ const index$a = {
8799
8835
  GetLedgerHistory: getLedgerHistory
8800
8836
  };
8801
8837
 
8802
- const name$7 = "getMeet";
8803
- const query$7 = Selector("Query")({
8804
- [name$7]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
8838
+ const name$8 = "getMeet";
8839
+ const query$8 = Selector("Query")({
8840
+ [name$8]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
8805
8841
  });
8806
8842
 
8807
8843
  const getMeet = {
8808
8844
  __proto__: null,
8809
- name: name$7,
8810
- query: query$7
8845
+ name: name$8,
8846
+ query: query$8
8811
8847
  };
8812
8848
 
8813
- const name$6 = "getMeets";
8814
- const query$6 = Selector("Query")({
8815
- [name$6]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
8849
+ const name$7 = "getMeets";
8850
+ const query$7 = Selector("Query")({
8851
+ [name$7]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
8816
8852
  });
8817
8853
 
8818
8854
  const getMeets = {
8819
8855
  __proto__: null,
8820
- name: name$6,
8821
- query: query$6
8856
+ name: name$7,
8857
+ query: query$7
8822
8858
  };
8823
8859
 
8824
8860
  const index$9 = {
@@ -8827,26 +8863,26 @@ const index$9 = {
8827
8863
  GetMeets: getMeets
8828
8864
  };
8829
8865
 
8830
- const name$5 = "getUserWebPushSubscriptions";
8831
- const query$5 = Selector("Query")({
8832
- [name$5]: [{ data: $("data", "GetUserSubscriptionsInput!") }, rawWebPushSubscriptionSelector]
8866
+ const name$6 = "getUserWebPushSubscriptions";
8867
+ const query$6 = Selector("Query")({
8868
+ [name$6]: [{ data: $("data", "GetUserSubscriptionsInput!") }, rawWebPushSubscriptionSelector]
8833
8869
  });
8834
8870
 
8835
8871
  const getUserWebPushSubscriptions = {
8836
8872
  __proto__: null,
8837
- name: name$5,
8838
- query: query$5
8873
+ name: name$6,
8874
+ query: query$6
8839
8875
  };
8840
8876
 
8841
- const name$4 = "getWebPushSubscriptionStats";
8842
- const query$4 = Selector("Query")({
8843
- [name$4]: rawSubscriptionStatsSelector
8877
+ const name$5 = "getWebPushSubscriptionStats";
8878
+ const query$5 = Selector("Query")({
8879
+ [name$5]: rawSubscriptionStatsSelector
8844
8880
  });
8845
8881
 
8846
8882
  const getWebPushSubscriptionStats = {
8847
8883
  __proto__: null,
8848
- name: name$4,
8849
- query: query$4
8884
+ name: name$5,
8885
+ query: query$5
8850
8886
  };
8851
8887
 
8852
8888
  const index$8 = {
@@ -8858,14 +8894,14 @@ const index$8 = {
8858
8894
  const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
8859
8895
  Selector("PaymentMethodPaginationResult")(rawPaymentMethodPaginationSelector);
8860
8896
 
8861
- const name$3 = "getPaymentMethods";
8862
- const query$3 = Selector("Query")({
8863
- [name$3]: [{ data: $("data", "GetPaymentMethodsInput") }, rawPaymentMethodPaginationSelector]
8897
+ const name$4 = "getPaymentMethods";
8898
+ const query$4 = Selector("Query")({
8899
+ [name$4]: [{ data: $("data", "GetPaymentMethodsInput") }, rawPaymentMethodPaginationSelector]
8864
8900
  });
8865
8901
 
8866
8902
  const getPaymentMethods = {
8867
8903
  __proto__: null,
8868
- query: query$3
8904
+ query: query$4
8869
8905
  };
8870
8906
 
8871
8907
  const index$7 = {
@@ -8873,6 +8909,17 @@ const index$7 = {
8873
8909
  GetPaymentMethods: getPaymentMethods
8874
8910
  };
8875
8911
 
8912
+ const name$3 = "getCurrentInstance";
8913
+ const query$3 = Selector("Query")({
8914
+ [name$3]: currentInstanceSelector
8915
+ });
8916
+
8917
+ const getCurrentInstance = {
8918
+ __proto__: null,
8919
+ name: name$3,
8920
+ query: query$3
8921
+ };
8922
+
8876
8923
  const name$2 = "getInstallationStatus";
8877
8924
  const query$2 = Selector("Query")({
8878
8925
  [name$2]: [{ data: $("data", "GetInstallationStatusInput!") }, installationStatusSelector]
@@ -8908,6 +8955,7 @@ const getSystemInfo = {
8908
8955
 
8909
8956
  const index$6 = {
8910
8957
  __proto__: null,
8958
+ GetCurrentInstance: getCurrentInstance,
8911
8959
  GetInstallationStatus: getInstallationStatus,
8912
8960
  GetProviderSubscriptions: getProviderSubscriptions,
8913
8961
  GetSystemInfo: getSystemInfo
@@ -9027,7 +9075,7 @@ const _Client = class _Client {
9027
9075
  signature
9028
9076
  }
9029
9077
  };
9030
- const { [name$34]: result } = await this.thunder("mutation")(
9078
+ const { [name$35]: result } = await this.thunder("mutation")(
9031
9079
  mutation$2c,
9032
9080
  {
9033
9081
  variables