@coopenomics/sdk 2025.11.29-alpha-1 → 2025.12.2-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +834 -767
- package/dist/index.d.cts +1371 -1095
- package/dist/index.d.mts +1371 -1095
- package/dist/index.d.ts +1371 -1095
- package/dist/index.mjs +834 -767
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -996,6 +996,7 @@ const AllTypesProps = {
|
|
|
996
996
|
DisputeOnRequestInput: {
|
|
997
997
|
document: "JSONObject"
|
|
998
998
|
},
|
|
999
|
+
DocumentAction: "enum",
|
|
999
1000
|
EditBranchInput: {},
|
|
1000
1001
|
EditContributorInput: {},
|
|
1001
1002
|
EditProjectInput: {},
|
|
@@ -1023,6 +1024,7 @@ const AllTypesProps = {
|
|
|
1023
1024
|
GetContributorInput: {},
|
|
1024
1025
|
GetDebtInput: {},
|
|
1025
1026
|
GetDocumentsInput: {
|
|
1027
|
+
actions: "DocumentAction",
|
|
1026
1028
|
filter: "JSON"
|
|
1027
1029
|
},
|
|
1028
1030
|
GetExpenseInput: {},
|
|
@@ -1037,6 +1039,7 @@ const AllTypesProps = {
|
|
|
1037
1039
|
GetLedgerInput: {},
|
|
1038
1040
|
GetMeetInput: {},
|
|
1039
1041
|
GetMeetsInput: {},
|
|
1042
|
+
GetOneCoopDocumentsInput: {},
|
|
1040
1043
|
GetPaymentMethodsInput: {},
|
|
1041
1044
|
GetProgramInvestInput: {},
|
|
1042
1045
|
GetProjectInput: {},
|
|
@@ -1305,6 +1308,9 @@ const AllTypesProps = {
|
|
|
1305
1308
|
chairmanDeclineApprove: {
|
|
1306
1309
|
data: "DeclineApproveInput"
|
|
1307
1310
|
},
|
|
1311
|
+
chatcoopCreateAccount: {
|
|
1312
|
+
data: "CreateMatrixAccountInputDTO"
|
|
1313
|
+
},
|
|
1308
1314
|
completeRequest: {
|
|
1309
1315
|
data: "CompleteRequestInput"
|
|
1310
1316
|
},
|
|
@@ -1317,9 +1323,6 @@ const AllTypesProps = {
|
|
|
1317
1323
|
confirmSupplyOnRequest: {
|
|
1318
1324
|
data: "ConfirmSupplyOnRequestInput"
|
|
1319
1325
|
},
|
|
1320
|
-
chatcoopCreateAccount: {
|
|
1321
|
-
data: "CreateMatrixAccountInputDTO"
|
|
1322
|
-
},
|
|
1323
1326
|
createAnnualGeneralMeet: {
|
|
1324
1327
|
data: "CreateAnnualGeneralMeetInput"
|
|
1325
1328
|
},
|
|
@@ -1798,6 +1801,9 @@ const AllTypesProps = {
|
|
|
1798
1801
|
getUserWebPushSubscriptions: {
|
|
1799
1802
|
data: "GetUserSubscriptionsInput"
|
|
1800
1803
|
},
|
|
1804
|
+
onecoopGetDocuments: {
|
|
1805
|
+
data: "GetOneCoopDocumentsInput"
|
|
1806
|
+
},
|
|
1801
1807
|
searchPrivateAccounts: {
|
|
1802
1808
|
data: "SearchPrivateAccountsInput"
|
|
1803
1809
|
}
|
|
@@ -2850,8 +2856,10 @@ const ReturnTypes = {
|
|
|
2850
2856
|
value: "JSON"
|
|
2851
2857
|
},
|
|
2852
2858
|
Desktop: {
|
|
2859
|
+
authorizedHome: "String",
|
|
2853
2860
|
coopname: "String",
|
|
2854
2861
|
layout: "String",
|
|
2862
|
+
nonAuthorizedHome: "String",
|
|
2855
2863
|
workspaces: "DesktopWorkspace"
|
|
2856
2864
|
},
|
|
2857
2865
|
DesktopConfig: {
|
|
@@ -3221,11 +3229,11 @@ const ReturnTypes = {
|
|
|
3221
3229
|
capitalUpdateStory: "CapitalStory",
|
|
3222
3230
|
chairmanConfirmApprove: "Approval",
|
|
3223
3231
|
chairmanDeclineApprove: "Approval",
|
|
3232
|
+
chatcoopCreateAccount: "Boolean",
|
|
3224
3233
|
completeRequest: "Transaction",
|
|
3225
3234
|
confirmAgreement: "Transaction",
|
|
3226
3235
|
confirmReceiveOnRequest: "Transaction",
|
|
3227
3236
|
confirmSupplyOnRequest: "Transaction",
|
|
3228
|
-
chatcoopCreateAccount: "Boolean",
|
|
3229
3237
|
createAnnualGeneralMeet: "MeetAggregate",
|
|
3230
3238
|
createBankAccount: "PaymentMethod",
|
|
3231
3239
|
createBranch: "Branch",
|
|
@@ -3305,6 +3313,20 @@ const ReturnTypes = {
|
|
|
3305
3313
|
updateSystem: "SystemInfo",
|
|
3306
3314
|
voteOnAnnualGeneralMeet: "MeetAggregate"
|
|
3307
3315
|
},
|
|
3316
|
+
OneCoopDocumentOutput: {
|
|
3317
|
+
action: "String",
|
|
3318
|
+
block_num: "Int",
|
|
3319
|
+
data: "JSON",
|
|
3320
|
+
hash: "String",
|
|
3321
|
+
package: "String"
|
|
3322
|
+
},
|
|
3323
|
+
OneCoopDocumentsResponse: {
|
|
3324
|
+
current_page: "Int",
|
|
3325
|
+
items: "OneCoopDocumentOutput",
|
|
3326
|
+
max_block_num: "Int",
|
|
3327
|
+
total_count: "Int",
|
|
3328
|
+
total_pages: "Int"
|
|
3329
|
+
},
|
|
3308
3330
|
Organization: {
|
|
3309
3331
|
city: "String",
|
|
3310
3332
|
country: "String",
|
|
@@ -3639,6 +3661,7 @@ const ReturnTypes = {
|
|
|
3639
3661
|
getSystemInfo: "SystemInfo",
|
|
3640
3662
|
getUserWebPushSubscriptions: "WebPushSubscriptionDto",
|
|
3641
3663
|
getWebPushSubscriptionStats: "SubscriptionStatsDto",
|
|
3664
|
+
onecoopGetDocuments: "OneCoopDocumentsResponse",
|
|
3642
3665
|
searchPrivateAccounts: "PrivateAccountSearchResult"
|
|
3643
3666
|
},
|
|
3644
3667
|
Question: {
|
|
@@ -4413,6 +4436,13 @@ var DebtStatus = /* @__PURE__ */ ((DebtStatus2) => {
|
|
|
4413
4436
|
DebtStatus2["UNDEFINED"] = "UNDEFINED";
|
|
4414
4437
|
return DebtStatus2;
|
|
4415
4438
|
})(DebtStatus || {});
|
|
4439
|
+
var DocumentAction = /* @__PURE__ */ ((DocumentAction2) => {
|
|
4440
|
+
DocumentAction2["CONTRIBUTE"] = "CONTRIBUTE";
|
|
4441
|
+
DocumentAction2["JOINCOOP"] = "JOINCOOP";
|
|
4442
|
+
DocumentAction2["REGCOOP"] = "REGCOOP";
|
|
4443
|
+
DocumentAction2["WITHDRAW"] = "WITHDRAW";
|
|
4444
|
+
return DocumentAction2;
|
|
4445
|
+
})(DocumentAction || {});
|
|
4416
4446
|
var ExpenseStatus = /* @__PURE__ */ ((ExpenseStatus2) => {
|
|
4417
4447
|
ExpenseStatus2["APPROVED"] = "APPROVED";
|
|
4418
4448
|
ExpenseStatus2["CANCELLED"] = "CANCELLED";
|
|
@@ -4561,7 +4591,7 @@ var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
|
|
|
4561
4591
|
return UserStatus2;
|
|
4562
4592
|
})(UserStatus || {});
|
|
4563
4593
|
|
|
4564
|
-
const index$
|
|
4594
|
+
const index$G = {
|
|
4565
4595
|
__proto__: null,
|
|
4566
4596
|
$: $,
|
|
4567
4597
|
AccountType: AccountType,
|
|
@@ -4573,6 +4603,7 @@ const index$F = {
|
|
|
4573
4603
|
Country: Country,
|
|
4574
4604
|
CycleStatus: CycleStatus,
|
|
4575
4605
|
DebtStatus: DebtStatus,
|
|
4606
|
+
DocumentAction: DocumentAction,
|
|
4576
4607
|
ExpenseStatus: ExpenseStatus,
|
|
4577
4608
|
ExtendedMeetStatus: ExtendedMeetStatus,
|
|
4578
4609
|
GRAPHQL_TYPE_SEPARATOR: GRAPHQL_TYPE_SEPARATOR,
|
|
@@ -4992,37 +5023,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
|
|
|
4992
5023
|
rawRegisteredAccountSelector
|
|
4993
5024
|
);
|
|
4994
5025
|
|
|
4995
|
-
const name$
|
|
5026
|
+
const name$3p = "registerAccount";
|
|
4996
5027
|
const mutation$2s = Selector("Mutation")({
|
|
4997
|
-
[name$
|
|
5028
|
+
[name$3p]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
|
|
4998
5029
|
});
|
|
4999
5030
|
|
|
5000
5031
|
const registerAccount = {
|
|
5001
5032
|
__proto__: null,
|
|
5002
5033
|
mutation: mutation$2s,
|
|
5003
|
-
name: name$
|
|
5034
|
+
name: name$3p
|
|
5004
5035
|
};
|
|
5005
5036
|
|
|
5006
|
-
const name$
|
|
5037
|
+
const name$3o = "resetKey";
|
|
5007
5038
|
const mutation$2r = Selector("Mutation")({
|
|
5008
|
-
[name$
|
|
5039
|
+
[name$3o]: [{ data: $("data", "ResetKeyInput!") }, true]
|
|
5009
5040
|
});
|
|
5010
5041
|
|
|
5011
5042
|
const resetKey = {
|
|
5012
5043
|
__proto__: null,
|
|
5013
5044
|
mutation: mutation$2r,
|
|
5014
|
-
name: name$
|
|
5045
|
+
name: name$3o
|
|
5015
5046
|
};
|
|
5016
5047
|
|
|
5017
|
-
const name$
|
|
5048
|
+
const name$3n = "startResetKey";
|
|
5018
5049
|
const mutation$2q = Selector("Mutation")({
|
|
5019
|
-
[name$
|
|
5050
|
+
[name$3n]: [{ data: $("data", "StartResetKeyInput!") }, true]
|
|
5020
5051
|
});
|
|
5021
5052
|
|
|
5022
5053
|
const startResetKey = {
|
|
5023
5054
|
__proto__: null,
|
|
5024
5055
|
mutation: mutation$2q,
|
|
5025
|
-
name: name$
|
|
5056
|
+
name: name$3n
|
|
5026
5057
|
};
|
|
5027
5058
|
|
|
5028
5059
|
const paginationSelector = {
|
|
@@ -6016,6 +6047,23 @@ const rawSubscriptionStatsSelector = {
|
|
|
6016
6047
|
};
|
|
6017
6048
|
Selector("SubscriptionStatsDto")(rawSubscriptionStatsSelector);
|
|
6018
6049
|
|
|
6050
|
+
const rawOneCoopDocumentSelector = {
|
|
6051
|
+
action: true,
|
|
6052
|
+
block_num: true,
|
|
6053
|
+
package: true,
|
|
6054
|
+
hash: true,
|
|
6055
|
+
data: true
|
|
6056
|
+
};
|
|
6057
|
+
const oneCoopDocumentSelector = Selector("OneCoopDocumentOutput")(rawOneCoopDocumentSelector);
|
|
6058
|
+
|
|
6059
|
+
const oneCoopDocumentsPaginationSelector = {
|
|
6060
|
+
items: oneCoopDocumentSelector,
|
|
6061
|
+
total_count: true,
|
|
6062
|
+
total_pages: true,
|
|
6063
|
+
current_page: true,
|
|
6064
|
+
max_block_num: true
|
|
6065
|
+
};
|
|
6066
|
+
|
|
6019
6067
|
const rawPaymentMethodSelector = {
|
|
6020
6068
|
data: {
|
|
6021
6069
|
"__typename": true,
|
|
@@ -6216,18 +6264,18 @@ const rawCreateWithdrawResponseSelector = {
|
|
|
6216
6264
|
};
|
|
6217
6265
|
const createWithdrawResponseSelector = Selector("CreateWithdrawResponse")(rawCreateWithdrawResponseSelector);
|
|
6218
6266
|
|
|
6219
|
-
const name$
|
|
6267
|
+
const name$3m = "updateAccount";
|
|
6220
6268
|
const mutation$2p = Selector("Mutation")({
|
|
6221
|
-
[name$
|
|
6269
|
+
[name$3m]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
|
|
6222
6270
|
});
|
|
6223
6271
|
|
|
6224
6272
|
const updateAccount = {
|
|
6225
6273
|
__proto__: null,
|
|
6226
6274
|
mutation: mutation$2p,
|
|
6227
|
-
name: name$
|
|
6275
|
+
name: name$3m
|
|
6228
6276
|
};
|
|
6229
6277
|
|
|
6230
|
-
const index$
|
|
6278
|
+
const index$F = {
|
|
6231
6279
|
__proto__: null,
|
|
6232
6280
|
RegisterAccount: registerAccount,
|
|
6233
6281
|
ResetKey: resetKey,
|
|
@@ -6235,84 +6283,84 @@ const index$E = {
|
|
|
6235
6283
|
UpdateAccount: updateAccount
|
|
6236
6284
|
};
|
|
6237
6285
|
|
|
6238
|
-
const name$
|
|
6286
|
+
const name$3l = "generatePrivacyAgreement";
|
|
6239
6287
|
const mutation$2o = Selector("Mutation")({
|
|
6240
|
-
[name$
|
|
6288
|
+
[name$3l]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6241
6289
|
});
|
|
6242
6290
|
|
|
6243
6291
|
const generatePrivacyAgreement = {
|
|
6244
6292
|
__proto__: null,
|
|
6245
6293
|
mutation: mutation$2o,
|
|
6246
|
-
name: name$
|
|
6294
|
+
name: name$3l
|
|
6247
6295
|
};
|
|
6248
6296
|
|
|
6249
|
-
const name$
|
|
6297
|
+
const name$3k = "generateSignatureAgreement";
|
|
6250
6298
|
const mutation$2n = Selector("Mutation")({
|
|
6251
|
-
[name$
|
|
6299
|
+
[name$3k]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6252
6300
|
});
|
|
6253
6301
|
|
|
6254
6302
|
const generateSignatureAgreement = {
|
|
6255
6303
|
__proto__: null,
|
|
6256
6304
|
mutation: mutation$2n,
|
|
6257
|
-
name: name$
|
|
6305
|
+
name: name$3k
|
|
6258
6306
|
};
|
|
6259
6307
|
|
|
6260
|
-
const name$
|
|
6308
|
+
const name$3j = "generateWalletAgreement";
|
|
6261
6309
|
const mutation$2m = Selector("Mutation")({
|
|
6262
|
-
[name$
|
|
6310
|
+
[name$3j]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6263
6311
|
});
|
|
6264
6312
|
|
|
6265
6313
|
const generateWalletAgreement = {
|
|
6266
6314
|
__proto__: null,
|
|
6267
6315
|
mutation: mutation$2m,
|
|
6268
|
-
name: name$
|
|
6316
|
+
name: name$3j
|
|
6269
6317
|
};
|
|
6270
6318
|
|
|
6271
|
-
const name$
|
|
6319
|
+
const name$3i = "generateUserAgreement";
|
|
6272
6320
|
const mutation$2l = Selector("Mutation")({
|
|
6273
|
-
[name$
|
|
6321
|
+
[name$3i]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6274
6322
|
});
|
|
6275
6323
|
|
|
6276
6324
|
const generateUserAgreement = {
|
|
6277
6325
|
__proto__: null,
|
|
6278
6326
|
mutation: mutation$2l,
|
|
6279
|
-
name: name$
|
|
6327
|
+
name: name$3i
|
|
6280
6328
|
};
|
|
6281
6329
|
|
|
6282
|
-
const name$
|
|
6330
|
+
const name$3h = "sendAgreement";
|
|
6283
6331
|
const mutation$2k = Selector("Mutation")({
|
|
6284
|
-
[name$
|
|
6332
|
+
[name$3h]: [{ data: $("data", "SendAgreementInput!") }, rawTransactionSelector]
|
|
6285
6333
|
});
|
|
6286
6334
|
|
|
6287
6335
|
const sendAgreement = {
|
|
6288
6336
|
__proto__: null,
|
|
6289
6337
|
mutation: mutation$2k,
|
|
6290
|
-
name: name$
|
|
6338
|
+
name: name$3h
|
|
6291
6339
|
};
|
|
6292
6340
|
|
|
6293
|
-
const name$
|
|
6341
|
+
const name$3g = "confirmAgreement";
|
|
6294
6342
|
const mutation$2j = Selector("Mutation")({
|
|
6295
|
-
[name$
|
|
6343
|
+
[name$3g]: [{ data: $("data", "ConfirmAgreementInput!") }, rawTransactionSelector]
|
|
6296
6344
|
});
|
|
6297
6345
|
|
|
6298
6346
|
const confirmAgreement = {
|
|
6299
6347
|
__proto__: null,
|
|
6300
6348
|
mutation: mutation$2j,
|
|
6301
|
-
name: name$
|
|
6349
|
+
name: name$3g
|
|
6302
6350
|
};
|
|
6303
6351
|
|
|
6304
|
-
const name$
|
|
6352
|
+
const name$3f = "declineAgreement";
|
|
6305
6353
|
const mutation$2i = Selector("Mutation")({
|
|
6306
|
-
[name$
|
|
6354
|
+
[name$3f]: [{ data: $("data", "DeclineAgreementInput!") }, rawTransactionSelector]
|
|
6307
6355
|
});
|
|
6308
6356
|
|
|
6309
6357
|
const declineAgreement = {
|
|
6310
6358
|
__proto__: null,
|
|
6311
6359
|
mutation: mutation$2i,
|
|
6312
|
-
name: name$
|
|
6360
|
+
name: name$3f
|
|
6313
6361
|
};
|
|
6314
6362
|
|
|
6315
|
-
const index$
|
|
6363
|
+
const index$E = {
|
|
6316
6364
|
__proto__: null,
|
|
6317
6365
|
ConfirmAgreement: confirmAgreement,
|
|
6318
6366
|
DeclineAgreement: declineAgreement,
|
|
@@ -6323,124 +6371,124 @@ const index$D = {
|
|
|
6323
6371
|
SendAgreement: sendAgreement
|
|
6324
6372
|
};
|
|
6325
6373
|
|
|
6326
|
-
const name$
|
|
6374
|
+
const name$3e = "refresh";
|
|
6327
6375
|
const mutation$2h = Selector("Mutation")({
|
|
6328
|
-
[name$
|
|
6376
|
+
[name$3e]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
|
|
6329
6377
|
});
|
|
6330
6378
|
|
|
6331
6379
|
const refresh = {
|
|
6332
6380
|
__proto__: null,
|
|
6333
6381
|
mutation: mutation$2h,
|
|
6334
|
-
name: name$
|
|
6382
|
+
name: name$3e
|
|
6335
6383
|
};
|
|
6336
6384
|
|
|
6337
|
-
const name$
|
|
6385
|
+
const name$3d = "logout";
|
|
6338
6386
|
const mutation$2g = Selector("Mutation")({
|
|
6339
|
-
[name$
|
|
6387
|
+
[name$3d]: [{ data: $("data", "LogoutInput!") }, true]
|
|
6340
6388
|
});
|
|
6341
6389
|
|
|
6342
6390
|
const logout = {
|
|
6343
6391
|
__proto__: null,
|
|
6344
6392
|
mutation: mutation$2g,
|
|
6345
|
-
name: name$
|
|
6393
|
+
name: name$3d
|
|
6346
6394
|
};
|
|
6347
6395
|
|
|
6348
|
-
const name$
|
|
6396
|
+
const name$3c = "login";
|
|
6349
6397
|
const mutation$2f = Selector("Mutation")({
|
|
6350
|
-
[name$
|
|
6398
|
+
[name$3c]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
|
|
6351
6399
|
});
|
|
6352
6400
|
|
|
6353
6401
|
const login = {
|
|
6354
6402
|
__proto__: null,
|
|
6355
6403
|
mutation: mutation$2f,
|
|
6356
|
-
name: name$
|
|
6404
|
+
name: name$3c
|
|
6357
6405
|
};
|
|
6358
6406
|
|
|
6359
|
-
const index$
|
|
6407
|
+
const index$D = {
|
|
6360
6408
|
__proto__: null,
|
|
6361
6409
|
Login: login,
|
|
6362
6410
|
Logout: logout,
|
|
6363
6411
|
Refresh: refresh
|
|
6364
6412
|
};
|
|
6365
6413
|
|
|
6366
|
-
const name$
|
|
6414
|
+
const name$3b = "addTrustedAccount";
|
|
6367
6415
|
const mutation$2e = Selector("Mutation")({
|
|
6368
|
-
[name$
|
|
6416
|
+
[name$3b]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
|
|
6369
6417
|
});
|
|
6370
6418
|
|
|
6371
6419
|
const addTrustedAccount = {
|
|
6372
6420
|
__proto__: null,
|
|
6373
6421
|
mutation: mutation$2e,
|
|
6374
|
-
name: name$
|
|
6422
|
+
name: name$3b
|
|
6375
6423
|
};
|
|
6376
6424
|
|
|
6377
|
-
const name$
|
|
6425
|
+
const name$3a = "createBranch";
|
|
6378
6426
|
const mutation$2d = Selector("Mutation")({
|
|
6379
|
-
[name$
|
|
6427
|
+
[name$3a]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
|
|
6380
6428
|
});
|
|
6381
6429
|
|
|
6382
6430
|
const createBranch = {
|
|
6383
6431
|
__proto__: null,
|
|
6384
6432
|
mutation: mutation$2d,
|
|
6385
|
-
name: name$
|
|
6433
|
+
name: name$3a
|
|
6386
6434
|
};
|
|
6387
6435
|
|
|
6388
|
-
const name$
|
|
6436
|
+
const name$39 = "deleteBranch";
|
|
6389
6437
|
const mutation$2c = Selector("Mutation")({
|
|
6390
|
-
[name$
|
|
6438
|
+
[name$39]: [{ data: $("data", "DeleteBranchInput!") }, true]
|
|
6391
6439
|
});
|
|
6392
6440
|
|
|
6393
6441
|
const deleteBranch = {
|
|
6394
6442
|
__proto__: null,
|
|
6395
6443
|
mutation: mutation$2c,
|
|
6396
|
-
name: name$
|
|
6444
|
+
name: name$39
|
|
6397
6445
|
};
|
|
6398
6446
|
|
|
6399
|
-
const name$
|
|
6447
|
+
const name$38 = "deleteTrustedAccount";
|
|
6400
6448
|
const mutation$2b = Selector("Mutation")({
|
|
6401
|
-
[name$
|
|
6449
|
+
[name$38]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
|
|
6402
6450
|
});
|
|
6403
6451
|
|
|
6404
6452
|
const deleteTrustedAccount = {
|
|
6405
6453
|
__proto__: null,
|
|
6406
6454
|
mutation: mutation$2b,
|
|
6407
|
-
name: name$
|
|
6455
|
+
name: name$38
|
|
6408
6456
|
};
|
|
6409
6457
|
|
|
6410
|
-
const name$
|
|
6458
|
+
const name$37 = "editBranch";
|
|
6411
6459
|
const mutation$2a = Selector("Mutation")({
|
|
6412
|
-
[name$
|
|
6460
|
+
[name$37]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
|
|
6413
6461
|
});
|
|
6414
6462
|
|
|
6415
6463
|
const editBranch = {
|
|
6416
6464
|
__proto__: null,
|
|
6417
6465
|
mutation: mutation$2a,
|
|
6418
|
-
name: name$
|
|
6466
|
+
name: name$37
|
|
6419
6467
|
};
|
|
6420
6468
|
|
|
6421
|
-
const name$
|
|
6469
|
+
const name$36 = "generateSelectBranchDocument";
|
|
6422
6470
|
const mutation$29 = Selector("Mutation")({
|
|
6423
|
-
[name$
|
|
6471
|
+
[name$36]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6424
6472
|
});
|
|
6425
6473
|
|
|
6426
6474
|
const generateSelectBranchDocument = {
|
|
6427
6475
|
__proto__: null,
|
|
6428
6476
|
mutation: mutation$29,
|
|
6429
|
-
name: name$
|
|
6477
|
+
name: name$36
|
|
6430
6478
|
};
|
|
6431
6479
|
|
|
6432
|
-
const name$
|
|
6480
|
+
const name$35 = "selectBranch";
|
|
6433
6481
|
const mutation$28 = Selector("Mutation")({
|
|
6434
|
-
[name$
|
|
6482
|
+
[name$35]: [{ data: $("data", "SelectBranchInput!") }, true]
|
|
6435
6483
|
});
|
|
6436
6484
|
|
|
6437
6485
|
const selectBranch = {
|
|
6438
6486
|
__proto__: null,
|
|
6439
6487
|
mutation: mutation$28,
|
|
6440
|
-
name: name$
|
|
6488
|
+
name: name$35
|
|
6441
6489
|
};
|
|
6442
6490
|
|
|
6443
|
-
const index$
|
|
6491
|
+
const index$C = {
|
|
6444
6492
|
__proto__: null,
|
|
6445
6493
|
AddTrustedAccount: addTrustedAccount,
|
|
6446
6494
|
CreateBranch: createBranch,
|
|
@@ -6451,733 +6499,733 @@ const index$B = {
|
|
|
6451
6499
|
SelectBranch: selectBranch
|
|
6452
6500
|
};
|
|
6453
6501
|
|
|
6454
|
-
const name$
|
|
6502
|
+
const name$34 = "capitalSetConfig";
|
|
6455
6503
|
const mutation$27 = Selector("Mutation")({
|
|
6456
|
-
[name$
|
|
6504
|
+
[name$34]: [{ data: $("data", "SetConfigInput!") }, rawTransactionSelector]
|
|
6457
6505
|
});
|
|
6458
6506
|
|
|
6459
6507
|
const setConfig = {
|
|
6460
6508
|
__proto__: null,
|
|
6461
6509
|
mutation: mutation$27,
|
|
6462
|
-
name: name$
|
|
6510
|
+
name: name$34
|
|
6463
6511
|
};
|
|
6464
6512
|
|
|
6465
|
-
const name$
|
|
6513
|
+
const name$33 = "capitalCreateProject";
|
|
6466
6514
|
const mutation$26 = Selector("Mutation")({
|
|
6467
|
-
[name$
|
|
6515
|
+
[name$33]: [{ data: $("data", "CreateProjectInput!") }, rawTransactionSelector]
|
|
6468
6516
|
});
|
|
6469
6517
|
|
|
6470
6518
|
const createProject = {
|
|
6471
6519
|
__proto__: null,
|
|
6472
6520
|
mutation: mutation$26,
|
|
6473
|
-
name: name$
|
|
6521
|
+
name: name$33
|
|
6474
6522
|
};
|
|
6475
6523
|
|
|
6476
|
-
const name$
|
|
6524
|
+
const name$32 = "capitalCreateDebt";
|
|
6477
6525
|
const mutation$25 = Selector("Mutation")({
|
|
6478
|
-
[name$
|
|
6526
|
+
[name$32]: [{ data: $("data", "CreateDebtInput!") }, rawTransactionSelector]
|
|
6479
6527
|
});
|
|
6480
6528
|
|
|
6481
6529
|
const createDebt = {
|
|
6482
6530
|
__proto__: null,
|
|
6483
6531
|
mutation: mutation$25,
|
|
6484
|
-
name: name$
|
|
6532
|
+
name: name$32
|
|
6485
6533
|
};
|
|
6486
6534
|
|
|
6487
|
-
const name$
|
|
6535
|
+
const name$31 = "capitalFundProgram";
|
|
6488
6536
|
const mutation$24 = Selector("Mutation")({
|
|
6489
|
-
[name$
|
|
6537
|
+
[name$31]: [{ data: $("data", "FundProgramInput!") }, rawTransactionSelector]
|
|
6490
6538
|
});
|
|
6491
6539
|
|
|
6492
6540
|
const fundProgram = {
|
|
6493
6541
|
__proto__: null,
|
|
6494
6542
|
mutation: mutation$24,
|
|
6495
|
-
name: name$
|
|
6543
|
+
name: name$31
|
|
6496
6544
|
};
|
|
6497
6545
|
|
|
6498
|
-
const name$
|
|
6546
|
+
const name$30 = "capitalFundProject";
|
|
6499
6547
|
const mutation$23 = Selector("Mutation")({
|
|
6500
|
-
[name$
|
|
6548
|
+
[name$30]: [{ data: $("data", "FundProjectInput!") }, rawTransactionSelector]
|
|
6501
6549
|
});
|
|
6502
6550
|
|
|
6503
6551
|
const fundProject = {
|
|
6504
6552
|
__proto__: null,
|
|
6505
6553
|
mutation: mutation$23,
|
|
6506
|
-
name: name$
|
|
6554
|
+
name: name$30
|
|
6507
6555
|
};
|
|
6508
6556
|
|
|
6509
|
-
const name$
|
|
6557
|
+
const name$2$ = "capitalRefreshProgram";
|
|
6510
6558
|
const mutation$22 = Selector("Mutation")({
|
|
6511
|
-
[name$
|
|
6559
|
+
[name$2$]: [{ data: $("data", "RefreshProgramInput!") }, rawTransactionSelector]
|
|
6512
6560
|
});
|
|
6513
6561
|
|
|
6514
6562
|
const refreshProgram = {
|
|
6515
6563
|
__proto__: null,
|
|
6516
6564
|
mutation: mutation$22,
|
|
6517
|
-
name: name$
|
|
6565
|
+
name: name$2$
|
|
6518
6566
|
};
|
|
6519
6567
|
|
|
6520
|
-
const name$
|
|
6568
|
+
const name$2_ = "capitalRefreshProject";
|
|
6521
6569
|
const mutation$21 = Selector("Mutation")({
|
|
6522
|
-
[name$
|
|
6570
|
+
[name$2_]: [{ data: $("data", "RefreshProjectInput!") }, rawTransactionSelector]
|
|
6523
6571
|
});
|
|
6524
6572
|
|
|
6525
6573
|
const refreshProject = {
|
|
6526
6574
|
__proto__: null,
|
|
6527
6575
|
mutation: mutation$21,
|
|
6528
|
-
name: name$
|
|
6576
|
+
name: name$2_
|
|
6529
6577
|
};
|
|
6530
6578
|
|
|
6531
|
-
const name$
|
|
6579
|
+
const name$2Z = "capitalCreateCommit";
|
|
6532
6580
|
const mutation$20 = Selector("Mutation")({
|
|
6533
|
-
[name$
|
|
6581
|
+
[name$2Z]: [{ data: $("data", "CreateCommitInput!") }, rawTransactionSelector]
|
|
6534
6582
|
});
|
|
6535
6583
|
|
|
6536
6584
|
const createCommit = {
|
|
6537
6585
|
__proto__: null,
|
|
6538
6586
|
mutation: mutation$20,
|
|
6539
|
-
name: name$
|
|
6587
|
+
name: name$2Z
|
|
6540
6588
|
};
|
|
6541
6589
|
|
|
6542
|
-
const name$
|
|
6590
|
+
const name$2Y = "capitalApproveCommit";
|
|
6543
6591
|
const mutation$1$ = Selector("Mutation")({
|
|
6544
|
-
[name$
|
|
6592
|
+
[name$2Y]: [{ data: $("data", "CommitApproveInput!") }, rawCommitSelector]
|
|
6545
6593
|
});
|
|
6546
6594
|
|
|
6547
6595
|
const approveCommit = {
|
|
6548
6596
|
__proto__: null,
|
|
6549
6597
|
mutation: mutation$1$,
|
|
6550
|
-
name: name$
|
|
6598
|
+
name: name$2Y
|
|
6551
6599
|
};
|
|
6552
6600
|
|
|
6553
|
-
const name$
|
|
6601
|
+
const name$2X = "capitalDeclineCommit";
|
|
6554
6602
|
const mutation$1_ = Selector("Mutation")({
|
|
6555
|
-
[name$
|
|
6603
|
+
[name$2X]: [{ data: $("data", "CommitDeclineInput!") }, rawCommitSelector]
|
|
6556
6604
|
});
|
|
6557
6605
|
|
|
6558
6606
|
const declineCommit = {
|
|
6559
6607
|
__proto__: null,
|
|
6560
6608
|
mutation: mutation$1_,
|
|
6561
|
-
name: name$
|
|
6609
|
+
name: name$2X
|
|
6562
6610
|
};
|
|
6563
6611
|
|
|
6564
|
-
const name$
|
|
6612
|
+
const name$2W = "capitalRefreshSegment";
|
|
6565
6613
|
const mutation$1Z = Selector("Mutation")({
|
|
6566
|
-
[name$
|
|
6614
|
+
[name$2W]: [{ data: $("data", "RefreshSegmentInput!") }, rawSegmentSelector]
|
|
6567
6615
|
});
|
|
6568
6616
|
|
|
6569
6617
|
const refreshSegment = {
|
|
6570
6618
|
__proto__: null,
|
|
6571
6619
|
mutation: mutation$1Z,
|
|
6572
|
-
name: name$
|
|
6620
|
+
name: name$2W
|
|
6573
6621
|
};
|
|
6574
6622
|
|
|
6575
|
-
const name$
|
|
6623
|
+
const name$2V = "capitalCreateProjectInvest";
|
|
6576
6624
|
const mutation$1Y = Selector("Mutation")({
|
|
6577
|
-
[name$
|
|
6625
|
+
[name$2V]: [{ data: $("data", "CreateProjectInvestInput!") }, rawTransactionSelector]
|
|
6578
6626
|
});
|
|
6579
6627
|
|
|
6580
6628
|
const createProjectInvest = {
|
|
6581
6629
|
__proto__: null,
|
|
6582
6630
|
mutation: mutation$1Y,
|
|
6583
|
-
name: name$
|
|
6631
|
+
name: name$2V
|
|
6584
6632
|
};
|
|
6585
6633
|
|
|
6586
|
-
const name$
|
|
6634
|
+
const name$2U = "capitalRegisterContributor";
|
|
6587
6635
|
const mutation$1X = Selector("Mutation")({
|
|
6588
|
-
[name$
|
|
6636
|
+
[name$2U]: [{ data: $("data", "RegisterContributorInput!") }, rawTransactionSelector]
|
|
6589
6637
|
});
|
|
6590
6638
|
|
|
6591
6639
|
const registerContributor = {
|
|
6592
6640
|
__proto__: null,
|
|
6593
6641
|
mutation: mutation$1X,
|
|
6594
|
-
name: name$
|
|
6642
|
+
name: name$2U
|
|
6595
6643
|
};
|
|
6596
6644
|
|
|
6597
|
-
const name$
|
|
6645
|
+
const name$2T = "capitalImportContributor";
|
|
6598
6646
|
const mutation$1W = Selector("Mutation")({
|
|
6599
|
-
[name$
|
|
6647
|
+
[name$2T]: [{ data: $("data", "ImportContributorInput!") }, rawTransactionSelector]
|
|
6600
6648
|
});
|
|
6601
6649
|
|
|
6602
6650
|
const importContributor = {
|
|
6603
6651
|
__proto__: null,
|
|
6604
6652
|
mutation: mutation$1W,
|
|
6605
|
-
name: name$
|
|
6653
|
+
name: name$2T
|
|
6606
6654
|
};
|
|
6607
6655
|
|
|
6608
|
-
const name$
|
|
6656
|
+
const name$2S = "capitalMakeClearance";
|
|
6609
6657
|
const mutation$1V = Selector("Mutation")({
|
|
6610
|
-
[name$
|
|
6658
|
+
[name$2S]: [{ data: $("data", "MakeClearanceInput!") }, rawTransactionSelector]
|
|
6611
6659
|
});
|
|
6612
6660
|
|
|
6613
6661
|
const makeClearance = {
|
|
6614
6662
|
__proto__: null,
|
|
6615
6663
|
mutation: mutation$1V,
|
|
6616
|
-
name: name$
|
|
6664
|
+
name: name$2S
|
|
6617
6665
|
};
|
|
6618
6666
|
|
|
6619
|
-
const name$
|
|
6667
|
+
const name$2R = "capitalSetMaster";
|
|
6620
6668
|
const mutation$1U = Selector("Mutation")({
|
|
6621
|
-
[name$
|
|
6669
|
+
[name$2R]: [{ data: $("data", "SetMasterInput!") }, rawTransactionSelector]
|
|
6622
6670
|
});
|
|
6623
6671
|
|
|
6624
6672
|
const setMaster = {
|
|
6625
6673
|
__proto__: null,
|
|
6626
6674
|
mutation: mutation$1U,
|
|
6627
|
-
name: name$
|
|
6675
|
+
name: name$2R
|
|
6628
6676
|
};
|
|
6629
6677
|
|
|
6630
|
-
const name$
|
|
6678
|
+
const name$2Q = "capitalAddAuthor";
|
|
6631
6679
|
const mutation$1T = Selector("Mutation")({
|
|
6632
|
-
[name$
|
|
6680
|
+
[name$2Q]: [{ data: $("data", "AddAuthorInput!") }, rawProjectSelector]
|
|
6633
6681
|
});
|
|
6634
6682
|
|
|
6635
6683
|
const addAuthor = {
|
|
6636
6684
|
__proto__: null,
|
|
6637
6685
|
mutation: mutation$1T,
|
|
6638
|
-
name: name$
|
|
6686
|
+
name: name$2Q
|
|
6639
6687
|
};
|
|
6640
6688
|
|
|
6641
|
-
const name$
|
|
6689
|
+
const name$2P = "capitalSetPlan";
|
|
6642
6690
|
const mutation$1S = Selector("Mutation")({
|
|
6643
|
-
[name$
|
|
6691
|
+
[name$2P]: [{ data: $("data", "SetPlanInput!") }, rawProjectSelector]
|
|
6644
6692
|
});
|
|
6645
6693
|
|
|
6646
6694
|
const setPlan = {
|
|
6647
6695
|
__proto__: null,
|
|
6648
6696
|
mutation: mutation$1S,
|
|
6649
|
-
name: name$
|
|
6697
|
+
name: name$2P
|
|
6650
6698
|
};
|
|
6651
6699
|
|
|
6652
|
-
const name$
|
|
6700
|
+
const name$2O = "capitalStartProject";
|
|
6653
6701
|
const mutation$1R = Selector("Mutation")({
|
|
6654
|
-
[name$
|
|
6702
|
+
[name$2O]: [{ data: $("data", "StartProjectInput!") }, projectSelector]
|
|
6655
6703
|
});
|
|
6656
6704
|
|
|
6657
6705
|
const startProject = {
|
|
6658
6706
|
__proto__: null,
|
|
6659
6707
|
mutation: mutation$1R,
|
|
6660
|
-
name: name$
|
|
6708
|
+
name: name$2O
|
|
6661
6709
|
};
|
|
6662
6710
|
|
|
6663
|
-
const name$
|
|
6711
|
+
const name$2N = "capitalOpenProject";
|
|
6664
6712
|
const mutation$1Q = Selector("Mutation")({
|
|
6665
|
-
[name$
|
|
6713
|
+
[name$2N]: [{ data: $("data", "OpenProjectInput!") }, projectSelector]
|
|
6666
6714
|
});
|
|
6667
6715
|
|
|
6668
6716
|
const openProject = {
|
|
6669
6717
|
__proto__: null,
|
|
6670
6718
|
mutation: mutation$1Q,
|
|
6671
|
-
name: name$
|
|
6719
|
+
name: name$2N
|
|
6672
6720
|
};
|
|
6673
6721
|
|
|
6674
|
-
const name$
|
|
6722
|
+
const name$2M = "capitalCloseProject";
|
|
6675
6723
|
const mutation$1P = Selector("Mutation")({
|
|
6676
|
-
[name$
|
|
6724
|
+
[name$2M]: [{ data: $("data", "CloseProjectInput!") }, projectSelector]
|
|
6677
6725
|
});
|
|
6678
6726
|
|
|
6679
6727
|
const closeProject = {
|
|
6680
6728
|
__proto__: null,
|
|
6681
6729
|
mutation: mutation$1P,
|
|
6682
|
-
name: name$
|
|
6730
|
+
name: name$2M
|
|
6683
6731
|
};
|
|
6684
6732
|
|
|
6685
|
-
const name$
|
|
6733
|
+
const name$2L = "capitalStopProject";
|
|
6686
6734
|
const mutation$1O = Selector("Mutation")({
|
|
6687
|
-
[name$
|
|
6735
|
+
[name$2L]: [{ data: $("data", "StopProjectInput!") }, projectSelector]
|
|
6688
6736
|
});
|
|
6689
6737
|
|
|
6690
6738
|
const stopProject = {
|
|
6691
6739
|
__proto__: null,
|
|
6692
6740
|
mutation: mutation$1O,
|
|
6693
|
-
name: name$
|
|
6741
|
+
name: name$2L
|
|
6694
6742
|
};
|
|
6695
6743
|
|
|
6696
|
-
const name$
|
|
6744
|
+
const name$2K = "capitalDeleteProject";
|
|
6697
6745
|
const mutation$1N = Selector("Mutation")({
|
|
6698
|
-
[name$
|
|
6746
|
+
[name$2K]: [{ data: $("data", "DeleteProjectInput!") }, rawTransactionSelector]
|
|
6699
6747
|
});
|
|
6700
6748
|
|
|
6701
6749
|
const deleteProject = {
|
|
6702
6750
|
__proto__: null,
|
|
6703
6751
|
mutation: mutation$1N,
|
|
6704
|
-
name: name$
|
|
6752
|
+
name: name$2K
|
|
6705
6753
|
};
|
|
6706
6754
|
|
|
6707
|
-
const name$
|
|
6755
|
+
const name$2J = "capitalEditProject";
|
|
6708
6756
|
const mutation$1M = Selector("Mutation")({
|
|
6709
|
-
[name$
|
|
6757
|
+
[name$2J]: [{ data: $("data", "EditProjectInput!") }, rawTransactionSelector]
|
|
6710
6758
|
});
|
|
6711
6759
|
|
|
6712
6760
|
const editProject = {
|
|
6713
6761
|
__proto__: null,
|
|
6714
6762
|
mutation: mutation$1M,
|
|
6715
|
-
name: name$
|
|
6763
|
+
name: name$2J
|
|
6716
6764
|
};
|
|
6717
6765
|
|
|
6718
|
-
const name$
|
|
6766
|
+
const name$2I = "capitalCreateProjectProperty";
|
|
6719
6767
|
const mutation$1L = Selector("Mutation")({
|
|
6720
|
-
[name$
|
|
6768
|
+
[name$2I]: [{ data: $("data", "CreateProjectPropertyInput!") }, rawTransactionSelector]
|
|
6721
6769
|
});
|
|
6722
6770
|
|
|
6723
6771
|
const createProjectProperty = {
|
|
6724
6772
|
__proto__: null,
|
|
6725
6773
|
mutation: mutation$1L,
|
|
6726
|
-
name: name$
|
|
6774
|
+
name: name$2I
|
|
6727
6775
|
};
|
|
6728
6776
|
|
|
6729
|
-
const name$
|
|
6777
|
+
const name$2H = "capitalCreateProgramProperty";
|
|
6730
6778
|
const mutation$1K = Selector("Mutation")({
|
|
6731
|
-
[name$
|
|
6779
|
+
[name$2H]: [{ data: $("data", "CreateProgramPropertyInput!") }, rawTransactionSelector]
|
|
6732
6780
|
});
|
|
6733
6781
|
|
|
6734
6782
|
const createProgramProperty = {
|
|
6735
6783
|
__proto__: null,
|
|
6736
6784
|
mutation: mutation$1K,
|
|
6737
|
-
name: name$
|
|
6785
|
+
name: name$2H
|
|
6738
6786
|
};
|
|
6739
6787
|
|
|
6740
|
-
const name$
|
|
6788
|
+
const name$2G = "capitalPushResult";
|
|
6741
6789
|
const mutation$1J = Selector("Mutation")({
|
|
6742
|
-
[name$
|
|
6790
|
+
[name$2G]: [{ data: $("data", "PushResultInput!") }, rawSegmentSelector]
|
|
6743
6791
|
});
|
|
6744
6792
|
|
|
6745
6793
|
const pushResult = {
|
|
6746
6794
|
__proto__: null,
|
|
6747
6795
|
mutation: mutation$1J,
|
|
6748
|
-
name: name$
|
|
6796
|
+
name: name$2G
|
|
6749
6797
|
};
|
|
6750
6798
|
|
|
6751
|
-
const name$
|
|
6799
|
+
const name$2F = "capitalConvertSegment";
|
|
6752
6800
|
const mutation$1I = Selector("Mutation")({
|
|
6753
|
-
[name$
|
|
6801
|
+
[name$2F]: [{ data: $("data", "ConvertSegmentInput!") }, rawSegmentSelector]
|
|
6754
6802
|
});
|
|
6755
6803
|
|
|
6756
6804
|
const convertSegment = {
|
|
6757
6805
|
__proto__: null,
|
|
6758
6806
|
mutation: mutation$1I,
|
|
6759
|
-
name: name$
|
|
6807
|
+
name: name$2F
|
|
6760
6808
|
};
|
|
6761
6809
|
|
|
6762
|
-
const name$
|
|
6810
|
+
const name$2E = "capitalStartVoting";
|
|
6763
6811
|
const mutation$1H = Selector("Mutation")({
|
|
6764
|
-
[name$
|
|
6812
|
+
[name$2E]: [{ data: $("data", "StartVotingInput!") }, rawTransactionSelector]
|
|
6765
6813
|
});
|
|
6766
6814
|
|
|
6767
6815
|
const startVoting = {
|
|
6768
6816
|
__proto__: null,
|
|
6769
6817
|
mutation: mutation$1H,
|
|
6770
|
-
name: name$
|
|
6818
|
+
name: name$2E
|
|
6771
6819
|
};
|
|
6772
6820
|
|
|
6773
|
-
const name$
|
|
6821
|
+
const name$2D = "capitalSubmitVote";
|
|
6774
6822
|
const mutation$1G = Selector("Mutation")({
|
|
6775
|
-
[name$
|
|
6823
|
+
[name$2D]: [{ data: $("data", "SubmitVoteInput!") }, rawTransactionSelector]
|
|
6776
6824
|
});
|
|
6777
6825
|
|
|
6778
6826
|
const submitVote = {
|
|
6779
6827
|
__proto__: null,
|
|
6780
6828
|
mutation: mutation$1G,
|
|
6781
|
-
name: name$
|
|
6829
|
+
name: name$2D
|
|
6782
6830
|
};
|
|
6783
6831
|
|
|
6784
|
-
const name$
|
|
6832
|
+
const name$2C = "capitalCompleteVoting";
|
|
6785
6833
|
const mutation$1F = Selector("Mutation")({
|
|
6786
|
-
[name$
|
|
6834
|
+
[name$2C]: [{ data: $("data", "CompleteVotingInput!") }, rawTransactionSelector]
|
|
6787
6835
|
});
|
|
6788
6836
|
|
|
6789
6837
|
const completeVoting = {
|
|
6790
6838
|
__proto__: null,
|
|
6791
6839
|
mutation: mutation$1F,
|
|
6792
|
-
name: name$
|
|
6840
|
+
name: name$2C
|
|
6793
6841
|
};
|
|
6794
6842
|
|
|
6795
|
-
const name$
|
|
6843
|
+
const name$2B = "capitalCalculateVotes";
|
|
6796
6844
|
const mutation$1E = Selector("Mutation")({
|
|
6797
|
-
[name$
|
|
6845
|
+
[name$2B]: [{ data: $("data", "CalculateVotesInput!") }, rawSegmentSelector]
|
|
6798
6846
|
});
|
|
6799
6847
|
|
|
6800
6848
|
const calculateVotes = {
|
|
6801
6849
|
__proto__: null,
|
|
6802
6850
|
mutation: mutation$1E,
|
|
6803
|
-
name: name$
|
|
6851
|
+
name: name$2B
|
|
6804
6852
|
};
|
|
6805
6853
|
|
|
6806
|
-
const name$
|
|
6854
|
+
const name$2A = "capitalCreateStory";
|
|
6807
6855
|
const mutation$1D = Selector("Mutation")({
|
|
6808
|
-
[name$
|
|
6856
|
+
[name$2A]: [{ data: $("data", "CreateStoryInput!") }, rawStorySelector]
|
|
6809
6857
|
});
|
|
6810
6858
|
|
|
6811
6859
|
const createStory = {
|
|
6812
6860
|
__proto__: null,
|
|
6813
6861
|
mutation: mutation$1D,
|
|
6814
|
-
name: name$
|
|
6862
|
+
name: name$2A
|
|
6815
6863
|
};
|
|
6816
6864
|
|
|
6817
|
-
const name$
|
|
6865
|
+
const name$2z = "capitalUpdateStory";
|
|
6818
6866
|
const mutation$1C = Selector("Mutation")({
|
|
6819
|
-
[name$
|
|
6867
|
+
[name$2z]: [{ data: $("data", "UpdateStoryInput!") }, rawStorySelector]
|
|
6820
6868
|
});
|
|
6821
6869
|
|
|
6822
6870
|
const updateStory = {
|
|
6823
6871
|
__proto__: null,
|
|
6824
6872
|
mutation: mutation$1C,
|
|
6825
|
-
name: name$
|
|
6873
|
+
name: name$2z
|
|
6826
6874
|
};
|
|
6827
6875
|
|
|
6828
|
-
const name$
|
|
6876
|
+
const name$2y = "capitalDeleteStory";
|
|
6829
6877
|
const mutation$1B = Selector("Mutation")({
|
|
6830
|
-
[name$
|
|
6878
|
+
[name$2y]: [{ data: $("data", "DeleteCapitalStoryByHashInput!") }, true]
|
|
6831
6879
|
});
|
|
6832
6880
|
|
|
6833
6881
|
const deleteStory = {
|
|
6834
6882
|
__proto__: null,
|
|
6835
6883
|
mutation: mutation$1B,
|
|
6836
|
-
name: name$
|
|
6884
|
+
name: name$2y
|
|
6837
6885
|
};
|
|
6838
6886
|
|
|
6839
|
-
const name$
|
|
6887
|
+
const name$2x = "capitalCreateIssue";
|
|
6840
6888
|
const mutation$1A = Selector("Mutation")({
|
|
6841
|
-
[name$
|
|
6889
|
+
[name$2x]: [{ data: $("data", "CreateIssueInput!") }, rawIssueSelector]
|
|
6842
6890
|
});
|
|
6843
6891
|
|
|
6844
6892
|
const createIssue = {
|
|
6845
6893
|
__proto__: null,
|
|
6846
6894
|
mutation: mutation$1A,
|
|
6847
|
-
name: name$
|
|
6895
|
+
name: name$2x
|
|
6848
6896
|
};
|
|
6849
6897
|
|
|
6850
|
-
const name$
|
|
6898
|
+
const name$2w = "capitalUpdateIssue";
|
|
6851
6899
|
const mutation$1z = Selector("Mutation")({
|
|
6852
|
-
[name$
|
|
6900
|
+
[name$2w]: [{ data: $("data", "UpdateIssueInput!") }, rawIssueSelector]
|
|
6853
6901
|
});
|
|
6854
6902
|
|
|
6855
6903
|
const updateIssue = {
|
|
6856
6904
|
__proto__: null,
|
|
6857
6905
|
mutation: mutation$1z,
|
|
6858
|
-
name: name$
|
|
6906
|
+
name: name$2w
|
|
6859
6907
|
};
|
|
6860
6908
|
|
|
6861
|
-
const name$
|
|
6909
|
+
const name$2v = "capitalDeleteIssue";
|
|
6862
6910
|
const mutation$1y = Selector("Mutation")({
|
|
6863
|
-
[name$
|
|
6911
|
+
[name$2v]: [{ data: $("data", "DeleteCapitalIssueByHashInput!") }, true]
|
|
6864
6912
|
});
|
|
6865
6913
|
|
|
6866
6914
|
const deleteIssue = {
|
|
6867
6915
|
__proto__: null,
|
|
6868
6916
|
mutation: mutation$1y,
|
|
6869
|
-
name: name$
|
|
6917
|
+
name: name$2v
|
|
6870
6918
|
};
|
|
6871
6919
|
|
|
6872
|
-
const name$
|
|
6920
|
+
const name$2u = "capitalCreateCycle";
|
|
6873
6921
|
const mutation$1x = Selector("Mutation")({
|
|
6874
|
-
[name$
|
|
6922
|
+
[name$2u]: [{ data: $("data", "CreateCycleInput!") }, rawCycleSelector]
|
|
6875
6923
|
});
|
|
6876
6924
|
|
|
6877
6925
|
const createCycle = {
|
|
6878
6926
|
__proto__: null,
|
|
6879
6927
|
mutation: mutation$1x,
|
|
6880
|
-
name: name$
|
|
6928
|
+
name: name$2u
|
|
6881
6929
|
};
|
|
6882
6930
|
|
|
6883
|
-
const name$
|
|
6931
|
+
const name$2t = "capitalCreateExpense";
|
|
6884
6932
|
const mutation$1w = Selector("Mutation")({
|
|
6885
|
-
[name$
|
|
6933
|
+
[name$2t]: [{ data: $("data", "CreateExpenseInput!") }, rawTransactionSelector]
|
|
6886
6934
|
});
|
|
6887
6935
|
|
|
6888
6936
|
const createExpense = {
|
|
6889
6937
|
__proto__: null,
|
|
6890
6938
|
mutation: mutation$1w,
|
|
6891
|
-
name: name$
|
|
6939
|
+
name: name$2t
|
|
6892
6940
|
};
|
|
6893
6941
|
|
|
6894
|
-
const name$
|
|
6942
|
+
const name$2s = "capitalGenerateCapitalizationAgreement";
|
|
6895
6943
|
const mutation$1v = Selector("Mutation")({
|
|
6896
|
-
[name$
|
|
6944
|
+
[name$2s]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6897
6945
|
});
|
|
6898
6946
|
|
|
6899
6947
|
const generateCapitalizationAgreement = {
|
|
6900
6948
|
__proto__: null,
|
|
6901
6949
|
mutation: mutation$1v,
|
|
6902
|
-
name: name$
|
|
6950
|
+
name: name$2s
|
|
6903
6951
|
};
|
|
6904
6952
|
|
|
6905
|
-
const name$
|
|
6953
|
+
const name$2r = "capitalGenerateGenerationAgreement";
|
|
6906
6954
|
const mutation$1u = Selector("Mutation")({
|
|
6907
|
-
[name$
|
|
6955
|
+
[name$2r]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6908
6956
|
});
|
|
6909
6957
|
|
|
6910
6958
|
const generateGenerationAgreement = {
|
|
6911
6959
|
__proto__: null,
|
|
6912
6960
|
mutation: mutation$1u,
|
|
6913
|
-
name: name$
|
|
6961
|
+
name: name$2r
|
|
6914
6962
|
};
|
|
6915
6963
|
|
|
6916
|
-
const name$
|
|
6964
|
+
const name$2q = "capitalGenerateAppendixGenerationAgreement";
|
|
6917
6965
|
const mutation$1t = Selector("Mutation")({
|
|
6918
|
-
[name$
|
|
6966
|
+
[name$2q]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6919
6967
|
});
|
|
6920
6968
|
|
|
6921
6969
|
const generateAppendixGenerationAgreement = {
|
|
6922
6970
|
__proto__: null,
|
|
6923
6971
|
mutation: mutation$1t,
|
|
6924
|
-
name: name$
|
|
6972
|
+
name: name$2q
|
|
6925
6973
|
};
|
|
6926
6974
|
|
|
6927
|
-
const name$
|
|
6975
|
+
const name$2p = "capitalGenerateExpenseStatement";
|
|
6928
6976
|
const mutation$1s = Selector("Mutation")({
|
|
6929
|
-
[name$
|
|
6977
|
+
[name$2p]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6930
6978
|
});
|
|
6931
6979
|
|
|
6932
6980
|
const generateExpenseStatement = {
|
|
6933
6981
|
__proto__: null,
|
|
6934
6982
|
mutation: mutation$1s,
|
|
6935
|
-
name: name$
|
|
6983
|
+
name: name$2p
|
|
6936
6984
|
};
|
|
6937
6985
|
|
|
6938
|
-
const name$
|
|
6986
|
+
const name$2o = "capitalGenerateExpenseDecision";
|
|
6939
6987
|
const mutation$1r = Selector("Mutation")({
|
|
6940
|
-
[name$
|
|
6988
|
+
[name$2o]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6941
6989
|
});
|
|
6942
6990
|
|
|
6943
6991
|
const generateExpenseDecision = {
|
|
6944
6992
|
__proto__: null,
|
|
6945
6993
|
mutation: mutation$1r,
|
|
6946
|
-
name: name$
|
|
6994
|
+
name: name$2o
|
|
6947
6995
|
};
|
|
6948
6996
|
|
|
6949
|
-
const name$
|
|
6997
|
+
const name$2n = "capitalGenerateGenerationMoneyInvestStatement";
|
|
6950
6998
|
const mutation$1q = Selector("Mutation")({
|
|
6951
|
-
[name$
|
|
6999
|
+
[name$2n]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6952
7000
|
});
|
|
6953
7001
|
|
|
6954
7002
|
const generateGenerationMoneyInvestStatement = {
|
|
6955
7003
|
__proto__: null,
|
|
6956
7004
|
mutation: mutation$1q,
|
|
6957
|
-
name: name$
|
|
7005
|
+
name: name$2n
|
|
6958
7006
|
};
|
|
6959
7007
|
|
|
6960
|
-
const name$
|
|
7008
|
+
const name$2m = "capitalGenerateGenerationMoneyReturnUnusedStatement";
|
|
6961
7009
|
const mutation$1p = Selector("Mutation")({
|
|
6962
|
-
[name$
|
|
7010
|
+
[name$2m]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6963
7011
|
});
|
|
6964
7012
|
|
|
6965
7013
|
const generateGenerationMoneyReturnUnusedStatement = {
|
|
6966
7014
|
__proto__: null,
|
|
6967
7015
|
mutation: mutation$1p,
|
|
6968
|
-
name: name$
|
|
7016
|
+
name: name$2m
|
|
6969
7017
|
};
|
|
6970
7018
|
|
|
6971
|
-
const name$
|
|
7019
|
+
const name$2l = "capitalGenerateCapitalizationMoneyInvestStatement";
|
|
6972
7020
|
const mutation$1o = Selector("Mutation")({
|
|
6973
|
-
[name$
|
|
7021
|
+
[name$2l]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6974
7022
|
});
|
|
6975
7023
|
|
|
6976
7024
|
const generateCapitalizationMoneyInvestStatement = {
|
|
6977
7025
|
__proto__: null,
|
|
6978
7026
|
mutation: mutation$1o,
|
|
6979
|
-
name: name$
|
|
7027
|
+
name: name$2l
|
|
6980
7028
|
};
|
|
6981
7029
|
|
|
6982
|
-
const name$
|
|
7030
|
+
const name$2k = "capitalGenerateResultContributionStatement";
|
|
6983
7031
|
const mutation$1n = Selector("Mutation")({
|
|
6984
|
-
[name$
|
|
7032
|
+
[name$2k]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6985
7033
|
});
|
|
6986
7034
|
|
|
6987
7035
|
const generateResultContributionStatement = {
|
|
6988
7036
|
__proto__: null,
|
|
6989
7037
|
mutation: mutation$1n,
|
|
6990
|
-
name: name$
|
|
7038
|
+
name: name$2k
|
|
6991
7039
|
};
|
|
6992
7040
|
|
|
6993
|
-
const name$
|
|
7041
|
+
const name$2j = "capitalGenerateResultContributionDecision";
|
|
6994
7042
|
const mutation$1m = Selector("Mutation")({
|
|
6995
|
-
[name$
|
|
7043
|
+
[name$2j]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
6996
7044
|
});
|
|
6997
7045
|
|
|
6998
7046
|
const generateResultContributionDecision = {
|
|
6999
7047
|
__proto__: null,
|
|
7000
7048
|
mutation: mutation$1m,
|
|
7001
|
-
name: name$
|
|
7049
|
+
name: name$2j
|
|
7002
7050
|
};
|
|
7003
7051
|
|
|
7004
|
-
const name$
|
|
7052
|
+
const name$2i = "capitalGenerateResultContributionAct";
|
|
7005
7053
|
const mutation$1l = Selector("Mutation")({
|
|
7006
|
-
[name$
|
|
7054
|
+
[name$2i]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7007
7055
|
});
|
|
7008
7056
|
|
|
7009
7057
|
const generateResultContributionAct = {
|
|
7010
7058
|
__proto__: null,
|
|
7011
7059
|
mutation: mutation$1l,
|
|
7012
|
-
name: name$
|
|
7060
|
+
name: name$2i
|
|
7013
7061
|
};
|
|
7014
7062
|
|
|
7015
|
-
const name$
|
|
7063
|
+
const name$2h = "capitalGenerateGetLoanStatement";
|
|
7016
7064
|
const mutation$1k = Selector("Mutation")({
|
|
7017
|
-
[name$
|
|
7065
|
+
[name$2h]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7018
7066
|
});
|
|
7019
7067
|
|
|
7020
7068
|
const generateGetLoanStatement = {
|
|
7021
7069
|
__proto__: null,
|
|
7022
7070
|
mutation: mutation$1k,
|
|
7023
|
-
name: name$
|
|
7071
|
+
name: name$2h
|
|
7024
7072
|
};
|
|
7025
7073
|
|
|
7026
|
-
const name$
|
|
7074
|
+
const name$2g = "capitalGenerateGetLoanDecision";
|
|
7027
7075
|
const mutation$1j = Selector("Mutation")({
|
|
7028
|
-
[name$
|
|
7076
|
+
[name$2g]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7029
7077
|
});
|
|
7030
7078
|
|
|
7031
7079
|
const generateGetLoanDecision = {
|
|
7032
7080
|
__proto__: null,
|
|
7033
7081
|
mutation: mutation$1j,
|
|
7034
|
-
name: name$
|
|
7082
|
+
name: name$2g
|
|
7035
7083
|
};
|
|
7036
7084
|
|
|
7037
|
-
const name$
|
|
7085
|
+
const name$2f = "capitalGenerateGenerationPropertyInvestStatement";
|
|
7038
7086
|
const mutation$1i = Selector("Mutation")({
|
|
7039
|
-
[name$
|
|
7087
|
+
[name$2f]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7040
7088
|
});
|
|
7041
7089
|
|
|
7042
7090
|
const generateGenerationPropertyInvestStatement = {
|
|
7043
7091
|
__proto__: null,
|
|
7044
7092
|
mutation: mutation$1i,
|
|
7045
|
-
name: name$
|
|
7093
|
+
name: name$2f
|
|
7046
7094
|
};
|
|
7047
7095
|
|
|
7048
|
-
const name$
|
|
7096
|
+
const name$2e = "capitalGenerateGenerationPropertyInvestDecision";
|
|
7049
7097
|
const mutation$1h = Selector("Mutation")({
|
|
7050
|
-
[name$
|
|
7098
|
+
[name$2e]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7051
7099
|
});
|
|
7052
7100
|
|
|
7053
7101
|
const generateGenerationPropertyInvestDecision = {
|
|
7054
7102
|
__proto__: null,
|
|
7055
7103
|
mutation: mutation$1h,
|
|
7056
|
-
name: name$
|
|
7104
|
+
name: name$2e
|
|
7057
7105
|
};
|
|
7058
7106
|
|
|
7059
|
-
const name$
|
|
7107
|
+
const name$2d = "capitalGenerateGenerationPropertyInvestAct";
|
|
7060
7108
|
const mutation$1g = Selector("Mutation")({
|
|
7061
|
-
[name$
|
|
7109
|
+
[name$2d]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7062
7110
|
});
|
|
7063
7111
|
|
|
7064
7112
|
const generateGenerationPropertyInvestAct = {
|
|
7065
7113
|
__proto__: null,
|
|
7066
7114
|
mutation: mutation$1g,
|
|
7067
|
-
name: name$
|
|
7115
|
+
name: name$2d
|
|
7068
7116
|
};
|
|
7069
7117
|
|
|
7070
|
-
const name$
|
|
7118
|
+
const name$2c = "capitalGenerateCapitalizationPropertyInvestStatement";
|
|
7071
7119
|
const mutation$1f = Selector("Mutation")({
|
|
7072
|
-
[name$
|
|
7120
|
+
[name$2c]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7073
7121
|
});
|
|
7074
7122
|
|
|
7075
7123
|
const generateCapitalizationPropertyInvestStatement = {
|
|
7076
7124
|
__proto__: null,
|
|
7077
7125
|
mutation: mutation$1f,
|
|
7078
|
-
name: name$
|
|
7126
|
+
name: name$2c
|
|
7079
7127
|
};
|
|
7080
7128
|
|
|
7081
|
-
const name$
|
|
7129
|
+
const name$2b = "capitalGenerateCapitalizationPropertyInvestDecision";
|
|
7082
7130
|
const mutation$1e = Selector("Mutation")({
|
|
7083
|
-
[name$
|
|
7131
|
+
[name$2b]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7084
7132
|
});
|
|
7085
7133
|
|
|
7086
7134
|
const generateCapitalizationPropertyInvestDecision = {
|
|
7087
7135
|
__proto__: null,
|
|
7088
7136
|
mutation: mutation$1e,
|
|
7089
|
-
name: name$
|
|
7137
|
+
name: name$2b
|
|
7090
7138
|
};
|
|
7091
7139
|
|
|
7092
|
-
const name$
|
|
7140
|
+
const name$2a = "capitalGenerateCapitalizationPropertyInvestAct";
|
|
7093
7141
|
const mutation$1d = Selector("Mutation")({
|
|
7094
|
-
[name$
|
|
7142
|
+
[name$2a]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7095
7143
|
});
|
|
7096
7144
|
|
|
7097
7145
|
const generateCapitalizationPropertyInvestAct = {
|
|
7098
7146
|
__proto__: null,
|
|
7099
7147
|
mutation: mutation$1d,
|
|
7100
|
-
name: name$
|
|
7148
|
+
name: name$2a
|
|
7101
7149
|
};
|
|
7102
7150
|
|
|
7103
|
-
const name$
|
|
7151
|
+
const name$29 = "capitalGenerateGenerationToMainWalletConvertStatement";
|
|
7104
7152
|
const mutation$1c = Selector("Mutation")({
|
|
7105
|
-
[name$
|
|
7153
|
+
[name$29]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7106
7154
|
});
|
|
7107
7155
|
|
|
7108
7156
|
const generateGenerationToMainWalletConvertStatement = {
|
|
7109
7157
|
__proto__: null,
|
|
7110
7158
|
mutation: mutation$1c,
|
|
7111
|
-
name: name$
|
|
7159
|
+
name: name$29
|
|
7112
7160
|
};
|
|
7113
7161
|
|
|
7114
|
-
const name$
|
|
7162
|
+
const name$28 = "capitalGenerateGenerationToProjectConvertStatement";
|
|
7115
7163
|
const mutation$1b = Selector("Mutation")({
|
|
7116
|
-
[name$
|
|
7164
|
+
[name$28]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7117
7165
|
});
|
|
7118
7166
|
|
|
7119
7167
|
const generateGenerationToProjectConvertStatement = {
|
|
7120
7168
|
__proto__: null,
|
|
7121
7169
|
mutation: mutation$1b,
|
|
7122
|
-
name: name$
|
|
7170
|
+
name: name$28
|
|
7123
7171
|
};
|
|
7124
7172
|
|
|
7125
|
-
const name$
|
|
7173
|
+
const name$27 = "capitalGenerateGenerationToCapitalizationConvertStatement";
|
|
7126
7174
|
const mutation$1a = Selector("Mutation")({
|
|
7127
|
-
[name$
|
|
7175
|
+
[name$27]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7128
7176
|
});
|
|
7129
7177
|
|
|
7130
7178
|
const generateGenerationToCapitalizationConvertStatement = {
|
|
7131
7179
|
__proto__: null,
|
|
7132
7180
|
mutation: mutation$1a,
|
|
7133
|
-
name: name$
|
|
7181
|
+
name: name$27
|
|
7134
7182
|
};
|
|
7135
7183
|
|
|
7136
|
-
const name$
|
|
7184
|
+
const name$26 = "capitalGenerateCapitalizationToMainWalletConvertStatement";
|
|
7137
7185
|
const mutation$19 = Selector("Mutation")({
|
|
7138
|
-
[name$
|
|
7186
|
+
[name$26]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7139
7187
|
});
|
|
7140
7188
|
|
|
7141
7189
|
const generateCapitalizationToMainWalletConvertStatement = {
|
|
7142
7190
|
__proto__: null,
|
|
7143
7191
|
mutation: mutation$19,
|
|
7144
|
-
name: name$
|
|
7192
|
+
name: name$26
|
|
7145
7193
|
};
|
|
7146
7194
|
|
|
7147
|
-
const name$
|
|
7195
|
+
const name$25 = "capitalSignActAsContributor";
|
|
7148
7196
|
const mutation$18 = Selector("Mutation")({
|
|
7149
|
-
[name$
|
|
7197
|
+
[name$25]: [{ data: $("data", "SignActAsContributorInput!") }, rawSegmentSelector]
|
|
7150
7198
|
});
|
|
7151
7199
|
|
|
7152
7200
|
const signActAsContributor = {
|
|
7153
7201
|
__proto__: null,
|
|
7154
7202
|
mutation: mutation$18,
|
|
7155
|
-
name: name$
|
|
7203
|
+
name: name$25
|
|
7156
7204
|
};
|
|
7157
7205
|
|
|
7158
|
-
const name$
|
|
7206
|
+
const name$24 = "capitalSignActAsChairman";
|
|
7159
7207
|
const mutation$17 = Selector("Mutation")({
|
|
7160
|
-
[name$
|
|
7208
|
+
[name$24]: [{ data: $("data", "SignActAsChairmanInput!") }, rawSegmentSelector]
|
|
7161
7209
|
});
|
|
7162
7210
|
|
|
7163
7211
|
const signActAsChairman = {
|
|
7164
7212
|
__proto__: null,
|
|
7165
7213
|
mutation: mutation$17,
|
|
7166
|
-
name: name$
|
|
7214
|
+
name: name$24
|
|
7167
7215
|
};
|
|
7168
7216
|
|
|
7169
|
-
const name$
|
|
7217
|
+
const name$23 = "capitalEditContributor";
|
|
7170
7218
|
const mutation$16 = Selector("Mutation")({
|
|
7171
|
-
[name$
|
|
7219
|
+
[name$23]: [{ data: $("data", "EditContributorInput!") }, rawContributorSelector]
|
|
7172
7220
|
});
|
|
7173
7221
|
|
|
7174
7222
|
const editContributor = {
|
|
7175
7223
|
__proto__: null,
|
|
7176
7224
|
mutation: mutation$16,
|
|
7177
|
-
name: name$
|
|
7225
|
+
name: name$23
|
|
7178
7226
|
};
|
|
7179
7227
|
|
|
7180
|
-
const index$
|
|
7228
|
+
const index$B = {
|
|
7181
7229
|
__proto__: null,
|
|
7182
7230
|
AddAuthor: addAuthor,
|
|
7183
7231
|
ApproveCommit: approveCommit,
|
|
@@ -7247,304 +7295,304 @@ const index$A = {
|
|
|
7247
7295
|
UpdateStory: updateStory
|
|
7248
7296
|
};
|
|
7249
7297
|
|
|
7250
|
-
const name$
|
|
7298
|
+
const name$22 = "chairmanConfirmApprove";
|
|
7251
7299
|
const mutation$15 = Selector("Mutation")({
|
|
7252
|
-
[name$
|
|
7300
|
+
[name$22]: [{ data: $("data", "ConfirmApproveInput!") }, approvalSelector]
|
|
7253
7301
|
});
|
|
7254
7302
|
|
|
7255
7303
|
const confirmApprove = {
|
|
7256
7304
|
__proto__: null,
|
|
7257
7305
|
mutation: mutation$15,
|
|
7258
|
-
name: name$
|
|
7306
|
+
name: name$22
|
|
7259
7307
|
};
|
|
7260
7308
|
|
|
7261
|
-
const name$
|
|
7309
|
+
const name$21 = "chairmanDeclineApprove";
|
|
7262
7310
|
const mutation$14 = Selector("Mutation")({
|
|
7263
|
-
[name$
|
|
7311
|
+
[name$21]: [{ data: $("data", "DeclineApproveInput!") }, approvalSelector]
|
|
7264
7312
|
});
|
|
7265
7313
|
|
|
7266
7314
|
const declineApprove = {
|
|
7267
7315
|
__proto__: null,
|
|
7268
7316
|
mutation: mutation$14,
|
|
7269
|
-
name: name$
|
|
7317
|
+
name: name$21
|
|
7270
7318
|
};
|
|
7271
7319
|
|
|
7272
|
-
const index$
|
|
7320
|
+
const index$A = {
|
|
7273
7321
|
__proto__: null,
|
|
7274
7322
|
ConfirmApprove: confirmApprove,
|
|
7275
7323
|
DeclineApprove: declineApprove
|
|
7276
7324
|
};
|
|
7277
7325
|
|
|
7278
|
-
const name$
|
|
7326
|
+
const name$20 = "chatcoopCreateAccount";
|
|
7279
7327
|
const mutation$13 = Selector("Mutation")({
|
|
7280
|
-
[name$
|
|
7328
|
+
[name$20]: [{ data: $("data", "CreateMatrixAccountInputDTO!") }, true]
|
|
7281
7329
|
});
|
|
7282
7330
|
|
|
7283
7331
|
const createAccount = {
|
|
7284
7332
|
__proto__: null,
|
|
7285
7333
|
mutation: mutation$13,
|
|
7286
|
-
name: name$
|
|
7334
|
+
name: name$20
|
|
7287
7335
|
};
|
|
7288
7336
|
|
|
7289
|
-
const index$
|
|
7337
|
+
const index$z = {
|
|
7290
7338
|
__proto__: null,
|
|
7291
7339
|
CreateAccount: createAccount
|
|
7292
7340
|
};
|
|
7293
7341
|
|
|
7294
|
-
const name$
|
|
7342
|
+
const name$1$ = "acceptChildOrder";
|
|
7295
7343
|
const mutation$12 = Selector("Mutation")({
|
|
7296
|
-
[name$
|
|
7344
|
+
[name$1$]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
|
|
7297
7345
|
});
|
|
7298
7346
|
|
|
7299
7347
|
const acceptChildOrder = {
|
|
7300
7348
|
__proto__: null,
|
|
7301
7349
|
mutation: mutation$12,
|
|
7302
|
-
name: name$
|
|
7350
|
+
name: name$1$
|
|
7303
7351
|
};
|
|
7304
7352
|
|
|
7305
|
-
const name$
|
|
7353
|
+
const name$1_ = "cancelRequest";
|
|
7306
7354
|
const mutation$11 = Selector("Mutation")({
|
|
7307
|
-
[name$
|
|
7355
|
+
[name$1_]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
|
|
7308
7356
|
});
|
|
7309
7357
|
|
|
7310
7358
|
const cancelRequest = {
|
|
7311
7359
|
__proto__: null,
|
|
7312
7360
|
mutation: mutation$11,
|
|
7313
|
-
name: name$
|
|
7361
|
+
name: name$1_
|
|
7314
7362
|
};
|
|
7315
7363
|
|
|
7316
|
-
const name$
|
|
7364
|
+
const name$1Z = "confirmReceiveOnRequest";
|
|
7317
7365
|
const mutation$10 = Selector("Mutation")({
|
|
7318
|
-
[name$
|
|
7366
|
+
[name$1Z]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
7319
7367
|
});
|
|
7320
7368
|
|
|
7321
7369
|
const completeReceiveOnRequest = {
|
|
7322
7370
|
__proto__: null,
|
|
7323
7371
|
mutation: mutation$10,
|
|
7324
|
-
name: name$
|
|
7372
|
+
name: name$1Z
|
|
7325
7373
|
};
|
|
7326
7374
|
|
|
7327
|
-
const name$
|
|
7375
|
+
const name$1Y = "completeRequest";
|
|
7328
7376
|
const mutation$$ = Selector("Mutation")({
|
|
7329
|
-
[name$
|
|
7377
|
+
[name$1Y]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
|
|
7330
7378
|
});
|
|
7331
7379
|
|
|
7332
7380
|
const completeRequest = {
|
|
7333
7381
|
__proto__: null,
|
|
7334
7382
|
mutation: mutation$$,
|
|
7335
|
-
name: name$
|
|
7383
|
+
name: name$1Y
|
|
7336
7384
|
};
|
|
7337
7385
|
|
|
7338
|
-
const name$
|
|
7386
|
+
const name$1X = "confirmSupplyOnRequest";
|
|
7339
7387
|
const mutation$_ = Selector("Mutation")({
|
|
7340
|
-
[name$
|
|
7388
|
+
[name$1X]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
|
|
7341
7389
|
});
|
|
7342
7390
|
|
|
7343
7391
|
const confirmSupplyOnRequest = {
|
|
7344
7392
|
__proto__: null,
|
|
7345
7393
|
mutation: mutation$_,
|
|
7346
|
-
name: name$
|
|
7394
|
+
name: name$1X
|
|
7347
7395
|
};
|
|
7348
7396
|
|
|
7349
|
-
const name$
|
|
7397
|
+
const name$1W = "createChildOrder";
|
|
7350
7398
|
const mutation$Z = Selector("Mutation")({
|
|
7351
|
-
[name$
|
|
7399
|
+
[name$1W]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
|
|
7352
7400
|
});
|
|
7353
7401
|
|
|
7354
7402
|
const createChildOrder = {
|
|
7355
7403
|
__proto__: null,
|
|
7356
7404
|
mutation: mutation$Z,
|
|
7357
|
-
name: name$
|
|
7405
|
+
name: name$1W
|
|
7358
7406
|
};
|
|
7359
7407
|
|
|
7360
|
-
const name$
|
|
7408
|
+
const name$1V = "createParentOffer";
|
|
7361
7409
|
const mutation$Y = Selector("Mutation")({
|
|
7362
|
-
[name$
|
|
7410
|
+
[name$1V]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
|
|
7363
7411
|
});
|
|
7364
7412
|
|
|
7365
7413
|
const createParentOffer = {
|
|
7366
7414
|
__proto__: null,
|
|
7367
7415
|
mutation: mutation$Y,
|
|
7368
|
-
name: name$
|
|
7416
|
+
name: name$1V
|
|
7369
7417
|
};
|
|
7370
7418
|
|
|
7371
|
-
const name$
|
|
7419
|
+
const name$1U = "declineRequest";
|
|
7372
7420
|
const mutation$X = Selector("Mutation")({
|
|
7373
|
-
[name$
|
|
7421
|
+
[name$1U]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
|
|
7374
7422
|
});
|
|
7375
7423
|
|
|
7376
7424
|
const declineRequest = {
|
|
7377
7425
|
__proto__: null,
|
|
7378
7426
|
mutation: mutation$X,
|
|
7379
|
-
name: name$
|
|
7427
|
+
name: name$1U
|
|
7380
7428
|
};
|
|
7381
7429
|
|
|
7382
|
-
const name$
|
|
7430
|
+
const name$1T = "deliverOnRequest";
|
|
7383
7431
|
const mutation$W = Selector("Mutation")({
|
|
7384
|
-
[name$
|
|
7432
|
+
[name$1T]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
|
|
7385
7433
|
});
|
|
7386
7434
|
|
|
7387
7435
|
const deliverOnRequest = {
|
|
7388
7436
|
__proto__: null,
|
|
7389
7437
|
mutation: mutation$W,
|
|
7390
|
-
name: name$
|
|
7438
|
+
name: name$1T
|
|
7391
7439
|
};
|
|
7392
7440
|
|
|
7393
|
-
const name$
|
|
7441
|
+
const name$1S = "disputeOnRequest";
|
|
7394
7442
|
const mutation$V = Selector("Mutation")({
|
|
7395
|
-
[name$
|
|
7443
|
+
[name$1S]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
|
|
7396
7444
|
});
|
|
7397
7445
|
|
|
7398
7446
|
const disputeOnRequest = {
|
|
7399
7447
|
__proto__: null,
|
|
7400
7448
|
mutation: mutation$V,
|
|
7401
|
-
name: name$
|
|
7449
|
+
name: name$1S
|
|
7402
7450
|
};
|
|
7403
7451
|
|
|
7404
|
-
const name$
|
|
7452
|
+
const name$1R = "generateAssetContributionAct";
|
|
7405
7453
|
const mutation$U = Selector("Mutation")({
|
|
7406
|
-
[name$
|
|
7454
|
+
[name$1R]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7407
7455
|
});
|
|
7408
7456
|
|
|
7409
7457
|
const generateAssetContributionAct = {
|
|
7410
7458
|
__proto__: null,
|
|
7411
7459
|
mutation: mutation$U,
|
|
7412
|
-
name: name$
|
|
7460
|
+
name: name$1R
|
|
7413
7461
|
};
|
|
7414
7462
|
|
|
7415
|
-
const name$
|
|
7463
|
+
const name$1Q = "generateAssetContributionDecision";
|
|
7416
7464
|
const mutation$T = Selector("Mutation")({
|
|
7417
|
-
[name$
|
|
7465
|
+
[name$1Q]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7418
7466
|
});
|
|
7419
7467
|
|
|
7420
7468
|
const generateAssetContributionDecision = {
|
|
7421
7469
|
__proto__: null,
|
|
7422
7470
|
mutation: mutation$T,
|
|
7423
|
-
name: name$
|
|
7471
|
+
name: name$1Q
|
|
7424
7472
|
};
|
|
7425
7473
|
|
|
7426
|
-
const name$
|
|
7474
|
+
const name$1P = "generateAssetContributionStatement";
|
|
7427
7475
|
const mutation$S = Selector("Mutation")({
|
|
7428
|
-
[name$
|
|
7476
|
+
[name$1P]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7429
7477
|
});
|
|
7430
7478
|
|
|
7431
7479
|
const generateAssetContributionStatement = {
|
|
7432
7480
|
__proto__: null,
|
|
7433
7481
|
mutation: mutation$S,
|
|
7434
|
-
name: name$
|
|
7482
|
+
name: name$1P
|
|
7435
7483
|
};
|
|
7436
7484
|
|
|
7437
|
-
const name$
|
|
7485
|
+
const name$1O = "generateReturnByAssetAct";
|
|
7438
7486
|
const mutation$R = Selector("Mutation")({
|
|
7439
|
-
[name$
|
|
7487
|
+
[name$1O]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7440
7488
|
});
|
|
7441
7489
|
|
|
7442
7490
|
const generateReturnByAssetAct = {
|
|
7443
7491
|
__proto__: null,
|
|
7444
7492
|
mutation: mutation$R,
|
|
7445
|
-
name: name$
|
|
7493
|
+
name: name$1O
|
|
7446
7494
|
};
|
|
7447
7495
|
|
|
7448
|
-
const name$
|
|
7496
|
+
const name$1N = "generateReturnByAssetDecision";
|
|
7449
7497
|
const mutation$Q = Selector("Mutation")({
|
|
7450
|
-
[name$
|
|
7498
|
+
[name$1N]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7451
7499
|
});
|
|
7452
7500
|
|
|
7453
7501
|
const generateReturnByAssetDecision = {
|
|
7454
7502
|
__proto__: null,
|
|
7455
7503
|
mutation: mutation$Q,
|
|
7456
|
-
name: name$
|
|
7504
|
+
name: name$1N
|
|
7457
7505
|
};
|
|
7458
7506
|
|
|
7459
|
-
const name$
|
|
7507
|
+
const name$1M = "generateReturnByAssetStatement";
|
|
7460
7508
|
const mutation$P = Selector("Mutation")({
|
|
7461
|
-
[name$
|
|
7509
|
+
[name$1M]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7462
7510
|
});
|
|
7463
7511
|
|
|
7464
7512
|
const generateReturnByAssetStatement = {
|
|
7465
7513
|
__proto__: null,
|
|
7466
7514
|
mutation: mutation$P,
|
|
7467
|
-
name: name$
|
|
7515
|
+
name: name$1M
|
|
7468
7516
|
};
|
|
7469
7517
|
|
|
7470
|
-
const name$
|
|
7518
|
+
const name$1L = "moderateRequest";
|
|
7471
7519
|
const mutation$O = Selector("Mutation")({
|
|
7472
|
-
[name$
|
|
7520
|
+
[name$1L]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
|
|
7473
7521
|
});
|
|
7474
7522
|
|
|
7475
7523
|
const moderateRequest = {
|
|
7476
7524
|
__proto__: null,
|
|
7477
7525
|
mutation: mutation$O,
|
|
7478
|
-
name: name$
|
|
7526
|
+
name: name$1L
|
|
7479
7527
|
};
|
|
7480
7528
|
|
|
7481
|
-
const name$
|
|
7529
|
+
const name$1K = "prohibitRequest";
|
|
7482
7530
|
const mutation$N = Selector("Mutation")({
|
|
7483
|
-
[name$
|
|
7531
|
+
[name$1K]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
|
|
7484
7532
|
});
|
|
7485
7533
|
|
|
7486
7534
|
const prohibitRequest = {
|
|
7487
7535
|
__proto__: null,
|
|
7488
7536
|
mutation: mutation$N,
|
|
7489
|
-
name: name$
|
|
7537
|
+
name: name$1K
|
|
7490
7538
|
};
|
|
7491
7539
|
|
|
7492
|
-
const name$
|
|
7540
|
+
const name$1J = "publishRequest";
|
|
7493
7541
|
const mutation$M = Selector("Mutation")({
|
|
7494
|
-
[name$
|
|
7542
|
+
[name$1J]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
|
|
7495
7543
|
});
|
|
7496
7544
|
|
|
7497
7545
|
const publishRequest = {
|
|
7498
7546
|
__proto__: null,
|
|
7499
7547
|
mutation: mutation$M,
|
|
7500
|
-
name: name$
|
|
7548
|
+
name: name$1J
|
|
7501
7549
|
};
|
|
7502
7550
|
|
|
7503
|
-
const name$
|
|
7551
|
+
const name$1I = "receiveOnRequest";
|
|
7504
7552
|
const mutation$L = Selector("Mutation")({
|
|
7505
|
-
[name$
|
|
7553
|
+
[name$1I]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
7506
7554
|
});
|
|
7507
7555
|
|
|
7508
7556
|
const receiveOnRequest = {
|
|
7509
7557
|
__proto__: null,
|
|
7510
7558
|
mutation: mutation$L,
|
|
7511
|
-
name: name$
|
|
7559
|
+
name: name$1I
|
|
7512
7560
|
};
|
|
7513
7561
|
|
|
7514
|
-
const name$
|
|
7562
|
+
const name$1H = "supplyOnRequest";
|
|
7515
7563
|
const mutation$K = Selector("Mutation")({
|
|
7516
|
-
[name$
|
|
7564
|
+
[name$1H]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
|
|
7517
7565
|
});
|
|
7518
7566
|
|
|
7519
7567
|
const supplyOnRequest = {
|
|
7520
7568
|
__proto__: null,
|
|
7521
7569
|
mutation: mutation$K,
|
|
7522
|
-
name: name$
|
|
7570
|
+
name: name$1H
|
|
7523
7571
|
};
|
|
7524
7572
|
|
|
7525
|
-
const name$
|
|
7573
|
+
const name$1G = "unpublishRequest";
|
|
7526
7574
|
const mutation$J = Selector("Mutation")({
|
|
7527
|
-
[name$
|
|
7575
|
+
[name$1G]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
7528
7576
|
});
|
|
7529
7577
|
|
|
7530
7578
|
const unpublishRequest = {
|
|
7531
7579
|
__proto__: null,
|
|
7532
7580
|
mutation: mutation$J,
|
|
7533
|
-
name: name$
|
|
7581
|
+
name: name$1G
|
|
7534
7582
|
};
|
|
7535
7583
|
|
|
7536
|
-
const name$
|
|
7584
|
+
const name$1F = "updateRequest";
|
|
7537
7585
|
const mutation$I = Selector("Mutation")({
|
|
7538
|
-
[name$
|
|
7586
|
+
[name$1F]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
7539
7587
|
});
|
|
7540
7588
|
|
|
7541
7589
|
const updateRequest = {
|
|
7542
7590
|
__proto__: null,
|
|
7543
7591
|
mutation: mutation$I,
|
|
7544
|
-
name: name$
|
|
7592
|
+
name: name$1F
|
|
7545
7593
|
};
|
|
7546
7594
|
|
|
7547
|
-
const index$
|
|
7595
|
+
const index$y = {
|
|
7548
7596
|
__proto__: null,
|
|
7549
7597
|
AcceptChildOrder: acceptChildOrder,
|
|
7550
7598
|
CancelRequest: cancelRequest,
|
|
@@ -7571,91 +7619,91 @@ const index$x = {
|
|
|
7571
7619
|
UpdateRequest: updateRequest
|
|
7572
7620
|
};
|
|
7573
7621
|
|
|
7574
|
-
const name$
|
|
7622
|
+
const name$1E = "installExtension";
|
|
7575
7623
|
const mutation$H = Selector("Mutation")({
|
|
7576
|
-
[name$
|
|
7624
|
+
[name$1E]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
7577
7625
|
});
|
|
7578
7626
|
|
|
7579
7627
|
const installExtension = {
|
|
7580
7628
|
__proto__: null,
|
|
7581
7629
|
mutation: mutation$H,
|
|
7582
|
-
name: name$
|
|
7630
|
+
name: name$1E
|
|
7583
7631
|
};
|
|
7584
7632
|
|
|
7585
|
-
const name$
|
|
7633
|
+
const name$1D = "uninstallExtension";
|
|
7586
7634
|
const mutation$G = Selector("Mutation")({
|
|
7587
|
-
[name$
|
|
7635
|
+
[name$1D]: [{ data: $("data", "UninstallExtensionInput!") }, true]
|
|
7588
7636
|
});
|
|
7589
7637
|
|
|
7590
7638
|
const uninstallExtension = {
|
|
7591
7639
|
__proto__: null,
|
|
7592
7640
|
mutation: mutation$G,
|
|
7593
|
-
name: name$
|
|
7641
|
+
name: name$1D
|
|
7594
7642
|
};
|
|
7595
7643
|
|
|
7596
|
-
const name$
|
|
7644
|
+
const name$1C = "updateExtension";
|
|
7597
7645
|
const mutation$F = Selector("Mutation")({
|
|
7598
|
-
[name$
|
|
7646
|
+
[name$1C]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
7599
7647
|
});
|
|
7600
7648
|
|
|
7601
7649
|
const updateExtension = {
|
|
7602
7650
|
__proto__: null,
|
|
7603
7651
|
mutation: mutation$F,
|
|
7604
|
-
name: name$
|
|
7652
|
+
name: name$1C
|
|
7605
7653
|
};
|
|
7606
7654
|
|
|
7607
|
-
const index$
|
|
7655
|
+
const index$x = {
|
|
7608
7656
|
__proto__: null,
|
|
7609
7657
|
InstallExtension: installExtension,
|
|
7610
7658
|
UninstallExtension: uninstallExtension,
|
|
7611
7659
|
UpdateExtension: updateExtension
|
|
7612
7660
|
};
|
|
7613
7661
|
|
|
7614
|
-
const name$
|
|
7662
|
+
const name$1B = "generateProjectOfFreeDecision";
|
|
7615
7663
|
const mutation$E = Selector("Mutation")({
|
|
7616
|
-
[name$
|
|
7664
|
+
[name$1B]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7617
7665
|
});
|
|
7618
7666
|
|
|
7619
7667
|
const generateProjectOfFreeDecisionDocument = {
|
|
7620
7668
|
__proto__: null,
|
|
7621
7669
|
mutation: mutation$E,
|
|
7622
|
-
name: name$
|
|
7670
|
+
name: name$1B
|
|
7623
7671
|
};
|
|
7624
7672
|
|
|
7625
|
-
const name$
|
|
7673
|
+
const name$1A = "generateFreeDecision";
|
|
7626
7674
|
const mutation$D = Selector("Mutation")({
|
|
7627
|
-
[name$
|
|
7675
|
+
[name$1A]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7628
7676
|
});
|
|
7629
7677
|
|
|
7630
7678
|
const generateFreeDecision = {
|
|
7631
7679
|
__proto__: null,
|
|
7632
7680
|
mutation: mutation$D,
|
|
7633
|
-
name: name$
|
|
7681
|
+
name: name$1A
|
|
7634
7682
|
};
|
|
7635
7683
|
|
|
7636
|
-
const name$
|
|
7684
|
+
const name$1z = "publishProjectOfFreeDecision";
|
|
7637
7685
|
const mutation$C = Selector("Mutation")({
|
|
7638
|
-
[name$
|
|
7686
|
+
[name$1z]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
|
|
7639
7687
|
});
|
|
7640
7688
|
|
|
7641
7689
|
const publishProjectOfFreeDecision = {
|
|
7642
7690
|
__proto__: null,
|
|
7643
7691
|
mutation: mutation$C,
|
|
7644
|
-
name: name$
|
|
7692
|
+
name: name$1z
|
|
7645
7693
|
};
|
|
7646
7694
|
|
|
7647
|
-
const name$
|
|
7695
|
+
const name$1y = "createProjectOfFreeDecision";
|
|
7648
7696
|
const mutation$B = Selector("Mutation")({
|
|
7649
|
-
[name$
|
|
7697
|
+
[name$1y]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
|
|
7650
7698
|
});
|
|
7651
7699
|
|
|
7652
7700
|
const createProjectOfFreeDecision = {
|
|
7653
7701
|
__proto__: null,
|
|
7654
7702
|
mutation: mutation$B,
|
|
7655
|
-
name: name$
|
|
7703
|
+
name: name$1y
|
|
7656
7704
|
};
|
|
7657
7705
|
|
|
7658
|
-
const index$
|
|
7706
|
+
const index$w = {
|
|
7659
7707
|
__proto__: null,
|
|
7660
7708
|
CreateProjectOfFreeDecision: createProjectOfFreeDecision,
|
|
7661
7709
|
GenerateFreeDecision: generateFreeDecision,
|
|
@@ -7663,60 +7711,60 @@ const index$v = {
|
|
|
7663
7711
|
PublishProjectOfFreeDecision: publishProjectOfFreeDecision
|
|
7664
7712
|
};
|
|
7665
7713
|
|
|
7666
|
-
const name$
|
|
7714
|
+
const name$1x = "setPaymentStatus";
|
|
7667
7715
|
const mutation$A = Selector("Mutation")({
|
|
7668
|
-
[name$
|
|
7716
|
+
[name$1x]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
|
|
7669
7717
|
});
|
|
7670
7718
|
|
|
7671
7719
|
const updatePaymentStatus = {
|
|
7672
7720
|
__proto__: null,
|
|
7673
7721
|
mutation: mutation$A,
|
|
7674
|
-
name: name$
|
|
7722
|
+
name: name$1x
|
|
7675
7723
|
};
|
|
7676
7724
|
|
|
7677
|
-
const name$
|
|
7725
|
+
const name$1w = "createInitialPayment";
|
|
7678
7726
|
const mutation$z = Selector("Mutation")({
|
|
7679
|
-
[name$
|
|
7727
|
+
[name$1w]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
7680
7728
|
});
|
|
7681
7729
|
|
|
7682
7730
|
const createInitialPayment$1 = {
|
|
7683
7731
|
__proto__: null,
|
|
7684
7732
|
mutation: mutation$z,
|
|
7685
|
-
name: name$
|
|
7733
|
+
name: name$1w
|
|
7686
7734
|
};
|
|
7687
7735
|
|
|
7688
|
-
const name$
|
|
7736
|
+
const name$1v = "createDepositPayment";
|
|
7689
7737
|
const mutation$y = Selector("Mutation")({
|
|
7690
|
-
[name$
|
|
7738
|
+
[name$1v]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
7691
7739
|
});
|
|
7692
7740
|
|
|
7693
7741
|
const createDepositPayment$1 = {
|
|
7694
7742
|
__proto__: null,
|
|
7695
7743
|
mutation: mutation$y,
|
|
7696
|
-
name: name$
|
|
7744
|
+
name: name$1v
|
|
7697
7745
|
};
|
|
7698
7746
|
|
|
7699
|
-
const index$
|
|
7747
|
+
const index$v = {
|
|
7700
7748
|
__proto__: null,
|
|
7701
7749
|
CreateDepositPayment: createDepositPayment$1,
|
|
7702
7750
|
CreateInitialPayment: createInitialPayment$1,
|
|
7703
7751
|
SetPaymentStatus: updatePaymentStatus
|
|
7704
7752
|
};
|
|
7705
7753
|
|
|
7706
|
-
const name$
|
|
7754
|
+
const name$1u = "createAnnualGeneralMeet";
|
|
7707
7755
|
const mutation$x = Selector("Mutation")({
|
|
7708
|
-
[name$
|
|
7756
|
+
[name$1u]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
7709
7757
|
});
|
|
7710
7758
|
|
|
7711
7759
|
const createAnnualGeneralMeet = {
|
|
7712
7760
|
__proto__: null,
|
|
7713
7761
|
mutation: mutation$x,
|
|
7714
|
-
name: name$
|
|
7762
|
+
name: name$1u
|
|
7715
7763
|
};
|
|
7716
7764
|
|
|
7717
|
-
const name$
|
|
7765
|
+
const name$1t = "generateAnnualGeneralMeetAgendaDocument";
|
|
7718
7766
|
const mutation$w = Selector("Mutation")({
|
|
7719
|
-
[name$
|
|
7767
|
+
[name$1t]: [
|
|
7720
7768
|
{
|
|
7721
7769
|
data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
|
|
7722
7770
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -7728,12 +7776,12 @@ const mutation$w = Selector("Mutation")({
|
|
|
7728
7776
|
const generateAnnualGeneralMeetAgendaDocument = {
|
|
7729
7777
|
__proto__: null,
|
|
7730
7778
|
mutation: mutation$w,
|
|
7731
|
-
name: name$
|
|
7779
|
+
name: name$1t
|
|
7732
7780
|
};
|
|
7733
7781
|
|
|
7734
|
-
const name$
|
|
7782
|
+
const name$1s = "generateAnnualGeneralMeetDecisionDocument";
|
|
7735
7783
|
const mutation$v = Selector("Mutation")({
|
|
7736
|
-
[name$
|
|
7784
|
+
[name$1s]: [
|
|
7737
7785
|
{
|
|
7738
7786
|
data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
|
|
7739
7787
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -7745,12 +7793,12 @@ const mutation$v = Selector("Mutation")({
|
|
|
7745
7793
|
const generateAnnualGeneralMeetDecisionDocument = {
|
|
7746
7794
|
__proto__: null,
|
|
7747
7795
|
mutation: mutation$v,
|
|
7748
|
-
name: name$
|
|
7796
|
+
name: name$1s
|
|
7749
7797
|
};
|
|
7750
7798
|
|
|
7751
|
-
const name$
|
|
7799
|
+
const name$1r = "generateAnnualGeneralMeetNotificationDocument";
|
|
7752
7800
|
const mutation$u = Selector("Mutation")({
|
|
7753
|
-
[name$
|
|
7801
|
+
[name$1r]: [
|
|
7754
7802
|
{
|
|
7755
7803
|
data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
|
|
7756
7804
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -7762,12 +7810,12 @@ const mutation$u = Selector("Mutation")({
|
|
|
7762
7810
|
const generateAnnualGeneralMeetNotificationDocument = {
|
|
7763
7811
|
__proto__: null,
|
|
7764
7812
|
mutation: mutation$u,
|
|
7765
|
-
name: name$
|
|
7813
|
+
name: name$1r
|
|
7766
7814
|
};
|
|
7767
7815
|
|
|
7768
|
-
const name$
|
|
7816
|
+
const name$1q = "generateBallotForAnnualGeneralMeetDocument";
|
|
7769
7817
|
const mutation$t = Selector("Mutation")({
|
|
7770
|
-
[name$
|
|
7818
|
+
[name$1q]: [
|
|
7771
7819
|
{
|
|
7772
7820
|
data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
|
|
7773
7821
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -7779,12 +7827,12 @@ const mutation$t = Selector("Mutation")({
|
|
|
7779
7827
|
const generateBallotForAnnualGeneralMeetDocument = {
|
|
7780
7828
|
__proto__: null,
|
|
7781
7829
|
mutation: mutation$t,
|
|
7782
|
-
name: name$
|
|
7830
|
+
name: name$1q
|
|
7783
7831
|
};
|
|
7784
7832
|
|
|
7785
|
-
const name$
|
|
7833
|
+
const name$1p = "generateSovietDecisionOnAnnualMeetDocument";
|
|
7786
7834
|
const mutation$s = Selector("Mutation")({
|
|
7787
|
-
[name$
|
|
7835
|
+
[name$1p]: [{
|
|
7788
7836
|
data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
|
|
7789
7837
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
7790
7838
|
}, documentSelector]
|
|
@@ -7793,65 +7841,65 @@ const mutation$s = Selector("Mutation")({
|
|
|
7793
7841
|
const generateSovietDecisionOnAnnualMeetDocument = {
|
|
7794
7842
|
__proto__: null,
|
|
7795
7843
|
mutation: mutation$s,
|
|
7796
|
-
name: name$
|
|
7844
|
+
name: name$1p
|
|
7797
7845
|
};
|
|
7798
7846
|
|
|
7799
|
-
const name$
|
|
7847
|
+
const name$1o = "notifyOnAnnualGeneralMeet";
|
|
7800
7848
|
const mutation$r = Selector("Mutation")({
|
|
7801
|
-
[name$
|
|
7849
|
+
[name$1o]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
7802
7850
|
});
|
|
7803
7851
|
|
|
7804
7852
|
const notifyOnAnnualGeneralMeet = {
|
|
7805
7853
|
__proto__: null,
|
|
7806
7854
|
mutation: mutation$r,
|
|
7807
|
-
name: name$
|
|
7855
|
+
name: name$1o
|
|
7808
7856
|
};
|
|
7809
7857
|
|
|
7810
|
-
const name$
|
|
7858
|
+
const name$1n = "restartAnnualGeneralMeet";
|
|
7811
7859
|
const mutation$q = Selector("Mutation")({
|
|
7812
|
-
[name$
|
|
7860
|
+
[name$1n]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
7813
7861
|
});
|
|
7814
7862
|
|
|
7815
7863
|
const restartAnnualGeneralMeet = {
|
|
7816
7864
|
__proto__: null,
|
|
7817
7865
|
mutation: mutation$q,
|
|
7818
|
-
name: name$
|
|
7866
|
+
name: name$1n
|
|
7819
7867
|
};
|
|
7820
7868
|
|
|
7821
|
-
const name$
|
|
7869
|
+
const name$1m = "signByPresiderOnAnnualGeneralMeet";
|
|
7822
7870
|
const mutation$p = Selector("Mutation")({
|
|
7823
|
-
[name$
|
|
7871
|
+
[name$1m]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
7824
7872
|
});
|
|
7825
7873
|
|
|
7826
7874
|
const signByPresiderOnAnnualGeneralMeet = {
|
|
7827
7875
|
__proto__: null,
|
|
7828
7876
|
mutation: mutation$p,
|
|
7829
|
-
name: name$
|
|
7877
|
+
name: name$1m
|
|
7830
7878
|
};
|
|
7831
7879
|
|
|
7832
|
-
const name$
|
|
7880
|
+
const name$1l = "signBySecretaryOnAnnualGeneralMeet";
|
|
7833
7881
|
const mutation$o = Selector("Mutation")({
|
|
7834
|
-
[name$
|
|
7882
|
+
[name$1l]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
7835
7883
|
});
|
|
7836
7884
|
|
|
7837
7885
|
const signBySecretaryOnAnnualGeneralMeet = {
|
|
7838
7886
|
__proto__: null,
|
|
7839
7887
|
mutation: mutation$o,
|
|
7840
|
-
name: name$
|
|
7888
|
+
name: name$1l
|
|
7841
7889
|
};
|
|
7842
7890
|
|
|
7843
|
-
const name$
|
|
7891
|
+
const name$1k = "voteOnAnnualGeneralMeet";
|
|
7844
7892
|
const mutation$n = Selector("Mutation")({
|
|
7845
|
-
[name$
|
|
7893
|
+
[name$1k]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
7846
7894
|
});
|
|
7847
7895
|
|
|
7848
7896
|
const voteOnAnnualGeneralMeet = {
|
|
7849
7897
|
__proto__: null,
|
|
7850
7898
|
mutation: mutation$n,
|
|
7851
|
-
name: name$
|
|
7899
|
+
name: name$1k
|
|
7852
7900
|
};
|
|
7853
7901
|
|
|
7854
|
-
const index$
|
|
7902
|
+
const index$u = {
|
|
7855
7903
|
__proto__: null,
|
|
7856
7904
|
CreateAnnualGeneralMeet: createAnnualGeneralMeet,
|
|
7857
7905
|
GenerateAnnualGeneralMeetAgendaDocument: generateAnnualGeneralMeetAgendaDocument,
|
|
@@ -7866,102 +7914,102 @@ const index$t = {
|
|
|
7866
7914
|
VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
|
|
7867
7915
|
};
|
|
7868
7916
|
|
|
7869
|
-
const name$
|
|
7917
|
+
const name$1j = "createWebPushSubscription";
|
|
7870
7918
|
const mutation$m = Selector("Mutation")({
|
|
7871
|
-
[name$
|
|
7919
|
+
[name$1j]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
|
|
7872
7920
|
});
|
|
7873
7921
|
|
|
7874
7922
|
const createWebPushSubscription = {
|
|
7875
7923
|
__proto__: null,
|
|
7876
7924
|
mutation: mutation$m,
|
|
7877
|
-
name: name$
|
|
7925
|
+
name: name$1j
|
|
7878
7926
|
};
|
|
7879
7927
|
|
|
7880
|
-
const name$
|
|
7928
|
+
const name$1i = "deactivateWebPushSubscriptionById";
|
|
7881
7929
|
const mutation$l = Selector("Mutation")({
|
|
7882
|
-
[name$
|
|
7930
|
+
[name$1i]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
|
|
7883
7931
|
});
|
|
7884
7932
|
|
|
7885
7933
|
const deactivateWebPushSubscriptionById = {
|
|
7886
7934
|
__proto__: null,
|
|
7887
7935
|
mutation: mutation$l,
|
|
7888
|
-
name: name$
|
|
7936
|
+
name: name$1i
|
|
7889
7937
|
};
|
|
7890
7938
|
|
|
7891
|
-
const name$
|
|
7939
|
+
const name$1h = "triggerNotificationWorkflow";
|
|
7892
7940
|
const mutation$k = Selector("Mutation")({
|
|
7893
|
-
[name$
|
|
7941
|
+
[name$1h]: [{ data: $("data", "TriggerNotificationWorkflowInput!") }, true]
|
|
7894
7942
|
});
|
|
7895
7943
|
|
|
7896
7944
|
const triggerNotificationWorkflow = {
|
|
7897
7945
|
__proto__: null,
|
|
7898
7946
|
mutation: mutation$k,
|
|
7899
|
-
name: name$
|
|
7947
|
+
name: name$1h
|
|
7900
7948
|
};
|
|
7901
7949
|
|
|
7902
|
-
const index$
|
|
7950
|
+
const index$t = {
|
|
7903
7951
|
__proto__: null,
|
|
7904
7952
|
CreateWebPushSubscription: createWebPushSubscription,
|
|
7905
7953
|
DeactivateWebPushSubscriptionById: deactivateWebPushSubscriptionById,
|
|
7906
7954
|
TriggerNotificationWorkflow: triggerNotificationWorkflow
|
|
7907
7955
|
};
|
|
7908
7956
|
|
|
7909
|
-
const name$
|
|
7957
|
+
const name$1g = "addParticipant";
|
|
7910
7958
|
const mutation$j = Selector("Mutation")({
|
|
7911
|
-
[name$
|
|
7959
|
+
[name$1g]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
|
|
7912
7960
|
});
|
|
7913
7961
|
|
|
7914
7962
|
const addParticipant = {
|
|
7915
7963
|
__proto__: null,
|
|
7916
7964
|
mutation: mutation$j,
|
|
7917
|
-
name: name$
|
|
7965
|
+
name: name$1g
|
|
7918
7966
|
};
|
|
7919
7967
|
|
|
7920
|
-
const name$
|
|
7968
|
+
const name$1f = "generateParticipantApplication";
|
|
7921
7969
|
const mutation$i = Selector("Mutation")({
|
|
7922
|
-
[name$
|
|
7970
|
+
[name$1f]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7923
7971
|
});
|
|
7924
7972
|
|
|
7925
7973
|
const generateParticipantApplication = {
|
|
7926
7974
|
__proto__: null,
|
|
7927
7975
|
mutation: mutation$i,
|
|
7928
|
-
name: name$
|
|
7976
|
+
name: name$1f
|
|
7929
7977
|
};
|
|
7930
7978
|
|
|
7931
|
-
const name$
|
|
7979
|
+
const name$1e = "generateParticipantApplicationDecision";
|
|
7932
7980
|
const mutation$h = Selector("Mutation")({
|
|
7933
|
-
[name$
|
|
7981
|
+
[name$1e]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7934
7982
|
});
|
|
7935
7983
|
|
|
7936
7984
|
const generateParticipantApplicationDecision = {
|
|
7937
7985
|
__proto__: null,
|
|
7938
7986
|
mutation: mutation$h,
|
|
7939
|
-
name: name$
|
|
7987
|
+
name: name$1e
|
|
7940
7988
|
};
|
|
7941
7989
|
|
|
7942
|
-
const name$
|
|
7990
|
+
const name$1d = "registerParticipant";
|
|
7943
7991
|
const mutation$g = Selector("Mutation")({
|
|
7944
|
-
[name$
|
|
7992
|
+
[name$1d]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
|
|
7945
7993
|
});
|
|
7946
7994
|
|
|
7947
7995
|
const registerParticipant = {
|
|
7948
7996
|
__proto__: null,
|
|
7949
7997
|
mutation: mutation$g,
|
|
7950
|
-
name: name$
|
|
7998
|
+
name: name$1d
|
|
7951
7999
|
};
|
|
7952
8000
|
|
|
7953
|
-
const name$
|
|
8001
|
+
const name$1c = "createInitialPayment";
|
|
7954
8002
|
const mutation$f = Selector("Mutation")({
|
|
7955
|
-
[name$
|
|
8003
|
+
[name$1c]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
7956
8004
|
});
|
|
7957
8005
|
|
|
7958
8006
|
const createInitialPayment = {
|
|
7959
8007
|
__proto__: null,
|
|
7960
8008
|
mutation: mutation$f,
|
|
7961
|
-
name: name$
|
|
8009
|
+
name: name$1c
|
|
7962
8010
|
};
|
|
7963
8011
|
|
|
7964
|
-
const index$
|
|
8012
|
+
const index$s = {
|
|
7965
8013
|
__proto__: null,
|
|
7966
8014
|
AddParticipant: addParticipant,
|
|
7967
8015
|
CreateInitialPayment: createInitialPayment,
|
|
@@ -7970,110 +8018,110 @@ const index$r = {
|
|
|
7970
8018
|
RegisterParticipant: registerParticipant
|
|
7971
8019
|
};
|
|
7972
8020
|
|
|
7973
|
-
const name$
|
|
8021
|
+
const name$1b = "createBankAccount";
|
|
7974
8022
|
const mutation$e = Selector("Mutation")({
|
|
7975
|
-
[name$
|
|
8023
|
+
[name$1b]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
|
|
7976
8024
|
});
|
|
7977
8025
|
|
|
7978
8026
|
const createBankAccount = {
|
|
7979
8027
|
__proto__: null,
|
|
7980
8028
|
mutation: mutation$e,
|
|
7981
|
-
name: name$
|
|
8029
|
+
name: name$1b
|
|
7982
8030
|
};
|
|
7983
8031
|
|
|
7984
|
-
const name$
|
|
8032
|
+
const name$1a = "deletePaymentMethod";
|
|
7985
8033
|
const mutation$d = Selector("Mutation")({
|
|
7986
|
-
[name$
|
|
8034
|
+
[name$1a]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
|
|
7987
8035
|
});
|
|
7988
8036
|
|
|
7989
8037
|
const deletePaymentMethod = {
|
|
7990
8038
|
__proto__: null,
|
|
7991
8039
|
mutation: mutation$d,
|
|
7992
|
-
name: name$
|
|
8040
|
+
name: name$1a
|
|
7993
8041
|
};
|
|
7994
8042
|
|
|
7995
|
-
const name$
|
|
8043
|
+
const name$19 = "updateBankAccount";
|
|
7996
8044
|
const mutation$c = Selector("Mutation")({
|
|
7997
|
-
[name$
|
|
8045
|
+
[name$19]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
|
|
7998
8046
|
});
|
|
7999
8047
|
|
|
8000
8048
|
const updateBankAccount = {
|
|
8001
8049
|
__proto__: null,
|
|
8002
8050
|
mutation: mutation$c,
|
|
8003
|
-
name: name$
|
|
8051
|
+
name: name$19
|
|
8004
8052
|
};
|
|
8005
8053
|
|
|
8006
|
-
const index$
|
|
8054
|
+
const index$r = {
|
|
8007
8055
|
__proto__: null,
|
|
8008
8056
|
CreateBankAccount: createBankAccount,
|
|
8009
8057
|
DeletePaymentMethod: deletePaymentMethod,
|
|
8010
8058
|
UpdateBankAccount: updateBankAccount
|
|
8011
8059
|
};
|
|
8012
8060
|
|
|
8013
|
-
const name$
|
|
8061
|
+
const name$18 = "generateConvertToAxonStatement";
|
|
8014
8062
|
const mutation$b = Selector("Mutation")({
|
|
8015
|
-
[name$
|
|
8063
|
+
[name$18]: [{ data: $("data", "ConvertToAxonStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8016
8064
|
});
|
|
8017
8065
|
|
|
8018
8066
|
const generateConvertToAxonStatement = {
|
|
8019
8067
|
__proto__: null,
|
|
8020
8068
|
mutation: mutation$b,
|
|
8021
|
-
name: name$
|
|
8069
|
+
name: name$18
|
|
8022
8070
|
};
|
|
8023
8071
|
|
|
8024
|
-
const name$
|
|
8072
|
+
const name$17 = "processConvertToAxonStatement";
|
|
8025
8073
|
const mutation$a = Selector("Mutation")({
|
|
8026
|
-
[name$
|
|
8074
|
+
[name$17]: [{ data: $("data", "ProcessConvertToAxonStatementInput!") }, true]
|
|
8027
8075
|
});
|
|
8028
8076
|
|
|
8029
8077
|
const processConvertToAxonStatement = {
|
|
8030
8078
|
__proto__: null,
|
|
8031
8079
|
mutation: mutation$a,
|
|
8032
|
-
name: name$
|
|
8080
|
+
name: name$17
|
|
8033
8081
|
};
|
|
8034
8082
|
|
|
8035
|
-
const index$
|
|
8083
|
+
const index$q = {
|
|
8036
8084
|
__proto__: null,
|
|
8037
8085
|
GenerateConvertToAxonStatement: generateConvertToAxonStatement,
|
|
8038
8086
|
ProcessConvertToAxonStatement: processConvertToAxonStatement
|
|
8039
8087
|
};
|
|
8040
8088
|
|
|
8041
|
-
const name$
|
|
8089
|
+
const name$16 = "initSystem";
|
|
8042
8090
|
const mutation$9 = Selector("Mutation")({
|
|
8043
|
-
[name$
|
|
8091
|
+
[name$16]: [{ data: $("data", "Init!") }, systemInfoSelector]
|
|
8044
8092
|
});
|
|
8045
8093
|
|
|
8046
8094
|
const initSystem = {
|
|
8047
8095
|
__proto__: null,
|
|
8048
8096
|
mutation: mutation$9,
|
|
8049
|
-
name: name$
|
|
8097
|
+
name: name$16
|
|
8050
8098
|
};
|
|
8051
8099
|
|
|
8052
|
-
const name$
|
|
8100
|
+
const name$15 = "installSystem";
|
|
8053
8101
|
const mutation$8 = Selector("Mutation")({
|
|
8054
|
-
[name$
|
|
8102
|
+
[name$15]: [{ data: $("data", "Install!") }, systemInfoSelector]
|
|
8055
8103
|
});
|
|
8056
8104
|
|
|
8057
8105
|
const installSystem = {
|
|
8058
8106
|
__proto__: null,
|
|
8059
8107
|
mutation: mutation$8,
|
|
8060
|
-
name: name$
|
|
8108
|
+
name: name$15
|
|
8061
8109
|
};
|
|
8062
8110
|
|
|
8063
|
-
const name$
|
|
8111
|
+
const name$14 = "setWif";
|
|
8064
8112
|
const mutation$7 = Selector("Mutation")({
|
|
8065
|
-
[name$
|
|
8113
|
+
[name$14]: [{ data: $("data", "SetWifInput!") }, true]
|
|
8066
8114
|
});
|
|
8067
8115
|
|
|
8068
8116
|
const saveWif = {
|
|
8069
8117
|
__proto__: null,
|
|
8070
8118
|
mutation: mutation$7,
|
|
8071
|
-
name: name$
|
|
8119
|
+
name: name$14
|
|
8072
8120
|
};
|
|
8073
8121
|
|
|
8074
|
-
const name$
|
|
8122
|
+
const name$13 = "startInstall";
|
|
8075
8123
|
const mutation$6 = Selector("Mutation")({
|
|
8076
|
-
[name$
|
|
8124
|
+
[name$13]: [{ data: $("data", "StartInstallInput!") }, {
|
|
8077
8125
|
install_code: true,
|
|
8078
8126
|
coopname: true
|
|
8079
8127
|
}]
|
|
@@ -8082,32 +8130,32 @@ const mutation$6 = Selector("Mutation")({
|
|
|
8082
8130
|
const startInstall = {
|
|
8083
8131
|
__proto__: null,
|
|
8084
8132
|
mutation: mutation$6,
|
|
8085
|
-
name: name$
|
|
8133
|
+
name: name$13
|
|
8086
8134
|
};
|
|
8087
8135
|
|
|
8088
|
-
const name$
|
|
8136
|
+
const name$12 = "updateSettings";
|
|
8089
8137
|
const mutation$5 = Selector("Mutation")({
|
|
8090
|
-
[name$
|
|
8138
|
+
[name$12]: [{ data: $("data", "UpdateSettingsInput!") }, rawSettingsSelector]
|
|
8091
8139
|
});
|
|
8092
8140
|
|
|
8093
8141
|
const updateSettings = {
|
|
8094
8142
|
__proto__: null,
|
|
8095
8143
|
mutation: mutation$5,
|
|
8096
|
-
name: name$
|
|
8144
|
+
name: name$12
|
|
8097
8145
|
};
|
|
8098
8146
|
|
|
8099
|
-
const name$
|
|
8147
|
+
const name$11 = "updateSystem";
|
|
8100
8148
|
const mutation$4 = Selector("Mutation")({
|
|
8101
|
-
[name$
|
|
8149
|
+
[name$11]: [{ data: $("data", "Update!") }, systemInfoSelector]
|
|
8102
8150
|
});
|
|
8103
8151
|
|
|
8104
8152
|
const updateSystem = {
|
|
8105
8153
|
__proto__: null,
|
|
8106
8154
|
mutation: mutation$4,
|
|
8107
|
-
name: name$
|
|
8155
|
+
name: name$11
|
|
8108
8156
|
};
|
|
8109
8157
|
|
|
8110
|
-
const index$
|
|
8158
|
+
const index$p = {
|
|
8111
8159
|
__proto__: null,
|
|
8112
8160
|
InitSystem: initSystem,
|
|
8113
8161
|
InstallSystem: installSystem,
|
|
@@ -8117,31 +8165,31 @@ const index$o = {
|
|
|
8117
8165
|
UpdateSystem: updateSystem
|
|
8118
8166
|
};
|
|
8119
8167
|
|
|
8120
|
-
const name
|
|
8168
|
+
const name$10 = "createWithdraw";
|
|
8121
8169
|
const mutation$3 = Selector("Mutation")({
|
|
8122
|
-
[name
|
|
8170
|
+
[name$10]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
|
|
8123
8171
|
});
|
|
8124
8172
|
|
|
8125
8173
|
const createWithdraw = {
|
|
8126
8174
|
__proto__: null,
|
|
8127
8175
|
mutation: mutation$3,
|
|
8128
|
-
name: name
|
|
8176
|
+
name: name$10
|
|
8129
8177
|
};
|
|
8130
8178
|
|
|
8131
|
-
const name
|
|
8179
|
+
const name$$ = "createDepositPayment";
|
|
8132
8180
|
const mutation$2 = Selector("Mutation")({
|
|
8133
|
-
[name
|
|
8181
|
+
[name$$]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
8134
8182
|
});
|
|
8135
8183
|
|
|
8136
8184
|
const createDepositPayment = {
|
|
8137
8185
|
__proto__: null,
|
|
8138
8186
|
mutation: mutation$2,
|
|
8139
|
-
name: name
|
|
8187
|
+
name: name$$
|
|
8140
8188
|
};
|
|
8141
8189
|
|
|
8142
|
-
const name$
|
|
8190
|
+
const name$_ = "generateReturnByMoneyStatementDocument";
|
|
8143
8191
|
const mutation$1 = Selector("Mutation")({
|
|
8144
|
-
[name$
|
|
8192
|
+
[name$_]: [
|
|
8145
8193
|
{
|
|
8146
8194
|
data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
|
|
8147
8195
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -8153,12 +8201,12 @@ const mutation$1 = Selector("Mutation")({
|
|
|
8153
8201
|
const generateReturnByMoneyStatementDocument = {
|
|
8154
8202
|
__proto__: null,
|
|
8155
8203
|
mutation: mutation$1,
|
|
8156
|
-
name: name$
|
|
8204
|
+
name: name$_
|
|
8157
8205
|
};
|
|
8158
8206
|
|
|
8159
|
-
const name$
|
|
8207
|
+
const name$Z = "generateReturnByMoneyDecisionDocument";
|
|
8160
8208
|
const mutation = Selector("Mutation")({
|
|
8161
|
-
[name$
|
|
8209
|
+
[name$Z]: [
|
|
8162
8210
|
{
|
|
8163
8211
|
data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
|
|
8164
8212
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -8170,10 +8218,10 @@ const mutation = Selector("Mutation")({
|
|
|
8170
8218
|
const generateReturnByMoneyDecisionDocument = {
|
|
8171
8219
|
__proto__: null,
|
|
8172
8220
|
mutation: mutation,
|
|
8173
|
-
name: name$
|
|
8221
|
+
name: name$Z
|
|
8174
8222
|
};
|
|
8175
8223
|
|
|
8176
|
-
const index$
|
|
8224
|
+
const index$o = {
|
|
8177
8225
|
__proto__: null,
|
|
8178
8226
|
CreateDepositPayment: createDepositPayment,
|
|
8179
8227
|
CreateWithdraw: createWithdraw,
|
|
@@ -8183,46 +8231,46 @@ const index$n = {
|
|
|
8183
8231
|
|
|
8184
8232
|
const Mutations = {
|
|
8185
8233
|
__proto__: null,
|
|
8186
|
-
Accounts: index$
|
|
8187
|
-
Agreements: index$
|
|
8188
|
-
Auth: index$
|
|
8189
|
-
Branches: index$
|
|
8190
|
-
Capital: index$
|
|
8191
|
-
Chairman: index$
|
|
8192
|
-
ChatCoop: index$
|
|
8193
|
-
Cooplace: index$
|
|
8194
|
-
Extensions: index$
|
|
8195
|
-
FreeDecisions: index$
|
|
8196
|
-
Gateway: index$
|
|
8197
|
-
Meet: index$
|
|
8198
|
-
Notification: index$
|
|
8199
|
-
Participants: index$
|
|
8200
|
-
PaymentMethods: index$
|
|
8201
|
-
Provider: index$
|
|
8202
|
-
System: index$
|
|
8203
|
-
Wallet: index$
|
|
8204
|
-
};
|
|
8205
|
-
|
|
8206
|
-
const name$
|
|
8207
|
-
const query$
|
|
8208
|
-
[name$
|
|
8234
|
+
Accounts: index$F,
|
|
8235
|
+
Agreements: index$E,
|
|
8236
|
+
Auth: index$D,
|
|
8237
|
+
Branches: index$C,
|
|
8238
|
+
Capital: index$B,
|
|
8239
|
+
Chairman: index$A,
|
|
8240
|
+
ChatCoop: index$z,
|
|
8241
|
+
Cooplace: index$y,
|
|
8242
|
+
Extensions: index$x,
|
|
8243
|
+
FreeDecisions: index$w,
|
|
8244
|
+
Gateway: index$v,
|
|
8245
|
+
Meet: index$u,
|
|
8246
|
+
Notification: index$t,
|
|
8247
|
+
Participants: index$s,
|
|
8248
|
+
PaymentMethods: index$r,
|
|
8249
|
+
Provider: index$q,
|
|
8250
|
+
System: index$p,
|
|
8251
|
+
Wallet: index$o
|
|
8252
|
+
};
|
|
8253
|
+
|
|
8254
|
+
const name$Y = "getAccount";
|
|
8255
|
+
const query$Y = Selector("Query")({
|
|
8256
|
+
[name$Y]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
|
|
8209
8257
|
});
|
|
8210
8258
|
|
|
8211
8259
|
const getAccount = {
|
|
8212
8260
|
__proto__: null,
|
|
8213
|
-
name: name$
|
|
8214
|
-
query: query$
|
|
8261
|
+
name: name$Y,
|
|
8262
|
+
query: query$Y
|
|
8215
8263
|
};
|
|
8216
8264
|
|
|
8217
|
-
const name$
|
|
8218
|
-
const query$
|
|
8219
|
-
[name$
|
|
8265
|
+
const name$X = "getAccounts";
|
|
8266
|
+
const query$X = Selector("Query")({
|
|
8267
|
+
[name$X]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
8220
8268
|
});
|
|
8221
8269
|
|
|
8222
8270
|
const getAccounts = {
|
|
8223
8271
|
__proto__: null,
|
|
8224
|
-
name: name$
|
|
8225
|
-
query: query$
|
|
8272
|
+
name: name$X,
|
|
8273
|
+
query: query$X
|
|
8226
8274
|
};
|
|
8227
8275
|
|
|
8228
8276
|
const rawSearchPrivateAccountsResultSelector = {
|
|
@@ -8239,18 +8287,18 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
|
|
|
8239
8287
|
rawSearchPrivateAccountsResultSelector
|
|
8240
8288
|
);
|
|
8241
8289
|
|
|
8242
|
-
const name$
|
|
8243
|
-
const query$
|
|
8244
|
-
[name$
|
|
8290
|
+
const name$W = "searchPrivateAccounts";
|
|
8291
|
+
const query$W = Selector("Query")({
|
|
8292
|
+
[name$W]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
|
|
8245
8293
|
});
|
|
8246
8294
|
|
|
8247
8295
|
const searchPrivateAccounts = {
|
|
8248
8296
|
__proto__: null,
|
|
8249
|
-
name: name$
|
|
8250
|
-
query: query$
|
|
8297
|
+
name: name$W,
|
|
8298
|
+
query: query$W
|
|
8251
8299
|
};
|
|
8252
8300
|
|
|
8253
|
-
const index$
|
|
8301
|
+
const index$n = {
|
|
8254
8302
|
__proto__: null,
|
|
8255
8303
|
GetAccount: getAccount,
|
|
8256
8304
|
GetAccounts: getAccounts,
|
|
@@ -8291,25 +8339,25 @@ const rawAgendaSelector = {
|
|
|
8291
8339
|
};
|
|
8292
8340
|
const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
|
|
8293
8341
|
|
|
8294
|
-
const name$
|
|
8295
|
-
const query$
|
|
8296
|
-
[name$
|
|
8342
|
+
const name$V = "getAgenda";
|
|
8343
|
+
const query$V = Selector("Query")({
|
|
8344
|
+
[name$V]: agendaSelector
|
|
8297
8345
|
});
|
|
8298
8346
|
|
|
8299
8347
|
const getAgenda = {
|
|
8300
8348
|
__proto__: null,
|
|
8301
|
-
name: name$
|
|
8302
|
-
query: query$
|
|
8349
|
+
name: name$V,
|
|
8350
|
+
query: query$V
|
|
8303
8351
|
};
|
|
8304
8352
|
|
|
8305
|
-
const index$
|
|
8353
|
+
const index$m = {
|
|
8306
8354
|
__proto__: null,
|
|
8307
8355
|
GetAgenda: getAgenda
|
|
8308
8356
|
};
|
|
8309
8357
|
|
|
8310
|
-
const name$
|
|
8311
|
-
const query$
|
|
8312
|
-
[name$
|
|
8358
|
+
const name$U = "agreements";
|
|
8359
|
+
const query$U = Selector("Query")({
|
|
8360
|
+
[name$U]: [
|
|
8313
8361
|
{
|
|
8314
8362
|
filter: $("filter", "AgreementFilter"),
|
|
8315
8363
|
options: $("options", "PaginationInput")
|
|
@@ -8320,19 +8368,19 @@ const query$T = Selector("Query")({
|
|
|
8320
8368
|
|
|
8321
8369
|
const agreements = {
|
|
8322
8370
|
__proto__: null,
|
|
8323
|
-
name: name$
|
|
8324
|
-
query: query$
|
|
8371
|
+
name: name$U,
|
|
8372
|
+
query: query$U
|
|
8325
8373
|
};
|
|
8326
8374
|
|
|
8327
|
-
const index$
|
|
8375
|
+
const index$l = {
|
|
8328
8376
|
__proto__: null,
|
|
8329
8377
|
Agreements: agreements
|
|
8330
8378
|
};
|
|
8331
8379
|
|
|
8332
8380
|
const paginatedActionsSelector = { ...paginationSelector, items: rawBlockchainActionSelector };
|
|
8333
|
-
const name$
|
|
8334
|
-
const query$
|
|
8335
|
-
[name$
|
|
8381
|
+
const name$T = "getActions";
|
|
8382
|
+
const query$T = Selector("Query")({
|
|
8383
|
+
[name$T]: [
|
|
8336
8384
|
{
|
|
8337
8385
|
filters: $("filters", "ActionFiltersInput"),
|
|
8338
8386
|
pagination: $("pagination", "PaginationInput")
|
|
@@ -8343,14 +8391,14 @@ const query$S = Selector("Query")({
|
|
|
8343
8391
|
|
|
8344
8392
|
const getActions = {
|
|
8345
8393
|
__proto__: null,
|
|
8346
|
-
name: name$
|
|
8347
|
-
query: query$
|
|
8394
|
+
name: name$T,
|
|
8395
|
+
query: query$T
|
|
8348
8396
|
};
|
|
8349
8397
|
|
|
8350
|
-
const name$
|
|
8398
|
+
const name$S = "getCurrentTableStates";
|
|
8351
8399
|
const paginatedCurrentTableStatesSelector = { ...paginationSelector, items: rawCurrentTableStateSelector };
|
|
8352
|
-
const query$
|
|
8353
|
-
[name$
|
|
8400
|
+
const query$S = Selector("Query")({
|
|
8401
|
+
[name$S]: [
|
|
8354
8402
|
{
|
|
8355
8403
|
filters: $("filters", "CurrentTableStatesFiltersInput"),
|
|
8356
8404
|
pagination: $("pagination", "PaginationInput")
|
|
@@ -8361,14 +8409,14 @@ const query$R = Selector("Query")({
|
|
|
8361
8409
|
|
|
8362
8410
|
const getCurrentTableStates = {
|
|
8363
8411
|
__proto__: null,
|
|
8364
|
-
name: name$
|
|
8365
|
-
query: query$
|
|
8412
|
+
name: name$S,
|
|
8413
|
+
query: query$S
|
|
8366
8414
|
};
|
|
8367
8415
|
|
|
8368
8416
|
const paginatedDeltasSelector = { ...paginationSelector, items: rawDeltaSelector };
|
|
8369
|
-
const name$
|
|
8370
|
-
const query$
|
|
8371
|
-
[name$
|
|
8417
|
+
const name$R = "getDeltas";
|
|
8418
|
+
const query$R = Selector("Query")({
|
|
8419
|
+
[name$R]: [
|
|
8372
8420
|
{
|
|
8373
8421
|
filters: $("filters", "DeltaFiltersInput"),
|
|
8374
8422
|
pagination: $("pagination", "PaginationInput")
|
|
@@ -8379,376 +8427,376 @@ const query$Q = Selector("Query")({
|
|
|
8379
8427
|
|
|
8380
8428
|
const getDeltas = {
|
|
8381
8429
|
__proto__: null,
|
|
8382
|
-
name: name$
|
|
8383
|
-
query: query$
|
|
8430
|
+
name: name$R,
|
|
8431
|
+
query: query$R
|
|
8384
8432
|
};
|
|
8385
8433
|
|
|
8386
|
-
const index$
|
|
8434
|
+
const index$k = {
|
|
8387
8435
|
__proto__: null,
|
|
8388
8436
|
GetActions: getActions,
|
|
8389
8437
|
GetCurrentTableStates: getCurrentTableStates,
|
|
8390
8438
|
GetDeltas: getDeltas
|
|
8391
8439
|
};
|
|
8392
8440
|
|
|
8393
|
-
const name$
|
|
8394
|
-
const query$
|
|
8395
|
-
[name$
|
|
8441
|
+
const name$Q = "getBranches";
|
|
8442
|
+
const query$Q = Selector("Query")({
|
|
8443
|
+
[name$Q]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
|
|
8396
8444
|
});
|
|
8397
8445
|
|
|
8398
8446
|
const getBranches = {
|
|
8399
8447
|
__proto__: null,
|
|
8400
|
-
name: name$
|
|
8401
|
-
query: query$
|
|
8448
|
+
name: name$Q,
|
|
8449
|
+
query: query$Q
|
|
8402
8450
|
};
|
|
8403
8451
|
|
|
8404
|
-
const name$
|
|
8405
|
-
const query$
|
|
8406
|
-
[name$
|
|
8452
|
+
const name$P = "getBranches";
|
|
8453
|
+
const query$P = Selector("Query")({
|
|
8454
|
+
[name$P]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
|
|
8407
8455
|
});
|
|
8408
8456
|
|
|
8409
8457
|
const getPublicBranches = {
|
|
8410
8458
|
__proto__: null,
|
|
8411
|
-
name: name$
|
|
8412
|
-
query: query$
|
|
8459
|
+
name: name$P,
|
|
8460
|
+
query: query$P
|
|
8413
8461
|
};
|
|
8414
8462
|
|
|
8415
|
-
const index$
|
|
8463
|
+
const index$j = {
|
|
8416
8464
|
__proto__: null,
|
|
8417
8465
|
GetBranches: getBranches,
|
|
8418
8466
|
GetPublicBranches: getPublicBranches
|
|
8419
8467
|
};
|
|
8420
8468
|
|
|
8421
|
-
const name$
|
|
8422
|
-
const query$
|
|
8423
|
-
[name$
|
|
8469
|
+
const name$O = "capitalVotes";
|
|
8470
|
+
const query$O = Selector("Query")({
|
|
8471
|
+
[name$O]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
|
|
8424
8472
|
});
|
|
8425
8473
|
|
|
8426
8474
|
const getVotes = {
|
|
8475
|
+
__proto__: null,
|
|
8476
|
+
name: name$O,
|
|
8477
|
+
query: query$O
|
|
8478
|
+
};
|
|
8479
|
+
|
|
8480
|
+
const name$N = "capitalVote";
|
|
8481
|
+
const query$N = Selector("Query")({
|
|
8482
|
+
[name$N]: [{ data: $("data", "GetVoteInput!") }, voteSelector]
|
|
8483
|
+
});
|
|
8484
|
+
|
|
8485
|
+
const getVote = {
|
|
8427
8486
|
__proto__: null,
|
|
8428
8487
|
name: name$N,
|
|
8429
8488
|
query: query$N
|
|
8430
8489
|
};
|
|
8431
8490
|
|
|
8432
|
-
const name$M = "
|
|
8491
|
+
const name$M = "capitalProjects";
|
|
8433
8492
|
const query$M = Selector("Query")({
|
|
8434
|
-
[name$M]: [{
|
|
8493
|
+
[name$M]: [{ filter: $("filter", "CapitalProjectFilter"), options: $("options", "PaginationInput") }, projectsPaginationSelector]
|
|
8435
8494
|
});
|
|
8436
8495
|
|
|
8437
|
-
const
|
|
8496
|
+
const getProjects = {
|
|
8438
8497
|
__proto__: null,
|
|
8439
8498
|
name: name$M,
|
|
8440
8499
|
query: query$M
|
|
8441
8500
|
};
|
|
8442
8501
|
|
|
8443
|
-
const name$L = "
|
|
8502
|
+
const name$L = "capitalProject";
|
|
8444
8503
|
const query$L = Selector("Query")({
|
|
8445
|
-
[name$L]: [{
|
|
8504
|
+
[name$L]: [{ data: $("data", "GetProjectInput!") }, projectSelector]
|
|
8446
8505
|
});
|
|
8447
8506
|
|
|
8448
|
-
const
|
|
8507
|
+
const getProject = {
|
|
8449
8508
|
__proto__: null,
|
|
8450
8509
|
name: name$L,
|
|
8451
8510
|
query: query$L
|
|
8452
8511
|
};
|
|
8453
8512
|
|
|
8454
|
-
const name$K = "
|
|
8513
|
+
const name$K = "capitalProjectWithRelations";
|
|
8455
8514
|
const query$K = Selector("Query")({
|
|
8456
|
-
[name$K]: [{ data: $("data", "
|
|
8515
|
+
[name$K]: [{ data: $("data", "GetProjectWithRelationsInput!") }, projectSelector]
|
|
8457
8516
|
});
|
|
8458
8517
|
|
|
8459
|
-
const
|
|
8518
|
+
const getProjectWithRelations = {
|
|
8460
8519
|
__proto__: null,
|
|
8461
8520
|
name: name$K,
|
|
8462
8521
|
query: query$K
|
|
8463
8522
|
};
|
|
8464
8523
|
|
|
8465
|
-
const name$J = "
|
|
8524
|
+
const name$J = "capitalSegments";
|
|
8466
8525
|
const query$J = Selector("Query")({
|
|
8467
|
-
[name$J]: [{
|
|
8526
|
+
[name$J]: [{ filter: $("filter", "CapitalSegmentFilter"), options: $("options", "PaginationInput") }, segmentsPaginationSelector]
|
|
8468
8527
|
});
|
|
8469
8528
|
|
|
8470
|
-
const
|
|
8529
|
+
const getSegments = {
|
|
8471
8530
|
__proto__: null,
|
|
8472
8531
|
name: name$J,
|
|
8473
8532
|
query: query$J
|
|
8474
8533
|
};
|
|
8475
8534
|
|
|
8476
|
-
const name$I = "
|
|
8535
|
+
const name$I = "capitalSegment";
|
|
8477
8536
|
const query$I = Selector("Query")({
|
|
8478
|
-
[name$I]: [{ filter: $("filter", "CapitalSegmentFilter")
|
|
8537
|
+
[name$I]: [{ filter: $("filter", "CapitalSegmentFilter") }, segmentSelector]
|
|
8479
8538
|
});
|
|
8480
8539
|
|
|
8481
|
-
const
|
|
8540
|
+
const getSegment = {
|
|
8482
8541
|
__proto__: null,
|
|
8483
8542
|
name: name$I,
|
|
8484
8543
|
query: query$I
|
|
8485
8544
|
};
|
|
8486
8545
|
|
|
8487
|
-
const name$H = "
|
|
8546
|
+
const name$H = "capitalContributors";
|
|
8488
8547
|
const query$H = Selector("Query")({
|
|
8489
|
-
[name$H]: [{ filter: $("filter", "
|
|
8548
|
+
[name$H]: [{ filter: $("filter", "CapitalContributorFilter"), options: $("options", "PaginationInput") }, contributorsPaginationSelector]
|
|
8490
8549
|
});
|
|
8491
8550
|
|
|
8492
|
-
const
|
|
8551
|
+
const getContributors = {
|
|
8493
8552
|
__proto__: null,
|
|
8494
8553
|
name: name$H,
|
|
8495
8554
|
query: query$H
|
|
8496
8555
|
};
|
|
8497
8556
|
|
|
8498
|
-
const name$G = "
|
|
8557
|
+
const name$G = "capitalContributor";
|
|
8499
8558
|
const query$G = Selector("Query")({
|
|
8500
|
-
[name$G]: [{
|
|
8559
|
+
[name$G]: [{ data: $("data", "GetContributorInput!") }, contributorSelector]
|
|
8501
8560
|
});
|
|
8502
8561
|
|
|
8503
|
-
const
|
|
8562
|
+
const getContributor = {
|
|
8504
8563
|
__proto__: null,
|
|
8505
8564
|
name: name$G,
|
|
8506
8565
|
query: query$G
|
|
8507
8566
|
};
|
|
8508
8567
|
|
|
8509
|
-
const name$F = "
|
|
8568
|
+
const name$F = "capitalInvests";
|
|
8510
8569
|
const query$F = Selector("Query")({
|
|
8511
|
-
[name$F]: [{
|
|
8570
|
+
[name$F]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, investsPaginationSelector]
|
|
8512
8571
|
});
|
|
8513
8572
|
|
|
8514
|
-
const
|
|
8573
|
+
const getInvests = {
|
|
8515
8574
|
__proto__: null,
|
|
8516
8575
|
name: name$F,
|
|
8517
8576
|
query: query$F
|
|
8518
8577
|
};
|
|
8519
8578
|
|
|
8520
|
-
const name$E = "
|
|
8579
|
+
const name$E = "capitalInvest";
|
|
8521
8580
|
const query$E = Selector("Query")({
|
|
8522
|
-
[name$E]: [{
|
|
8581
|
+
[name$E]: [{ data: $("data", "GetInvestInput!") }, investSelector]
|
|
8523
8582
|
});
|
|
8524
8583
|
|
|
8525
|
-
const
|
|
8584
|
+
const getInvest = {
|
|
8526
8585
|
__proto__: null,
|
|
8527
8586
|
name: name$E,
|
|
8528
8587
|
query: query$E
|
|
8529
8588
|
};
|
|
8530
8589
|
|
|
8531
|
-
const name$D = "
|
|
8590
|
+
const name$D = "capitalProgramInvests";
|
|
8532
8591
|
const query$D = Selector("Query")({
|
|
8533
|
-
[name$D]: [{
|
|
8592
|
+
[name$D]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, programInvestsPaginationSelector]
|
|
8534
8593
|
});
|
|
8535
8594
|
|
|
8536
|
-
const
|
|
8595
|
+
const getProgramInvests = {
|
|
8537
8596
|
__proto__: null,
|
|
8538
8597
|
name: name$D,
|
|
8539
8598
|
query: query$D
|
|
8540
8599
|
};
|
|
8541
8600
|
|
|
8542
|
-
const name$C = "
|
|
8601
|
+
const name$C = "capitalProgramInvest";
|
|
8543
8602
|
const query$C = Selector("Query")({
|
|
8544
|
-
[name$C]: [{
|
|
8603
|
+
[name$C]: [{ data: $("data", "GetProgramInvestInput!") }, programInvestSelector]
|
|
8545
8604
|
});
|
|
8546
8605
|
|
|
8547
|
-
const
|
|
8606
|
+
const getProgramInvest = {
|
|
8548
8607
|
__proto__: null,
|
|
8549
8608
|
name: name$C,
|
|
8550
8609
|
query: query$C
|
|
8551
8610
|
};
|
|
8552
8611
|
|
|
8553
|
-
const name$B = "
|
|
8612
|
+
const name$B = "capitalDebts";
|
|
8554
8613
|
const query$B = Selector("Query")({
|
|
8555
|
-
[name$B]: [{
|
|
8614
|
+
[name$B]: [{ filter: $("filter", "DebtFilter"), options: $("options", "PaginationInput") }, debtsPaginationSelector]
|
|
8556
8615
|
});
|
|
8557
8616
|
|
|
8558
|
-
const
|
|
8617
|
+
const getDebts = {
|
|
8559
8618
|
__proto__: null,
|
|
8560
8619
|
name: name$B,
|
|
8561
8620
|
query: query$B
|
|
8562
8621
|
};
|
|
8563
8622
|
|
|
8564
|
-
const name$A = "
|
|
8623
|
+
const name$A = "capitalDebt";
|
|
8565
8624
|
const query$A = Selector("Query")({
|
|
8566
|
-
[name$A]: [{
|
|
8625
|
+
[name$A]: [{ data: $("data", "GetDebtInput!") }, debtSelector]
|
|
8567
8626
|
});
|
|
8568
8627
|
|
|
8569
|
-
const
|
|
8628
|
+
const getDebt = {
|
|
8570
8629
|
__proto__: null,
|
|
8571
8630
|
name: name$A,
|
|
8572
8631
|
query: query$A
|
|
8573
8632
|
};
|
|
8574
8633
|
|
|
8575
|
-
const name$z = "
|
|
8634
|
+
const name$z = "capitalResults";
|
|
8576
8635
|
const query$z = Selector("Query")({
|
|
8577
|
-
[name$z]: [{
|
|
8636
|
+
[name$z]: [{ filter: $("filter", "ResultFilter"), options: $("options", "PaginationInput") }, resultsPaginationSelector]
|
|
8578
8637
|
});
|
|
8579
8638
|
|
|
8580
|
-
const
|
|
8639
|
+
const getResults = {
|
|
8581
8640
|
__proto__: null,
|
|
8582
8641
|
name: name$z,
|
|
8583
8642
|
query: query$z
|
|
8584
8643
|
};
|
|
8585
8644
|
|
|
8586
|
-
const name$y = "
|
|
8645
|
+
const name$y = "capitalResult";
|
|
8587
8646
|
const query$y = Selector("Query")({
|
|
8588
|
-
[name$y]: [{
|
|
8647
|
+
[name$y]: [{ data: $("data", "GetResultInput!") }, resultSelector]
|
|
8589
8648
|
});
|
|
8590
8649
|
|
|
8591
|
-
const
|
|
8650
|
+
const getResult = {
|
|
8592
8651
|
__proto__: null,
|
|
8593
8652
|
name: name$y,
|
|
8594
8653
|
query: query$y
|
|
8595
8654
|
};
|
|
8596
8655
|
|
|
8597
|
-
const name$x = "
|
|
8656
|
+
const name$x = "capitalExpenses";
|
|
8598
8657
|
const query$x = Selector("Query")({
|
|
8599
|
-
[name$x]: [{
|
|
8658
|
+
[name$x]: [{ filter: $("filter", "ExpenseFilter"), options: $("options", "PaginationInput") }, expensesPaginationSelector]
|
|
8600
8659
|
});
|
|
8601
8660
|
|
|
8602
|
-
const
|
|
8661
|
+
const getExpenses = {
|
|
8603
8662
|
__proto__: null,
|
|
8604
8663
|
name: name$x,
|
|
8605
8664
|
query: query$x
|
|
8606
8665
|
};
|
|
8607
8666
|
|
|
8608
|
-
const name$w = "
|
|
8667
|
+
const name$w = "capitalExpense";
|
|
8609
8668
|
const query$w = Selector("Query")({
|
|
8610
|
-
[name$w]: [{
|
|
8669
|
+
[name$w]: [{ data: $("data", "GetExpenseInput!") }, expenseSelector]
|
|
8611
8670
|
});
|
|
8612
8671
|
|
|
8613
|
-
const
|
|
8672
|
+
const getExpense = {
|
|
8614
8673
|
__proto__: null,
|
|
8615
8674
|
name: name$w,
|
|
8616
8675
|
query: query$w
|
|
8617
8676
|
};
|
|
8618
8677
|
|
|
8619
|
-
const name$v = "
|
|
8678
|
+
const name$v = "capitalTimeStats";
|
|
8620
8679
|
const query$v = Selector("Query")({
|
|
8621
|
-
[name$v]: [{ data: $("data", "
|
|
8680
|
+
[name$v]: [{ data: $("data", "CapitalTimeStatsInput"), options: $("options", "PaginationInput") }, flexibleTimeStatsSelector]
|
|
8622
8681
|
});
|
|
8623
8682
|
|
|
8624
|
-
const
|
|
8683
|
+
const getTimeStats = {
|
|
8625
8684
|
__proto__: null,
|
|
8626
8685
|
name: name$v,
|
|
8627
8686
|
query: query$v
|
|
8628
8687
|
};
|
|
8629
8688
|
|
|
8630
|
-
const name$u = "
|
|
8689
|
+
const name$u = "capitalTimeEntries";
|
|
8631
8690
|
const query$u = Selector("Query")({
|
|
8632
|
-
[name$u]: [{
|
|
8691
|
+
[name$u]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesPaginationSelector]
|
|
8633
8692
|
});
|
|
8634
8693
|
|
|
8635
|
-
const
|
|
8694
|
+
const getTimeEntries = {
|
|
8636
8695
|
__proto__: null,
|
|
8637
8696
|
name: name$u,
|
|
8638
8697
|
query: query$u
|
|
8639
8698
|
};
|
|
8640
8699
|
|
|
8641
|
-
const name$t = "
|
|
8700
|
+
const name$t = "capitalTimeEntriesByIssues";
|
|
8642
8701
|
const query$t = Selector("Query")({
|
|
8643
|
-
[name$t]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") },
|
|
8702
|
+
[name$t]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesByIssuesPaginationSelector]
|
|
8644
8703
|
});
|
|
8645
8704
|
|
|
8646
|
-
const
|
|
8705
|
+
const getTimeEntriesByIssues = {
|
|
8647
8706
|
__proto__: null,
|
|
8648
8707
|
name: name$t,
|
|
8649
8708
|
query: query$t
|
|
8650
8709
|
};
|
|
8651
8710
|
|
|
8652
|
-
const name$s = "
|
|
8711
|
+
const name$s = "capitalCommit";
|
|
8653
8712
|
const query$s = Selector("Query")({
|
|
8654
|
-
[name$s]: [{
|
|
8713
|
+
[name$s]: [{ data: $("data", "GetCapitalCommitByHashInput!") }, commitSelector]
|
|
8655
8714
|
});
|
|
8656
8715
|
|
|
8657
|
-
const
|
|
8716
|
+
const getCommit = {
|
|
8658
8717
|
__proto__: null,
|
|
8659
8718
|
name: name$s,
|
|
8660
8719
|
query: query$s
|
|
8661
8720
|
};
|
|
8662
8721
|
|
|
8663
|
-
const name$r = "
|
|
8722
|
+
const name$r = "capitalStories";
|
|
8664
8723
|
const query$r = Selector("Query")({
|
|
8665
|
-
[name$r]: [{
|
|
8724
|
+
[name$r]: [{ filter: $("filter", "CapitalStoryFilter"), options: $("options", "PaginationInput") }, storiesPaginationSelector]
|
|
8666
8725
|
});
|
|
8667
8726
|
|
|
8668
|
-
const
|
|
8727
|
+
const getStories = {
|
|
8669
8728
|
__proto__: null,
|
|
8670
8729
|
name: name$r,
|
|
8671
8730
|
query: query$r
|
|
8672
8731
|
};
|
|
8673
8732
|
|
|
8674
|
-
const name$q = "
|
|
8733
|
+
const name$q = "capitalStory";
|
|
8675
8734
|
const query$q = Selector("Query")({
|
|
8676
|
-
[name$q]: [{
|
|
8735
|
+
[name$q]: [{ data: $("data", "GetCapitalStoryByHashInput!") }, storySelector]
|
|
8677
8736
|
});
|
|
8678
8737
|
|
|
8679
|
-
const
|
|
8738
|
+
const getStory = {
|
|
8680
8739
|
__proto__: null,
|
|
8681
8740
|
name: name$q,
|
|
8682
8741
|
query: query$q
|
|
8683
8742
|
};
|
|
8684
8743
|
|
|
8685
|
-
const name$p = "
|
|
8744
|
+
const name$p = "capitalIssues";
|
|
8686
8745
|
const query$p = Selector("Query")({
|
|
8687
|
-
[name$p]: [{
|
|
8746
|
+
[name$p]: [{ filter: $("filter", "CapitalIssueFilter"), options: $("options", "PaginationInput") }, issuesPaginationSelector]
|
|
8688
8747
|
});
|
|
8689
8748
|
|
|
8690
|
-
const
|
|
8749
|
+
const getIssues = {
|
|
8691
8750
|
__proto__: null,
|
|
8692
8751
|
name: name$p,
|
|
8693
8752
|
query: query$p
|
|
8694
8753
|
};
|
|
8695
8754
|
|
|
8696
|
-
const name$o = "
|
|
8755
|
+
const name$o = "capitalIssue";
|
|
8697
8756
|
const query$o = Selector("Query")({
|
|
8698
|
-
[name$o]: [{
|
|
8757
|
+
[name$o]: [{ data: $("data", "GetCapitalIssueByHashInput!") }, issueSelector]
|
|
8699
8758
|
});
|
|
8700
8759
|
|
|
8701
|
-
const
|
|
8760
|
+
const getIssue = {
|
|
8702
8761
|
__proto__: null,
|
|
8703
8762
|
name: name$o,
|
|
8704
8763
|
query: query$o
|
|
8705
8764
|
};
|
|
8706
8765
|
|
|
8707
|
-
const name$n = "
|
|
8766
|
+
const name$n = "capitalCommits";
|
|
8708
8767
|
const query$n = Selector("Query")({
|
|
8709
|
-
[name$n]: [{
|
|
8768
|
+
[name$n]: [{ filter: $("filter", "CapitalCommitFilter"), options: $("options", "PaginationInput") }, commitsPaginationSelector]
|
|
8710
8769
|
});
|
|
8711
8770
|
|
|
8712
|
-
const
|
|
8771
|
+
const getCommits = {
|
|
8713
8772
|
__proto__: null,
|
|
8714
8773
|
name: name$n,
|
|
8715
8774
|
query: query$n
|
|
8716
8775
|
};
|
|
8717
8776
|
|
|
8718
|
-
const name$m = "
|
|
8777
|
+
const name$m = "capitalCycles";
|
|
8719
8778
|
const query$m = Selector("Query")({
|
|
8720
|
-
[name$m]: [{ filter: $("filter", "
|
|
8779
|
+
[name$m]: [{ filter: $("filter", "CapitalCycleFilter"), options: $("options", "PaginationInput") }, cyclesPaginationSelector]
|
|
8721
8780
|
});
|
|
8722
8781
|
|
|
8723
|
-
const
|
|
8782
|
+
const getCycles = {
|
|
8724
8783
|
__proto__: null,
|
|
8725
8784
|
name: name$m,
|
|
8726
8785
|
query: query$m
|
|
8727
8786
|
};
|
|
8728
8787
|
|
|
8729
|
-
const name$l = "
|
|
8788
|
+
const name$l = "capitalState";
|
|
8730
8789
|
const query$l = Selector("Query")({
|
|
8731
|
-
[name$l]: [{
|
|
8790
|
+
[name$l]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
|
|
8732
8791
|
});
|
|
8733
8792
|
|
|
8734
|
-
const
|
|
8793
|
+
const getState = {
|
|
8735
8794
|
__proto__: null,
|
|
8736
8795
|
name: name$l,
|
|
8737
8796
|
query: query$l
|
|
8738
8797
|
};
|
|
8739
8798
|
|
|
8740
|
-
const
|
|
8741
|
-
const query$k = Selector("Query")({
|
|
8742
|
-
[name$k]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
|
|
8743
|
-
});
|
|
8744
|
-
|
|
8745
|
-
const getState = {
|
|
8746
|
-
__proto__: null,
|
|
8747
|
-
name: name$k,
|
|
8748
|
-
query: query$k
|
|
8749
|
-
};
|
|
8750
|
-
|
|
8751
|
-
const index$h = {
|
|
8799
|
+
const index$i = {
|
|
8752
8800
|
__proto__: null,
|
|
8753
8801
|
GetCommit: getCommit,
|
|
8754
8802
|
GetCommits: getCommits,
|
|
@@ -8782,9 +8830,9 @@ const index$h = {
|
|
|
8782
8830
|
GetVotes: getVotes
|
|
8783
8831
|
};
|
|
8784
8832
|
|
|
8785
|
-
const name$
|
|
8786
|
-
const query$
|
|
8787
|
-
[name$
|
|
8833
|
+
const name$k = "chairmanApprovals";
|
|
8834
|
+
const query$k = Selector("Query")({
|
|
8835
|
+
[name$k]: [
|
|
8788
8836
|
{
|
|
8789
8837
|
filter: $("filter", "ApprovalFilter"),
|
|
8790
8838
|
options: $("options", "PaginationInput")
|
|
@@ -8795,50 +8843,50 @@ const query$j = Selector("Query")({
|
|
|
8795
8843
|
|
|
8796
8844
|
const getApprovals = {
|
|
8797
8845
|
__proto__: null,
|
|
8798
|
-
name: name$
|
|
8799
|
-
query: query$
|
|
8846
|
+
name: name$k,
|
|
8847
|
+
query: query$k
|
|
8800
8848
|
};
|
|
8801
8849
|
|
|
8802
|
-
const name$
|
|
8803
|
-
const query$
|
|
8804
|
-
[name$
|
|
8850
|
+
const name$j = "chairmanApproval";
|
|
8851
|
+
const query$j = Selector("Query")({
|
|
8852
|
+
[name$j]: [{ id: $("id", "String!") }, approvalSelector]
|
|
8805
8853
|
});
|
|
8806
8854
|
|
|
8807
8855
|
const getApproval = {
|
|
8808
8856
|
__proto__: null,
|
|
8809
|
-
name: name$
|
|
8810
|
-
query: query$
|
|
8857
|
+
name: name$j,
|
|
8858
|
+
query: query$j
|
|
8811
8859
|
};
|
|
8812
8860
|
|
|
8813
|
-
const index$
|
|
8861
|
+
const index$h = {
|
|
8814
8862
|
__proto__: null,
|
|
8815
8863
|
GetApproval: getApproval,
|
|
8816
8864
|
GetApprovals: getApprovals
|
|
8817
8865
|
};
|
|
8818
8866
|
|
|
8819
|
-
const name$
|
|
8820
|
-
const query$
|
|
8821
|
-
[name$
|
|
8867
|
+
const name$i = "chatcoopCheckUsernameAvailability";
|
|
8868
|
+
const query$i = Selector("Query")({
|
|
8869
|
+
[name$i]: [{ data: $("data", "CheckMatrixUsernameInput!") }, true]
|
|
8822
8870
|
});
|
|
8823
8871
|
|
|
8824
8872
|
const checkUsernameAvailability = {
|
|
8825
8873
|
__proto__: null,
|
|
8826
|
-
name: name$
|
|
8827
|
-
query: query$
|
|
8874
|
+
name: name$i,
|
|
8875
|
+
query: query$i
|
|
8828
8876
|
};
|
|
8829
8877
|
|
|
8830
|
-
const name$
|
|
8831
|
-
const query$
|
|
8832
|
-
[name$
|
|
8878
|
+
const name$h = "chatcoopGetAccountStatus";
|
|
8879
|
+
const query$h = Selector("Query")({
|
|
8880
|
+
[name$h]: chatcoopAccountStatusSelector
|
|
8833
8881
|
});
|
|
8834
8882
|
|
|
8835
8883
|
const getAccountStatus = {
|
|
8836
8884
|
__proto__: null,
|
|
8837
|
-
name: name$
|
|
8838
|
-
query: query$
|
|
8885
|
+
name: name$h,
|
|
8886
|
+
query: query$h
|
|
8839
8887
|
};
|
|
8840
8888
|
|
|
8841
|
-
const index$
|
|
8889
|
+
const index$g = {
|
|
8842
8890
|
__proto__: null,
|
|
8843
8891
|
CheckUsernameAvailability: checkUsernameAvailability,
|
|
8844
8892
|
GetAccountStatus: getAccountStatus
|
|
@@ -8856,39 +8904,41 @@ Selector("DesktopWorkspace")(rawWorkspaceSelector);
|
|
|
8856
8904
|
const rawDesktopSelector = {
|
|
8857
8905
|
coopname: true,
|
|
8858
8906
|
layout: true,
|
|
8859
|
-
workspaces: rawWorkspaceSelector
|
|
8907
|
+
workspaces: rawWorkspaceSelector,
|
|
8908
|
+
authorizedHome: true,
|
|
8909
|
+
nonAuthorizedHome: true
|
|
8860
8910
|
};
|
|
8861
8911
|
const desktopSelector = Selector("Desktop")(rawDesktopSelector);
|
|
8862
8912
|
|
|
8863
|
-
const name$
|
|
8864
|
-
const query$
|
|
8865
|
-
[name$
|
|
8913
|
+
const name$g = "getDesktop";
|
|
8914
|
+
const query$g = Selector("Query")({
|
|
8915
|
+
[name$g]: desktopSelector
|
|
8866
8916
|
});
|
|
8867
8917
|
|
|
8868
8918
|
const getDesktop = {
|
|
8869
8919
|
__proto__: null,
|
|
8870
|
-
name: name$
|
|
8871
|
-
query: query$
|
|
8920
|
+
name: name$g,
|
|
8921
|
+
query: query$g
|
|
8872
8922
|
};
|
|
8873
8923
|
|
|
8874
|
-
const index$
|
|
8924
|
+
const index$f = {
|
|
8875
8925
|
__proto__: null,
|
|
8876
8926
|
GetDesktop: getDesktop
|
|
8877
8927
|
};
|
|
8878
8928
|
|
|
8879
8929
|
const documentPaginationSelector = { ...paginationSelector, items: rawDocumentPackageAggregateSelector };
|
|
8880
|
-
const name$
|
|
8881
|
-
const query$
|
|
8882
|
-
[name$
|
|
8930
|
+
const name$f = "getDocuments";
|
|
8931
|
+
const query$f = Selector("Query")({
|
|
8932
|
+
[name$f]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
|
|
8883
8933
|
});
|
|
8884
8934
|
|
|
8885
8935
|
const getDocuments = {
|
|
8886
8936
|
__proto__: null,
|
|
8887
|
-
name: name$
|
|
8888
|
-
query: query$
|
|
8937
|
+
name: name$f,
|
|
8938
|
+
query: query$f
|
|
8889
8939
|
};
|
|
8890
8940
|
|
|
8891
|
-
const index$
|
|
8941
|
+
const index$e = {
|
|
8892
8942
|
__proto__: null,
|
|
8893
8943
|
GetDocuments: getDocuments
|
|
8894
8944
|
};
|
|
@@ -8911,9 +8961,9 @@ const rawPaginatedExtensionLogsSelector = {
|
|
|
8911
8961
|
};
|
|
8912
8962
|
const paginatedExtensionLogsSelector = Selector("ExtensionLogsPaginationResult")(rawPaginatedExtensionLogsSelector);
|
|
8913
8963
|
|
|
8914
|
-
const name$
|
|
8915
|
-
const query$
|
|
8916
|
-
[name$
|
|
8964
|
+
const name$e = "getExtensionLogs";
|
|
8965
|
+
const query$e = Selector("Query")({
|
|
8966
|
+
[name$e]: [
|
|
8917
8967
|
{
|
|
8918
8968
|
data: $("data", "GetExtensionLogsInput"),
|
|
8919
8969
|
options: $("options", "PaginationInput")
|
|
@@ -8924,31 +8974,31 @@ const query$d = Selector("Query")({
|
|
|
8924
8974
|
|
|
8925
8975
|
const getExtensionLogs = {
|
|
8926
8976
|
__proto__: null,
|
|
8927
|
-
name: name$
|
|
8928
|
-
query: query$
|
|
8977
|
+
name: name$e,
|
|
8978
|
+
query: query$e
|
|
8929
8979
|
};
|
|
8930
8980
|
|
|
8931
|
-
const name$
|
|
8932
|
-
const query$
|
|
8933
|
-
[name$
|
|
8981
|
+
const name$d = "getExtensions";
|
|
8982
|
+
const query$d = Selector("Query")({
|
|
8983
|
+
[name$d]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
|
|
8934
8984
|
});
|
|
8935
8985
|
|
|
8936
8986
|
const getExtensions = {
|
|
8937
8987
|
__proto__: null,
|
|
8938
|
-
name: name$
|
|
8939
|
-
query: query$
|
|
8988
|
+
name: name$d,
|
|
8989
|
+
query: query$d
|
|
8940
8990
|
};
|
|
8941
8991
|
|
|
8942
|
-
const index$
|
|
8992
|
+
const index$d = {
|
|
8943
8993
|
__proto__: null,
|
|
8944
8994
|
GetExtensionLogs: getExtensionLogs,
|
|
8945
8995
|
GetExtensions: getExtensions
|
|
8946
8996
|
};
|
|
8947
8997
|
|
|
8948
8998
|
const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
|
|
8949
|
-
const name$
|
|
8950
|
-
const query$
|
|
8951
|
-
[name$
|
|
8999
|
+
const name$c = "getPayments";
|
|
9000
|
+
const query$c = Selector("Query")({
|
|
9001
|
+
[name$c]: [
|
|
8952
9002
|
{
|
|
8953
9003
|
data: $("data", "PaymentFiltersInput"),
|
|
8954
9004
|
options: $("options", "PaginationInput")
|
|
@@ -8959,88 +9009,105 @@ const query$b = Selector("Query")({
|
|
|
8959
9009
|
|
|
8960
9010
|
const getPayments = {
|
|
8961
9011
|
__proto__: null,
|
|
8962
|
-
name: name$
|
|
8963
|
-
query: query$
|
|
9012
|
+
name: name$c,
|
|
9013
|
+
query: query$c
|
|
8964
9014
|
};
|
|
8965
9015
|
|
|
8966
|
-
const index$
|
|
9016
|
+
const index$c = {
|
|
8967
9017
|
__proto__: null,
|
|
8968
9018
|
GetPayments: getPayments
|
|
8969
9019
|
};
|
|
8970
9020
|
|
|
8971
|
-
const name$
|
|
8972
|
-
const query$
|
|
8973
|
-
[name$
|
|
9021
|
+
const name$b = "getLedger";
|
|
9022
|
+
const query$b = Selector("Query")({
|
|
9023
|
+
[name$b]: [{ data: $("data", "GetLedgerInput!") }, ledgerStateSelector]
|
|
8974
9024
|
});
|
|
8975
9025
|
|
|
8976
9026
|
const getLedger = {
|
|
8977
9027
|
__proto__: null,
|
|
8978
|
-
name: name$
|
|
8979
|
-
query: query$
|
|
9028
|
+
name: name$b,
|
|
9029
|
+
query: query$b
|
|
8980
9030
|
};
|
|
8981
9031
|
|
|
8982
|
-
const name$
|
|
8983
|
-
const query$
|
|
8984
|
-
[name$
|
|
9032
|
+
const name$a = "getLedgerHistory";
|
|
9033
|
+
const query$a = Selector("Query")({
|
|
9034
|
+
[name$a]: [{ data: $("data", "GetLedgerHistoryInput!") }, rawLedgerHistorySelector]
|
|
8985
9035
|
});
|
|
8986
9036
|
|
|
8987
9037
|
const getLedgerHistory = {
|
|
8988
9038
|
__proto__: null,
|
|
8989
|
-
name: name$
|
|
8990
|
-
query: query$
|
|
9039
|
+
name: name$a,
|
|
9040
|
+
query: query$a
|
|
8991
9041
|
};
|
|
8992
9042
|
|
|
8993
|
-
const index$
|
|
9043
|
+
const index$b = {
|
|
8994
9044
|
__proto__: null,
|
|
8995
9045
|
GetLedger: getLedger,
|
|
8996
9046
|
GetLedgerHistory: getLedgerHistory
|
|
8997
9047
|
};
|
|
8998
9048
|
|
|
8999
|
-
const name$
|
|
9000
|
-
const query$
|
|
9001
|
-
[name$
|
|
9049
|
+
const name$9 = "getMeet";
|
|
9050
|
+
const query$9 = Selector("Query")({
|
|
9051
|
+
[name$9]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
|
|
9002
9052
|
});
|
|
9003
9053
|
|
|
9004
9054
|
const getMeet = {
|
|
9005
9055
|
__proto__: null,
|
|
9006
|
-
name: name$
|
|
9007
|
-
query: query$
|
|
9056
|
+
name: name$9,
|
|
9057
|
+
query: query$9
|
|
9008
9058
|
};
|
|
9009
9059
|
|
|
9010
|
-
const name$
|
|
9011
|
-
const query$
|
|
9012
|
-
[name$
|
|
9060
|
+
const name$8 = "getMeets";
|
|
9061
|
+
const query$8 = Selector("Query")({
|
|
9062
|
+
[name$8]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
|
|
9013
9063
|
});
|
|
9014
9064
|
|
|
9015
9065
|
const getMeets = {
|
|
9016
9066
|
__proto__: null,
|
|
9017
|
-
name: name$
|
|
9018
|
-
query: query$
|
|
9067
|
+
name: name$8,
|
|
9068
|
+
query: query$8
|
|
9019
9069
|
};
|
|
9020
9070
|
|
|
9021
|
-
const index$
|
|
9071
|
+
const index$a = {
|
|
9022
9072
|
__proto__: null,
|
|
9023
9073
|
GetMeet: getMeet,
|
|
9024
9074
|
GetMeets: getMeets
|
|
9025
9075
|
};
|
|
9026
9076
|
|
|
9027
|
-
const name$
|
|
9028
|
-
const query$
|
|
9029
|
-
[name$
|
|
9077
|
+
const name$7 = "getUserWebPushSubscriptions";
|
|
9078
|
+
const query$7 = Selector("Query")({
|
|
9079
|
+
[name$7]: [{ data: $("data", "GetUserSubscriptionsInput!") }, rawWebPushSubscriptionSelector]
|
|
9030
9080
|
});
|
|
9031
9081
|
|
|
9032
9082
|
const getUserWebPushSubscriptions = {
|
|
9083
|
+
__proto__: null,
|
|
9084
|
+
name: name$7,
|
|
9085
|
+
query: query$7
|
|
9086
|
+
};
|
|
9087
|
+
|
|
9088
|
+
const name$6 = "getWebPushSubscriptionStats";
|
|
9089
|
+
const query$6 = Selector("Query")({
|
|
9090
|
+
[name$6]: rawSubscriptionStatsSelector
|
|
9091
|
+
});
|
|
9092
|
+
|
|
9093
|
+
const getWebPushSubscriptionStats = {
|
|
9033
9094
|
__proto__: null,
|
|
9034
9095
|
name: name$6,
|
|
9035
9096
|
query: query$6
|
|
9036
9097
|
};
|
|
9037
9098
|
|
|
9038
|
-
const
|
|
9099
|
+
const index$9 = {
|
|
9100
|
+
__proto__: null,
|
|
9101
|
+
GetUserWebPushSubscriptions: getUserWebPushSubscriptions,
|
|
9102
|
+
GetWebPushSubscriptionStats: getWebPushSubscriptionStats
|
|
9103
|
+
};
|
|
9104
|
+
|
|
9105
|
+
const name$5 = "onecoopGetDocuments";
|
|
9039
9106
|
const query$5 = Selector("Query")({
|
|
9040
|
-
[name$5]:
|
|
9107
|
+
[name$5]: [{ data: $("data", "GetOneCoopDocumentsInput!") }, oneCoopDocumentsPaginationSelector]
|
|
9041
9108
|
});
|
|
9042
9109
|
|
|
9043
|
-
const
|
|
9110
|
+
const getOneCoopDocuments = {
|
|
9044
9111
|
__proto__: null,
|
|
9045
9112
|
name: name$5,
|
|
9046
9113
|
query: query$5
|
|
@@ -9048,8 +9115,7 @@ const getWebPushSubscriptionStats = {
|
|
|
9048
9115
|
|
|
9049
9116
|
const index$8 = {
|
|
9050
9117
|
__proto__: null,
|
|
9051
|
-
|
|
9052
|
-
GetWebPushSubscriptionStats: getWebPushSubscriptionStats
|
|
9118
|
+
GetOneCoopDocuments: getOneCoopDocuments
|
|
9053
9119
|
};
|
|
9054
9120
|
|
|
9055
9121
|
const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
|
|
@@ -9124,21 +9190,22 @@ const index$6 = {
|
|
|
9124
9190
|
|
|
9125
9191
|
const index$5 = {
|
|
9126
9192
|
__proto__: null,
|
|
9127
|
-
Accounts: index$
|
|
9128
|
-
Agenda: index$
|
|
9129
|
-
Agreements: index$
|
|
9130
|
-
BlockchainExplorer: index$
|
|
9131
|
-
Branches: index$
|
|
9132
|
-
Capital: index$
|
|
9133
|
-
Chairman: index$
|
|
9134
|
-
ChatCoop: index$
|
|
9135
|
-
Desktop: index$
|
|
9136
|
-
Documents: index$
|
|
9137
|
-
Extensions: index$
|
|
9138
|
-
Gateway: index$
|
|
9139
|
-
Ledger: index$
|
|
9140
|
-
Meet: index$
|
|
9141
|
-
Notification: index$
|
|
9193
|
+
Accounts: index$n,
|
|
9194
|
+
Agenda: index$m,
|
|
9195
|
+
Agreements: index$l,
|
|
9196
|
+
BlockchainExplorer: index$k,
|
|
9197
|
+
Branches: index$j,
|
|
9198
|
+
Capital: index$i,
|
|
9199
|
+
Chairman: index$h,
|
|
9200
|
+
ChatCoop: index$g,
|
|
9201
|
+
Desktop: index$f,
|
|
9202
|
+
Documents: index$e,
|
|
9203
|
+
Extensions: index$d,
|
|
9204
|
+
Gateway: index$c,
|
|
9205
|
+
Ledger: index$b,
|
|
9206
|
+
Meet: index$a,
|
|
9207
|
+
Notification: index$9,
|
|
9208
|
+
OneCoop: index$8,
|
|
9142
9209
|
PaymentMethods: index$7,
|
|
9143
9210
|
System: index$6
|
|
9144
9211
|
};
|
|
@@ -9237,7 +9304,7 @@ const _Client = class _Client {
|
|
|
9237
9304
|
signature
|
|
9238
9305
|
}
|
|
9239
9306
|
};
|
|
9240
|
-
const { [name$
|
|
9307
|
+
const { [name$3c]: result } = await this.thunder("mutation")(
|
|
9241
9308
|
mutation$2f,
|
|
9242
9309
|
{
|
|
9243
9310
|
variables
|
|
@@ -9359,4 +9426,4 @@ __publicField(_Client, "scalars", ZeusScalars({
|
|
|
9359
9426
|
}));
|
|
9360
9427
|
let Client = _Client;
|
|
9361
9428
|
|
|
9362
|
-
export { Classes, Client, Mutations, index$5 as Queries, index as Types, index$
|
|
9429
|
+
export { Classes, Client, Mutations, index$5 as Queries, index as Types, index$G as Zeus };
|