@coopenomics/sdk 2026.2.22-2 → 2026.2.28-4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +82 -93
- package/dist/index.cjs +1039 -839
- package/dist/index.d.cts +2742 -1253
- package/dist/index.d.mts +2742 -1253
- package/dist/index.d.ts +2742 -1253
- package/dist/index.mjs +1038 -838
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -1005,6 +1005,7 @@ const AllTypesProps = {
|
|
|
1005
1005
|
generator_offer: "SignedDigitalDocumentInput",
|
|
1006
1006
|
storage_agreement: "SignedDigitalDocumentInput"
|
|
1007
1007
|
},
|
|
1008
|
+
CompleteProcessStepInput: {},
|
|
1008
1009
|
CompleteRequestInput: {},
|
|
1009
1010
|
CompleteVotingInput: {},
|
|
1010
1011
|
ComponentGenerationContractGenerateDocumentInput: {},
|
|
@@ -1080,6 +1081,7 @@ const AllTypesProps = {
|
|
|
1080
1081
|
type: "OrganizationType"
|
|
1081
1082
|
},
|
|
1082
1083
|
CreateParentOfferInput: {},
|
|
1084
|
+
CreateProcessTemplateInput: {},
|
|
1083
1085
|
CreateProgramPropertyInput: {
|
|
1084
1086
|
statement: "SignedDigitalDocumentInput"
|
|
1085
1087
|
},
|
|
@@ -1147,6 +1149,9 @@ const AllTypesProps = {
|
|
|
1147
1149
|
GenerateRegistrationDocumentsInput: {
|
|
1148
1150
|
account_type: "AccountType"
|
|
1149
1151
|
},
|
|
1152
|
+
GenerateReportInput: {
|
|
1153
|
+
reportType: "ReportType"
|
|
1154
|
+
},
|
|
1150
1155
|
GenerationContractGenerateDocumentInput: {},
|
|
1151
1156
|
GenerationContractSignedDocumentInput: {
|
|
1152
1157
|
meta: "GenerationContractSignedMetaDocumentInput",
|
|
@@ -1250,6 +1255,9 @@ const AllTypesProps = {
|
|
|
1250
1255
|
capitalCloseProject: {
|
|
1251
1256
|
data: "CloseProjectInput"
|
|
1252
1257
|
},
|
|
1258
|
+
capitalCompleteProcessStep: {
|
|
1259
|
+
data: "CompleteProcessStepInput"
|
|
1260
|
+
},
|
|
1253
1261
|
capitalCompleteRegistration: {
|
|
1254
1262
|
data: "CompleteCapitalRegistrationInputDTO"
|
|
1255
1263
|
},
|
|
@@ -1274,6 +1282,9 @@ const AllTypesProps = {
|
|
|
1274
1282
|
capitalCreateIssue: {
|
|
1275
1283
|
data: "CreateIssueInput"
|
|
1276
1284
|
},
|
|
1285
|
+
capitalCreateProcessTemplate: {
|
|
1286
|
+
data: "CreateProcessTemplateInput"
|
|
1287
|
+
},
|
|
1277
1288
|
capitalCreateProgramProperty: {
|
|
1278
1289
|
data: "CreateProgramPropertyInput"
|
|
1279
1290
|
},
|
|
@@ -1295,6 +1306,7 @@ const AllTypesProps = {
|
|
|
1295
1306
|
capitalDeleteIssue: {
|
|
1296
1307
|
data: "DeleteCapitalIssueByHashInput"
|
|
1297
1308
|
},
|
|
1309
|
+
capitalDeleteProcessTemplate: {},
|
|
1298
1310
|
capitalDeleteProject: {
|
|
1299
1311
|
data: "DeleteProjectInput"
|
|
1300
1312
|
},
|
|
@@ -1444,6 +1456,9 @@ const AllTypesProps = {
|
|
|
1444
1456
|
capitalSignActAsContributor: {
|
|
1445
1457
|
data: "SignActAsContributorInput"
|
|
1446
1458
|
},
|
|
1459
|
+
capitalStartProcess: {
|
|
1460
|
+
data: "StartProcessInput"
|
|
1461
|
+
},
|
|
1447
1462
|
capitalStartProject: {
|
|
1448
1463
|
data: "StartProjectInput"
|
|
1449
1464
|
},
|
|
@@ -1459,6 +1474,9 @@ const AllTypesProps = {
|
|
|
1459
1474
|
capitalUpdateIssue: {
|
|
1460
1475
|
data: "UpdateIssueInput"
|
|
1461
1476
|
},
|
|
1477
|
+
capitalUpdateProcessTemplate: {
|
|
1478
|
+
data: "UpdateProcessTemplateInput"
|
|
1479
|
+
},
|
|
1462
1480
|
capitalUpdateStory: {
|
|
1463
1481
|
data: "UpdateStoryInput"
|
|
1464
1482
|
},
|
|
@@ -1604,6 +1622,10 @@ const AllTypesProps = {
|
|
|
1604
1622
|
generateRegistrationDocuments: {
|
|
1605
1623
|
data: "GenerateRegistrationDocumentsInput"
|
|
1606
1624
|
},
|
|
1625
|
+
generateReport: {
|
|
1626
|
+
data: "GenerateReportInput",
|
|
1627
|
+
organization: "OrganizationDataInput"
|
|
1628
|
+
},
|
|
1607
1629
|
generateReturnByAssetAct: {
|
|
1608
1630
|
data: "ReturnByAssetActGenerateDocumentInput",
|
|
1609
1631
|
options: "GenerateDocumentOptionsInput"
|
|
@@ -1761,6 +1783,7 @@ const AllTypesProps = {
|
|
|
1761
1783
|
notification: "AnnualGeneralMeetingNotificationSignedDocumentInput"
|
|
1762
1784
|
},
|
|
1763
1785
|
OpenProjectInput: {},
|
|
1786
|
+
OrganizationDataInput: {},
|
|
1764
1787
|
OrganizationDetailsInput: {},
|
|
1765
1788
|
OrganizationType: "enum",
|
|
1766
1789
|
PaginationInput: {},
|
|
@@ -1783,6 +1806,14 @@ const AllTypesProps = {
|
|
|
1783
1806
|
ProcessConvertToAxonStatementInput: {
|
|
1784
1807
|
signedDocument: "ConvertToAxonStatementSignedDocumentInput"
|
|
1785
1808
|
},
|
|
1809
|
+
ProcessEdgeInput: {},
|
|
1810
|
+
ProcessInstanceStatus: "enum",
|
|
1811
|
+
ProcessStepPositionInput: {},
|
|
1812
|
+
ProcessStepStatus: "enum",
|
|
1813
|
+
ProcessStepTemplateInput: {
|
|
1814
|
+
position: "ProcessStepPositionInput"
|
|
1815
|
+
},
|
|
1816
|
+
ProcessTemplateStatus: "enum",
|
|
1786
1817
|
ProgramInvestStatus: "enum",
|
|
1787
1818
|
ProgramKey: "enum",
|
|
1788
1819
|
ProgramType: "enum",
|
|
@@ -1850,6 +1881,10 @@ const AllTypesProps = {
|
|
|
1850
1881
|
filter: "ExpenseFilter",
|
|
1851
1882
|
options: "PaginationInput"
|
|
1852
1883
|
},
|
|
1884
|
+
capitalGetProcessInstance: {},
|
|
1885
|
+
capitalGetProcessInstances: {},
|
|
1886
|
+
capitalGetProcessTemplate: {},
|
|
1887
|
+
capitalGetProcessTemplates: {},
|
|
1853
1888
|
capitalInvest: {
|
|
1854
1889
|
data: "GetInvestInput"
|
|
1855
1890
|
},
|
|
@@ -2016,6 +2051,9 @@ const AllTypesProps = {
|
|
|
2016
2051
|
onecoopGetDocuments: {
|
|
2017
2052
|
data: "GetOneCoopDocumentsInput"
|
|
2018
2053
|
},
|
|
2054
|
+
searchDocuments: {
|
|
2055
|
+
data: "SearchDocumentsInput"
|
|
2056
|
+
},
|
|
2019
2057
|
searchPrivateAccounts: {
|
|
2020
2058
|
data: "SearchPrivateAccountsInput"
|
|
2021
2059
|
}
|
|
@@ -2045,6 +2083,7 @@ const AllTypesProps = {
|
|
|
2045
2083
|
user_agreement: "SignedDigitalDocumentInput",
|
|
2046
2084
|
wallet_agreement: "SignedDigitalDocumentInput"
|
|
2047
2085
|
},
|
|
2086
|
+
ReportType: "enum",
|
|
2048
2087
|
RepresentedByInput: {},
|
|
2049
2088
|
ResetKeyInput: {},
|
|
2050
2089
|
RestartAnnualGeneralMeetInput: {
|
|
@@ -2082,6 +2121,7 @@ const AllTypesProps = {
|
|
|
2082
2121
|
},
|
|
2083
2122
|
ReturnByMoneySignedMetaDocumentInput: {},
|
|
2084
2123
|
SbpDataInput: {},
|
|
2124
|
+
SearchDocumentsInput: {},
|
|
2085
2125
|
SearchPrivateAccountsInput: {},
|
|
2086
2126
|
SegmentStatus: "enum",
|
|
2087
2127
|
SelectBranchGenerateDocumentInput: {},
|
|
@@ -2134,6 +2174,7 @@ const AllTypesProps = {
|
|
|
2134
2174
|
individual_data: "CreateSovietIndividualDataInput"
|
|
2135
2175
|
},
|
|
2136
2176
|
StartInstallInput: {},
|
|
2177
|
+
StartProcessInput: {},
|
|
2137
2178
|
StartProjectInput: {},
|
|
2138
2179
|
StartResetKeyInput: {},
|
|
2139
2180
|
StartVotingInput: {},
|
|
@@ -2180,6 +2221,11 @@ const AllTypesProps = {
|
|
|
2180
2221
|
details: "OrganizationDetailsInput",
|
|
2181
2222
|
represented_by: "RepresentedByInput"
|
|
2182
2223
|
},
|
|
2224
|
+
UpdateProcessTemplateInput: {
|
|
2225
|
+
edges: "ProcessEdgeInput",
|
|
2226
|
+
status: "ProcessTemplateStatus",
|
|
2227
|
+
steps: "ProcessStepTemplateInput"
|
|
2228
|
+
},
|
|
2183
2229
|
UpdateRequestInput: {},
|
|
2184
2230
|
UpdateSettingsInput: {},
|
|
2185
2231
|
UpdateStoryInput: {
|
|
@@ -2310,6 +2356,12 @@ const ReturnTypes = {
|
|
|
2310
2356
|
threshold: "Int",
|
|
2311
2357
|
waits: "WaitWeight"
|
|
2312
2358
|
},
|
|
2359
|
+
AvailableReport: {
|
|
2360
|
+
deadline: "String",
|
|
2361
|
+
name: "String",
|
|
2362
|
+
period: "String",
|
|
2363
|
+
type: "ReportType"
|
|
2364
|
+
},
|
|
2313
2365
|
BankAccount: {
|
|
2314
2366
|
account_number: "String",
|
|
2315
2367
|
bank_name: "String",
|
|
@@ -2901,8 +2953,8 @@ const ReturnTypes = {
|
|
|
2901
2953
|
target_expense_pool: "String",
|
|
2902
2954
|
total: "String",
|
|
2903
2955
|
total_generation_pool: "String",
|
|
2904
|
-
total_with_investments: "String",
|
|
2905
2956
|
total_received_investments: "String",
|
|
2957
|
+
total_with_investments: "String",
|
|
2906
2958
|
use_invest_percent: "Float"
|
|
2907
2959
|
},
|
|
2908
2960
|
CapitalProjectTimeStats: {
|
|
@@ -3387,6 +3439,13 @@ const ReturnTypes = {
|
|
|
3387
3439
|
order: "Int",
|
|
3388
3440
|
title: "String"
|
|
3389
3441
|
},
|
|
3442
|
+
GeneratedReport: {
|
|
3443
|
+
errors: "String",
|
|
3444
|
+
fileName: "String",
|
|
3445
|
+
isValid: "Boolean",
|
|
3446
|
+
reportType: "ReportType",
|
|
3447
|
+
xml: "String"
|
|
3448
|
+
},
|
|
3390
3449
|
Individual: {
|
|
3391
3450
|
birthdate: "String",
|
|
3392
3451
|
email: "String",
|
|
@@ -3547,6 +3606,7 @@ const ReturnTypes = {
|
|
|
3547
3606
|
capitalApproveCommit: "CapitalCommit",
|
|
3548
3607
|
capitalCalculateVotes: "CapitalSegment",
|
|
3549
3608
|
capitalCloseProject: "CapitalProject",
|
|
3609
|
+
capitalCompleteProcessStep: "ProcessInstance",
|
|
3550
3610
|
capitalCompleteRegistration: "Transaction",
|
|
3551
3611
|
capitalCompleteVoting: "Transaction",
|
|
3552
3612
|
capitalConvertSegment: "CapitalSegment",
|
|
@@ -3555,6 +3615,7 @@ const ReturnTypes = {
|
|
|
3555
3615
|
capitalCreateDebt: "Transaction",
|
|
3556
3616
|
capitalCreateExpense: "Transaction",
|
|
3557
3617
|
capitalCreateIssue: "CapitalIssue",
|
|
3618
|
+
capitalCreateProcessTemplate: "ProcessTemplate",
|
|
3558
3619
|
capitalCreateProgramProperty: "Transaction",
|
|
3559
3620
|
capitalCreateProject: "Transaction",
|
|
3560
3621
|
capitalCreateProjectInvest: "Transaction",
|
|
@@ -3562,6 +3623,7 @@ const ReturnTypes = {
|
|
|
3562
3623
|
capitalCreateStory: "CapitalStory",
|
|
3563
3624
|
capitalDeclineCommit: "CapitalCommit",
|
|
3564
3625
|
capitalDeleteIssue: "Boolean",
|
|
3626
|
+
capitalDeleteProcessTemplate: "Boolean",
|
|
3565
3627
|
capitalDeleteProject: "Transaction",
|
|
3566
3628
|
capitalDeleteStory: "Boolean",
|
|
3567
3629
|
capitalEditContributor: "CapitalContributor",
|
|
@@ -3604,11 +3666,13 @@ const ReturnTypes = {
|
|
|
3604
3666
|
capitalSetPlan: "CapitalProject",
|
|
3605
3667
|
capitalSignActAsChairman: "CapitalSegment",
|
|
3606
3668
|
capitalSignActAsContributor: "CapitalSegment",
|
|
3669
|
+
capitalStartProcess: "ProcessInstance",
|
|
3607
3670
|
capitalStartProject: "CapitalProject",
|
|
3608
3671
|
capitalStartVoting: "Transaction",
|
|
3609
3672
|
capitalStopProject: "CapitalProject",
|
|
3610
3673
|
capitalSubmitVote: "Transaction",
|
|
3611
3674
|
capitalUpdateIssue: "CapitalIssue",
|
|
3675
|
+
capitalUpdateProcessTemplate: "ProcessTemplate",
|
|
3612
3676
|
capitalUpdateStory: "CapitalStory",
|
|
3613
3677
|
chairmanConfirmApprove: "Approval",
|
|
3614
3678
|
chairmanDeclineApprove: "Approval",
|
|
@@ -3653,6 +3717,7 @@ const ReturnTypes = {
|
|
|
3653
3717
|
generatePrivacyAgreement: "GeneratedDocument",
|
|
3654
3718
|
generateProjectOfFreeDecision: "GeneratedDocument",
|
|
3655
3719
|
generateRegistrationDocuments: "GenerateRegistrationDocumentsOutput",
|
|
3720
|
+
generateReport: "GeneratedReport",
|
|
3656
3721
|
generateReturnByAssetAct: "GeneratedDocument",
|
|
3657
3722
|
generateReturnByAssetDecision: "GeneratedDocument",
|
|
3658
3723
|
generateReturnByAssetStatement: "GeneratedDocument",
|
|
@@ -3980,6 +4045,54 @@ const ReturnTypes = {
|
|
|
3980
4045
|
score: "Float",
|
|
3981
4046
|
type: "String"
|
|
3982
4047
|
},
|
|
4048
|
+
ProcessEdge: {
|
|
4049
|
+
id: "String",
|
|
4050
|
+
source: "String",
|
|
4051
|
+
target: "String"
|
|
4052
|
+
},
|
|
4053
|
+
ProcessInstance: {
|
|
4054
|
+
completed_at: "DateTime",
|
|
4055
|
+
coopname: "String",
|
|
4056
|
+
cycle: "Int",
|
|
4057
|
+
id: "String",
|
|
4058
|
+
project_hash: "String",
|
|
4059
|
+
started_at: "DateTime",
|
|
4060
|
+
started_by: "String",
|
|
4061
|
+
status: "ProcessInstanceStatus",
|
|
4062
|
+
step_states: "ProcessStepState",
|
|
4063
|
+
template_id: "String"
|
|
4064
|
+
},
|
|
4065
|
+
ProcessStepPosition: {
|
|
4066
|
+
x: "Float",
|
|
4067
|
+
y: "Float"
|
|
4068
|
+
},
|
|
4069
|
+
ProcessStepState: {
|
|
4070
|
+
completed_at: "DateTime",
|
|
4071
|
+
issue_hash: "String",
|
|
4072
|
+
status: "ProcessStepStatus",
|
|
4073
|
+
step_id: "String"
|
|
4074
|
+
},
|
|
4075
|
+
ProcessStepTemplate: {
|
|
4076
|
+
description: "String",
|
|
4077
|
+
estimate: "Float",
|
|
4078
|
+
id: "String",
|
|
4079
|
+
is_start: "Boolean",
|
|
4080
|
+
position: "ProcessStepPosition",
|
|
4081
|
+
title: "String"
|
|
4082
|
+
},
|
|
4083
|
+
ProcessTemplate: {
|
|
4084
|
+
coopname: "String",
|
|
4085
|
+
created_at: "DateTime",
|
|
4086
|
+
created_by: "String",
|
|
4087
|
+
description: "String",
|
|
4088
|
+
edges: "ProcessEdge",
|
|
4089
|
+
id: "String",
|
|
4090
|
+
project_hash: "String",
|
|
4091
|
+
status: "ProcessTemplateStatus",
|
|
4092
|
+
steps: "ProcessStepTemplate",
|
|
4093
|
+
title: "String",
|
|
4094
|
+
updated_at: "DateTime"
|
|
4095
|
+
},
|
|
3983
4096
|
ProgramWallet: {
|
|
3984
4097
|
agreement_id: "ID",
|
|
3985
4098
|
available: "String",
|
|
@@ -4038,6 +4151,10 @@ const ReturnTypes = {
|
|
|
4038
4151
|
capitalDebts: "PaginatedCapitalDebtsPaginationResult",
|
|
4039
4152
|
capitalExpense: "CapitalExpense",
|
|
4040
4153
|
capitalExpenses: "PaginatedCapitalExpensesPaginationResult",
|
|
4154
|
+
capitalGetProcessInstance: "ProcessInstance",
|
|
4155
|
+
capitalGetProcessInstances: "ProcessInstance",
|
|
4156
|
+
capitalGetProcessTemplate: "ProcessTemplate",
|
|
4157
|
+
capitalGetProcessTemplates: "ProcessTemplate",
|
|
4041
4158
|
capitalInvest: "CapitalInvest",
|
|
4042
4159
|
capitalInvests: "PaginatedCapitalInvestsPaginationResult",
|
|
4043
4160
|
capitalIssue: "CapitalIssue",
|
|
@@ -4069,6 +4186,7 @@ const ReturnTypes = {
|
|
|
4069
4186
|
getAccounts: "AccountsPaginationResult",
|
|
4070
4187
|
getActions: "PaginatedActionsPaginationResult",
|
|
4071
4188
|
getAgenda: "AgendaWithDocuments",
|
|
4189
|
+
getAvailableReports: "AvailableReport",
|
|
4072
4190
|
getBranches: "Branch",
|
|
4073
4191
|
getCapitalIssueLogs: "PaginatedCapitalLogsPaginationResult",
|
|
4074
4192
|
getCapitalOnboardingState: "CapitalOnboardingState",
|
|
@@ -4097,6 +4215,7 @@ const ReturnTypes = {
|
|
|
4097
4215
|
getUserWebPushSubscriptions: "WebPushSubscriptionDto",
|
|
4098
4216
|
getWebPushSubscriptionStats: "SubscriptionStatsDto",
|
|
4099
4217
|
onecoopGetDocuments: "OneCoopDocumentsResponse",
|
|
4218
|
+
searchDocuments: "SearchResult",
|
|
4100
4219
|
searchPrivateAccounts: "PrivateAccountSearchResult"
|
|
4101
4220
|
},
|
|
4102
4221
|
Question: {
|
|
@@ -4165,6 +4284,15 @@ const ReturnTypes = {
|
|
|
4165
4284
|
SbpAccount: {
|
|
4166
4285
|
phone: "String"
|
|
4167
4286
|
},
|
|
4287
|
+
SearchResult: {
|
|
4288
|
+
coopname: "String",
|
|
4289
|
+
created_at: "String",
|
|
4290
|
+
full_title: "String",
|
|
4291
|
+
hash: "String",
|
|
4292
|
+
highlights: "String",
|
|
4293
|
+
registry_id: "Int",
|
|
4294
|
+
username: "String"
|
|
4295
|
+
},
|
|
4168
4296
|
Settings: {
|
|
4169
4297
|
authorized_default_route: "String",
|
|
4170
4298
|
authorized_default_workspace: "String",
|
|
@@ -4222,6 +4350,9 @@ const ReturnTypes = {
|
|
|
4222
4350
|
root_precision: "Float",
|
|
4223
4351
|
root_symbol: "String"
|
|
4224
4352
|
},
|
|
4353
|
+
SystemFeatures: {
|
|
4354
|
+
search: "Boolean"
|
|
4355
|
+
},
|
|
4225
4356
|
SystemInfo: {
|
|
4226
4357
|
blockchain_account: "BlockchainAccount",
|
|
4227
4358
|
blockchain_info: "BlockchainInfoDTO",
|
|
@@ -4229,6 +4360,7 @@ const ReturnTypes = {
|
|
|
4229
4360
|
contacts: "ContactsDTO",
|
|
4230
4361
|
cooperator_account: "CooperativeOperatorAccount",
|
|
4231
4362
|
coopname: "String",
|
|
4363
|
+
features: "SystemFeatures",
|
|
4232
4364
|
is_providered: "Boolean",
|
|
4233
4365
|
is_unioned: "Boolean",
|
|
4234
4366
|
settings: "Settings",
|
|
@@ -5073,6 +5205,25 @@ var PaymentType = /* @__PURE__ */ ((PaymentType2) => {
|
|
|
5073
5205
|
PaymentType2["WITHDRAWAL"] = "WITHDRAWAL";
|
|
5074
5206
|
return PaymentType2;
|
|
5075
5207
|
})(PaymentType || {});
|
|
5208
|
+
var ProcessInstanceStatus = /* @__PURE__ */ ((ProcessInstanceStatus2) => {
|
|
5209
|
+
ProcessInstanceStatus2["CANCELLED"] = "CANCELLED";
|
|
5210
|
+
ProcessInstanceStatus2["COMPLETED"] = "COMPLETED";
|
|
5211
|
+
ProcessInstanceStatus2["RUNNING"] = "RUNNING";
|
|
5212
|
+
return ProcessInstanceStatus2;
|
|
5213
|
+
})(ProcessInstanceStatus || {});
|
|
5214
|
+
var ProcessStepStatus = /* @__PURE__ */ ((ProcessStepStatus2) => {
|
|
5215
|
+
ProcessStepStatus2["ACTIVE"] = "ACTIVE";
|
|
5216
|
+
ProcessStepStatus2["CANCELLED"] = "CANCELLED";
|
|
5217
|
+
ProcessStepStatus2["COMPLETED"] = "COMPLETED";
|
|
5218
|
+
ProcessStepStatus2["PENDING"] = "PENDING";
|
|
5219
|
+
return ProcessStepStatus2;
|
|
5220
|
+
})(ProcessStepStatus || {});
|
|
5221
|
+
var ProcessTemplateStatus = /* @__PURE__ */ ((ProcessTemplateStatus2) => {
|
|
5222
|
+
ProcessTemplateStatus2["ACTIVE"] = "ACTIVE";
|
|
5223
|
+
ProcessTemplateStatus2["ARCHIVED"] = "ARCHIVED";
|
|
5224
|
+
ProcessTemplateStatus2["DRAFT"] = "DRAFT";
|
|
5225
|
+
return ProcessTemplateStatus2;
|
|
5226
|
+
})(ProcessTemplateStatus || {});
|
|
5076
5227
|
var ProgramInvestStatus = /* @__PURE__ */ ((ProgramInvestStatus2) => {
|
|
5077
5228
|
ProgramInvestStatus2["CREATED"] = "CREATED";
|
|
5078
5229
|
ProgramInvestStatus2["UNDEFINED"] = "UNDEFINED";
|
|
@@ -5101,6 +5252,17 @@ var ProjectStatus = /* @__PURE__ */ ((ProjectStatus2) => {
|
|
|
5101
5252
|
ProjectStatus2["VOTING"] = "VOTING";
|
|
5102
5253
|
return ProjectStatus2;
|
|
5103
5254
|
})(ProjectStatus || {});
|
|
5255
|
+
var ReportType = /* @__PURE__ */ ((ReportType2) => {
|
|
5256
|
+
ReportType2["BUHOTCH"] = "BUHOTCH";
|
|
5257
|
+
ReportType2["DUSN"] = "DUSN";
|
|
5258
|
+
ReportType2["FSS4"] = "FSS4";
|
|
5259
|
+
ReportType2["NDFL6"] = "NDFL6";
|
|
5260
|
+
ReportType2["PSV"] = "PSV";
|
|
5261
|
+
ReportType2["RSV"] = "RSV";
|
|
5262
|
+
ReportType2["UUSN"] = "UUSN";
|
|
5263
|
+
ReportType2["UV_VZNOSY"] = "UV_VZNOSY";
|
|
5264
|
+
return ReportType2;
|
|
5265
|
+
})(ReportType || {});
|
|
5104
5266
|
var ResultStatus = /* @__PURE__ */ ((ResultStatus2) => {
|
|
5105
5267
|
ResultStatus2["ACT1"] = "ACT1";
|
|
5106
5268
|
ResultStatus2["ACT2"] = "ACT2";
|
|
@@ -5120,6 +5282,7 @@ var SegmentStatus = /* @__PURE__ */ ((SegmentStatus2) => {
|
|
|
5120
5282
|
SegmentStatus2["FINALIZED"] = "FINALIZED";
|
|
5121
5283
|
SegmentStatus2["GENERATION"] = "GENERATION";
|
|
5122
5284
|
SegmentStatus2["READY"] = "READY";
|
|
5285
|
+
SegmentStatus2["SKIPPED"] = "SKIPPED";
|
|
5123
5286
|
SegmentStatus2["STATEMENT"] = "STATEMENT";
|
|
5124
5287
|
SegmentStatus2["UNDEFINED"] = "UNDEFINED";
|
|
5125
5288
|
return SegmentStatus2;
|
|
@@ -5155,7 +5318,7 @@ var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
|
|
|
5155
5318
|
return UserStatus2;
|
|
5156
5319
|
})(UserStatus || {});
|
|
5157
5320
|
|
|
5158
|
-
const index$
|
|
5321
|
+
const index$M = {
|
|
5159
5322
|
__proto__: null,
|
|
5160
5323
|
$: $,
|
|
5161
5324
|
AccountType: AccountType,
|
|
@@ -5191,10 +5354,14 @@ const index$L = {
|
|
|
5191
5354
|
PaymentStatus: PaymentStatus,
|
|
5192
5355
|
PaymentType: PaymentType,
|
|
5193
5356
|
PrepareScalarPaths: PrepareScalarPaths,
|
|
5357
|
+
ProcessInstanceStatus: ProcessInstanceStatus,
|
|
5358
|
+
ProcessStepStatus: ProcessStepStatus,
|
|
5359
|
+
ProcessTemplateStatus: ProcessTemplateStatus,
|
|
5194
5360
|
ProgramInvestStatus: ProgramInvestStatus,
|
|
5195
5361
|
ProgramKey: ProgramKey,
|
|
5196
5362
|
ProgramType: ProgramType,
|
|
5197
5363
|
ProjectStatus: ProjectStatus,
|
|
5364
|
+
ReportType: ReportType,
|
|
5198
5365
|
ResolveFromPath: ResolveFromPath,
|
|
5199
5366
|
ResultStatus: ResultStatus,
|
|
5200
5367
|
SEPARATOR: SEPARATOR,
|
|
@@ -5596,37 +5763,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
|
|
|
5596
5763
|
rawRegisteredAccountSelector
|
|
5597
5764
|
);
|
|
5598
5765
|
|
|
5599
|
-
const name$
|
|
5766
|
+
const name$3G = "registerAccount";
|
|
5600
5767
|
const mutation$2y = Selector("Mutation")({
|
|
5601
|
-
[name$
|
|
5768
|
+
[name$3G]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
|
|
5602
5769
|
});
|
|
5603
5770
|
|
|
5604
5771
|
const registerAccount = {
|
|
5605
5772
|
__proto__: null,
|
|
5606
5773
|
mutation: mutation$2y,
|
|
5607
|
-
name: name$
|
|
5774
|
+
name: name$3G
|
|
5608
5775
|
};
|
|
5609
5776
|
|
|
5610
|
-
const name$
|
|
5777
|
+
const name$3F = "resetKey";
|
|
5611
5778
|
const mutation$2x = Selector("Mutation")({
|
|
5612
|
-
[name$
|
|
5779
|
+
[name$3F]: [{ data: $("data", "ResetKeyInput!") }, true]
|
|
5613
5780
|
});
|
|
5614
5781
|
|
|
5615
5782
|
const resetKey = {
|
|
5616
5783
|
__proto__: null,
|
|
5617
5784
|
mutation: mutation$2x,
|
|
5618
|
-
name: name$
|
|
5785
|
+
name: name$3F
|
|
5619
5786
|
};
|
|
5620
5787
|
|
|
5621
|
-
const name$
|
|
5788
|
+
const name$3E = "startResetKey";
|
|
5622
5789
|
const mutation$2w = Selector("Mutation")({
|
|
5623
|
-
[name$
|
|
5790
|
+
[name$3E]: [{ data: $("data", "StartResetKeyInput!") }, true]
|
|
5624
5791
|
});
|
|
5625
5792
|
|
|
5626
5793
|
const startResetKey = {
|
|
5627
5794
|
__proto__: null,
|
|
5628
5795
|
mutation: mutation$2w,
|
|
5629
|
-
name: name$
|
|
5796
|
+
name: name$3E
|
|
5630
5797
|
};
|
|
5631
5798
|
|
|
5632
5799
|
const paginationSelector = {
|
|
@@ -7022,6 +7189,9 @@ const rawBoardMemberSelector = {
|
|
|
7022
7189
|
middle_name: true,
|
|
7023
7190
|
is_chairman: true
|
|
7024
7191
|
};
|
|
7192
|
+
const rawFeaturesSelector = {
|
|
7193
|
+
search: true
|
|
7194
|
+
};
|
|
7025
7195
|
const rawSystemInfoSelector = {
|
|
7026
7196
|
blockchain_info: rawBlockchainInfoSelector,
|
|
7027
7197
|
cooperator_account: rawCooperatorAccountSelector,
|
|
@@ -7035,11 +7205,12 @@ const rawSystemInfoSelector = {
|
|
|
7035
7205
|
vars: rawVarsSelector,
|
|
7036
7206
|
symbols: rawSymbolsSelector,
|
|
7037
7207
|
settings: rawSettingsSelector,
|
|
7038
|
-
board_members: rawBoardMemberSelector
|
|
7208
|
+
board_members: rawBoardMemberSelector,
|
|
7209
|
+
features: rawFeaturesSelector
|
|
7039
7210
|
};
|
|
7040
7211
|
const systemInfoSelector = Selector("SystemInfo")(rawSystemInfoSelector);
|
|
7041
7212
|
|
|
7042
|
-
const index$
|
|
7213
|
+
const index$L = {
|
|
7043
7214
|
__proto__: null,
|
|
7044
7215
|
accountSelector: accountSelector,
|
|
7045
7216
|
accountsPaginationSelector: accountsPaginationSelector,
|
|
@@ -7157,6 +7328,7 @@ const index$K = {
|
|
|
7157
7328
|
rawEntrepreneurSelector: rawEntrepreneurSelector,
|
|
7158
7329
|
rawExpenseSelector: rawExpenseSelector,
|
|
7159
7330
|
rawExtensionSelector: rawExtensionSelector,
|
|
7331
|
+
rawFeaturesSelector: rawFeaturesSelector,
|
|
7160
7332
|
rawGenerateCapitalRegistrationDocumentsOutputSelector: rawGenerateCapitalRegistrationDocumentsOutputSelector,
|
|
7161
7333
|
rawGenerateRegistrationDocumentsOutputSelector: rawGenerateRegistrationDocumentsOutputSelector,
|
|
7162
7334
|
rawGeneratedRegistrationDocumentSelector: rawGeneratedRegistrationDocumentSelector,
|
|
@@ -7242,18 +7414,18 @@ const index$K = {
|
|
|
7242
7414
|
webPushSubscriptionSelector: webPushSubscriptionSelector
|
|
7243
7415
|
};
|
|
7244
7416
|
|
|
7245
|
-
const name$
|
|
7417
|
+
const name$3D = "updateAccount";
|
|
7246
7418
|
const mutation$2v = Selector("Mutation")({
|
|
7247
|
-
[name$
|
|
7419
|
+
[name$3D]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
|
|
7248
7420
|
});
|
|
7249
7421
|
|
|
7250
7422
|
const updateAccount = {
|
|
7251
7423
|
__proto__: null,
|
|
7252
7424
|
mutation: mutation$2v,
|
|
7253
|
-
name: name$
|
|
7425
|
+
name: name$3D
|
|
7254
7426
|
};
|
|
7255
7427
|
|
|
7256
|
-
const index$
|
|
7428
|
+
const index$K = {
|
|
7257
7429
|
__proto__: null,
|
|
7258
7430
|
RegisterAccount: registerAccount,
|
|
7259
7431
|
ResetKey: resetKey,
|
|
@@ -7261,84 +7433,84 @@ const index$J = {
|
|
|
7261
7433
|
UpdateAccount: updateAccount
|
|
7262
7434
|
};
|
|
7263
7435
|
|
|
7264
|
-
const name$
|
|
7436
|
+
const name$3C = "generatePrivacyAgreement";
|
|
7265
7437
|
const mutation$2u = Selector("Mutation")({
|
|
7266
|
-
[name$
|
|
7438
|
+
[name$3C]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7267
7439
|
});
|
|
7268
7440
|
|
|
7269
7441
|
const generatePrivacyAgreement = {
|
|
7270
7442
|
__proto__: null,
|
|
7271
7443
|
mutation: mutation$2u,
|
|
7272
|
-
name: name$
|
|
7444
|
+
name: name$3C
|
|
7273
7445
|
};
|
|
7274
7446
|
|
|
7275
|
-
const name$
|
|
7447
|
+
const name$3B = "generateSignatureAgreement";
|
|
7276
7448
|
const mutation$2t = Selector("Mutation")({
|
|
7277
|
-
[name$
|
|
7449
|
+
[name$3B]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7278
7450
|
});
|
|
7279
7451
|
|
|
7280
7452
|
const generateSignatureAgreement = {
|
|
7281
7453
|
__proto__: null,
|
|
7282
7454
|
mutation: mutation$2t,
|
|
7283
|
-
name: name$
|
|
7455
|
+
name: name$3B
|
|
7284
7456
|
};
|
|
7285
7457
|
|
|
7286
|
-
const name$
|
|
7458
|
+
const name$3A = "generateWalletAgreement";
|
|
7287
7459
|
const mutation$2s = Selector("Mutation")({
|
|
7288
|
-
[name$
|
|
7460
|
+
[name$3A]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7289
7461
|
});
|
|
7290
7462
|
|
|
7291
7463
|
const generateWalletAgreement = {
|
|
7292
7464
|
__proto__: null,
|
|
7293
7465
|
mutation: mutation$2s,
|
|
7294
|
-
name: name$
|
|
7466
|
+
name: name$3A
|
|
7295
7467
|
};
|
|
7296
7468
|
|
|
7297
|
-
const name$
|
|
7469
|
+
const name$3z = "generateUserAgreement";
|
|
7298
7470
|
const mutation$2r = Selector("Mutation")({
|
|
7299
|
-
[name$
|
|
7471
|
+
[name$3z]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7300
7472
|
});
|
|
7301
7473
|
|
|
7302
7474
|
const generateUserAgreement = {
|
|
7303
7475
|
__proto__: null,
|
|
7304
7476
|
mutation: mutation$2r,
|
|
7305
|
-
name: name$
|
|
7477
|
+
name: name$3z
|
|
7306
7478
|
};
|
|
7307
7479
|
|
|
7308
|
-
const name$
|
|
7480
|
+
const name$3y = "sendAgreement";
|
|
7309
7481
|
const mutation$2q = Selector("Mutation")({
|
|
7310
|
-
[name$
|
|
7482
|
+
[name$3y]: [{ data: $("data", "SendAgreementInput!") }, rawTransactionSelector]
|
|
7311
7483
|
});
|
|
7312
7484
|
|
|
7313
7485
|
const sendAgreement = {
|
|
7314
7486
|
__proto__: null,
|
|
7315
7487
|
mutation: mutation$2q,
|
|
7316
|
-
name: name$
|
|
7488
|
+
name: name$3y
|
|
7317
7489
|
};
|
|
7318
7490
|
|
|
7319
|
-
const name$
|
|
7491
|
+
const name$3x = "confirmAgreement";
|
|
7320
7492
|
const mutation$2p = Selector("Mutation")({
|
|
7321
|
-
[name$
|
|
7493
|
+
[name$3x]: [{ data: $("data", "ConfirmAgreementInput!") }, rawTransactionSelector]
|
|
7322
7494
|
});
|
|
7323
7495
|
|
|
7324
7496
|
const confirmAgreement = {
|
|
7325
7497
|
__proto__: null,
|
|
7326
7498
|
mutation: mutation$2p,
|
|
7327
|
-
name: name$
|
|
7499
|
+
name: name$3x
|
|
7328
7500
|
};
|
|
7329
7501
|
|
|
7330
|
-
const name$
|
|
7502
|
+
const name$3w = "declineAgreement";
|
|
7331
7503
|
const mutation$2o = Selector("Mutation")({
|
|
7332
|
-
[name$
|
|
7504
|
+
[name$3w]: [{ data: $("data", "DeclineAgreementInput!") }, rawTransactionSelector]
|
|
7333
7505
|
});
|
|
7334
7506
|
|
|
7335
7507
|
const declineAgreement = {
|
|
7336
7508
|
__proto__: null,
|
|
7337
7509
|
mutation: mutation$2o,
|
|
7338
|
-
name: name$
|
|
7510
|
+
name: name$3w
|
|
7339
7511
|
};
|
|
7340
7512
|
|
|
7341
|
-
const index$
|
|
7513
|
+
const index$J = {
|
|
7342
7514
|
__proto__: null,
|
|
7343
7515
|
ConfirmAgreement: confirmAgreement,
|
|
7344
7516
|
DeclineAgreement: declineAgreement,
|
|
@@ -7349,124 +7521,124 @@ const index$I = {
|
|
|
7349
7521
|
SendAgreement: sendAgreement
|
|
7350
7522
|
};
|
|
7351
7523
|
|
|
7352
|
-
const name$
|
|
7524
|
+
const name$3v = "refresh";
|
|
7353
7525
|
const mutation$2n = Selector("Mutation")({
|
|
7354
|
-
[name$
|
|
7526
|
+
[name$3v]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
|
|
7355
7527
|
});
|
|
7356
7528
|
|
|
7357
7529
|
const refresh = {
|
|
7358
7530
|
__proto__: null,
|
|
7359
7531
|
mutation: mutation$2n,
|
|
7360
|
-
name: name$
|
|
7532
|
+
name: name$3v
|
|
7361
7533
|
};
|
|
7362
7534
|
|
|
7363
|
-
const name$
|
|
7535
|
+
const name$3u = "logout";
|
|
7364
7536
|
const mutation$2m = Selector("Mutation")({
|
|
7365
|
-
[name$
|
|
7537
|
+
[name$3u]: [{ data: $("data", "LogoutInput!") }, true]
|
|
7366
7538
|
});
|
|
7367
7539
|
|
|
7368
7540
|
const logout = {
|
|
7369
7541
|
__proto__: null,
|
|
7370
7542
|
mutation: mutation$2m,
|
|
7371
|
-
name: name$
|
|
7543
|
+
name: name$3u
|
|
7372
7544
|
};
|
|
7373
7545
|
|
|
7374
|
-
const name$
|
|
7546
|
+
const name$3t = "login";
|
|
7375
7547
|
const mutation$2l = Selector("Mutation")({
|
|
7376
|
-
[name$
|
|
7548
|
+
[name$3t]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
|
|
7377
7549
|
});
|
|
7378
7550
|
|
|
7379
7551
|
const login = {
|
|
7380
7552
|
__proto__: null,
|
|
7381
7553
|
mutation: mutation$2l,
|
|
7382
|
-
name: name$
|
|
7554
|
+
name: name$3t
|
|
7383
7555
|
};
|
|
7384
7556
|
|
|
7385
|
-
const index$
|
|
7557
|
+
const index$I = {
|
|
7386
7558
|
__proto__: null,
|
|
7387
7559
|
Login: login,
|
|
7388
7560
|
Logout: logout,
|
|
7389
7561
|
Refresh: refresh
|
|
7390
7562
|
};
|
|
7391
7563
|
|
|
7392
|
-
const name$
|
|
7564
|
+
const name$3s = "addTrustedAccount";
|
|
7393
7565
|
const mutation$2k = Selector("Mutation")({
|
|
7394
|
-
[name$
|
|
7566
|
+
[name$3s]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
|
|
7395
7567
|
});
|
|
7396
7568
|
|
|
7397
7569
|
const addTrustedAccount = {
|
|
7398
7570
|
__proto__: null,
|
|
7399
7571
|
mutation: mutation$2k,
|
|
7400
|
-
name: name$
|
|
7572
|
+
name: name$3s
|
|
7401
7573
|
};
|
|
7402
7574
|
|
|
7403
|
-
const name$
|
|
7575
|
+
const name$3r = "createBranch";
|
|
7404
7576
|
const mutation$2j = Selector("Mutation")({
|
|
7405
|
-
[name$
|
|
7577
|
+
[name$3r]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
|
|
7406
7578
|
});
|
|
7407
7579
|
|
|
7408
7580
|
const createBranch = {
|
|
7409
7581
|
__proto__: null,
|
|
7410
7582
|
mutation: mutation$2j,
|
|
7411
|
-
name: name$
|
|
7583
|
+
name: name$3r
|
|
7412
7584
|
};
|
|
7413
7585
|
|
|
7414
|
-
const name$
|
|
7586
|
+
const name$3q = "deleteBranch";
|
|
7415
7587
|
const mutation$2i = Selector("Mutation")({
|
|
7416
|
-
[name$
|
|
7588
|
+
[name$3q]: [{ data: $("data", "DeleteBranchInput!") }, true]
|
|
7417
7589
|
});
|
|
7418
7590
|
|
|
7419
7591
|
const deleteBranch = {
|
|
7420
7592
|
__proto__: null,
|
|
7421
7593
|
mutation: mutation$2i,
|
|
7422
|
-
name: name$
|
|
7594
|
+
name: name$3q
|
|
7423
7595
|
};
|
|
7424
7596
|
|
|
7425
|
-
const name$
|
|
7597
|
+
const name$3p = "deleteTrustedAccount";
|
|
7426
7598
|
const mutation$2h = Selector("Mutation")({
|
|
7427
|
-
[name$
|
|
7599
|
+
[name$3p]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
|
|
7428
7600
|
});
|
|
7429
7601
|
|
|
7430
7602
|
const deleteTrustedAccount = {
|
|
7431
7603
|
__proto__: null,
|
|
7432
7604
|
mutation: mutation$2h,
|
|
7433
|
-
name: name$
|
|
7605
|
+
name: name$3p
|
|
7434
7606
|
};
|
|
7435
7607
|
|
|
7436
|
-
const name$
|
|
7608
|
+
const name$3o = "editBranch";
|
|
7437
7609
|
const mutation$2g = Selector("Mutation")({
|
|
7438
|
-
[name$
|
|
7610
|
+
[name$3o]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
|
|
7439
7611
|
});
|
|
7440
7612
|
|
|
7441
7613
|
const editBranch = {
|
|
7442
7614
|
__proto__: null,
|
|
7443
7615
|
mutation: mutation$2g,
|
|
7444
|
-
name: name$
|
|
7616
|
+
name: name$3o
|
|
7445
7617
|
};
|
|
7446
7618
|
|
|
7447
|
-
const name$
|
|
7619
|
+
const name$3n = "generateSelectBranchDocument";
|
|
7448
7620
|
const mutation$2f = Selector("Mutation")({
|
|
7449
|
-
[name$
|
|
7621
|
+
[name$3n]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7450
7622
|
});
|
|
7451
7623
|
|
|
7452
7624
|
const generateSelectBranchDocument = {
|
|
7453
7625
|
__proto__: null,
|
|
7454
7626
|
mutation: mutation$2f,
|
|
7455
|
-
name: name$
|
|
7627
|
+
name: name$3n
|
|
7456
7628
|
};
|
|
7457
7629
|
|
|
7458
|
-
const name$
|
|
7630
|
+
const name$3m = "selectBranch";
|
|
7459
7631
|
const mutation$2e = Selector("Mutation")({
|
|
7460
|
-
[name$
|
|
7632
|
+
[name$3m]: [{ data: $("data", "SelectBranchInput!") }, true]
|
|
7461
7633
|
});
|
|
7462
7634
|
|
|
7463
7635
|
const selectBranch = {
|
|
7464
7636
|
__proto__: null,
|
|
7465
7637
|
mutation: mutation$2e,
|
|
7466
|
-
name: name$
|
|
7638
|
+
name: name$3m
|
|
7467
7639
|
};
|
|
7468
7640
|
|
|
7469
|
-
const index$
|
|
7641
|
+
const index$H = {
|
|
7470
7642
|
__proto__: null,
|
|
7471
7643
|
AddTrustedAccount: addTrustedAccount,
|
|
7472
7644
|
CreateBranch: createBranch,
|
|
@@ -7477,361 +7649,361 @@ const index$G = {
|
|
|
7477
7649
|
SelectBranch: selectBranch
|
|
7478
7650
|
};
|
|
7479
7651
|
|
|
7480
|
-
const name$
|
|
7652
|
+
const name$3l = "capitalAddAuthor";
|
|
7481
7653
|
const mutation$2d = Selector("Mutation")({
|
|
7482
|
-
[name$
|
|
7654
|
+
[name$3l]: [{ data: $("data", "AddAuthorInput!") }, rawProjectSelector]
|
|
7483
7655
|
});
|
|
7484
7656
|
|
|
7485
7657
|
const addAuthor = {
|
|
7486
7658
|
__proto__: null,
|
|
7487
7659
|
mutation: mutation$2d,
|
|
7488
|
-
name: name$
|
|
7660
|
+
name: name$3l
|
|
7489
7661
|
};
|
|
7490
7662
|
|
|
7491
|
-
const name$
|
|
7663
|
+
const name$3k = "capitalApproveCommit";
|
|
7492
7664
|
const mutation$2c = Selector("Mutation")({
|
|
7493
|
-
[name$
|
|
7665
|
+
[name$3k]: [{ data: $("data", "CommitApproveInput!") }, rawCommitSelector]
|
|
7494
7666
|
});
|
|
7495
7667
|
|
|
7496
7668
|
const approveCommit = {
|
|
7497
7669
|
__proto__: null,
|
|
7498
7670
|
mutation: mutation$2c,
|
|
7499
|
-
name: name$
|
|
7671
|
+
name: name$3k
|
|
7500
7672
|
};
|
|
7501
7673
|
|
|
7502
|
-
const name$
|
|
7674
|
+
const name$3j = "capitalCalculateVotes";
|
|
7503
7675
|
const mutation$2b = Selector("Mutation")({
|
|
7504
|
-
[name$
|
|
7676
|
+
[name$3j]: [{ data: $("data", "CalculateVotesInput!") }, rawSegmentSelector]
|
|
7505
7677
|
});
|
|
7506
7678
|
|
|
7507
7679
|
const calculateVotes = {
|
|
7508
7680
|
__proto__: null,
|
|
7509
7681
|
mutation: mutation$2b,
|
|
7510
|
-
name: name$
|
|
7682
|
+
name: name$3j
|
|
7511
7683
|
};
|
|
7512
7684
|
|
|
7513
|
-
const name$
|
|
7685
|
+
const name$3i = "capitalCloseProject";
|
|
7514
7686
|
const mutation$2a = Selector("Mutation")({
|
|
7515
|
-
[name$
|
|
7687
|
+
[name$3i]: [{ data: $("data", "CloseProjectInput!") }, projectSelector]
|
|
7516
7688
|
});
|
|
7517
7689
|
|
|
7518
7690
|
const closeProject = {
|
|
7519
7691
|
__proto__: null,
|
|
7520
7692
|
mutation: mutation$2a,
|
|
7521
|
-
name: name$
|
|
7693
|
+
name: name$3i
|
|
7522
7694
|
};
|
|
7523
7695
|
|
|
7524
|
-
const name$
|
|
7696
|
+
const name$3h = "capitalCompleteRegistration";
|
|
7525
7697
|
const mutation$29 = Selector("Mutation")({
|
|
7526
|
-
[name$
|
|
7698
|
+
[name$3h]: [{ data: $("data", "CompleteCapitalRegistrationInputDTO!") }, rawTransactionSelector]
|
|
7527
7699
|
});
|
|
7528
7700
|
|
|
7529
7701
|
const completeCapitalRegistration = {
|
|
7530
7702
|
__proto__: null,
|
|
7531
7703
|
mutation: mutation$29,
|
|
7532
|
-
name: name$
|
|
7704
|
+
name: name$3h
|
|
7533
7705
|
};
|
|
7534
7706
|
|
|
7535
|
-
const name$
|
|
7707
|
+
const name$3g = "completeCapitalOnboardingStep";
|
|
7536
7708
|
const mutation$28 = Selector("Mutation")({
|
|
7537
|
-
[name$
|
|
7709
|
+
[name$3g]: [{ data: $("data", "CapitalOnboardingStepInput!") }, capitalOnboardingStateSelector]
|
|
7538
7710
|
});
|
|
7539
7711
|
|
|
7540
7712
|
const completeOnboardingStep = {
|
|
7541
7713
|
__proto__: null,
|
|
7542
7714
|
mutation: mutation$28,
|
|
7543
|
-
name: name$
|
|
7715
|
+
name: name$3g
|
|
7544
7716
|
};
|
|
7545
7717
|
|
|
7546
|
-
const name$
|
|
7718
|
+
const name$3f = "capitalCompleteVoting";
|
|
7547
7719
|
const mutation$27 = Selector("Mutation")({
|
|
7548
|
-
[name$
|
|
7720
|
+
[name$3f]: [{ data: $("data", "CompleteVotingInput!") }, rawTransactionSelector]
|
|
7549
7721
|
});
|
|
7550
7722
|
|
|
7551
7723
|
const completeVoting = {
|
|
7552
7724
|
__proto__: null,
|
|
7553
7725
|
mutation: mutation$27,
|
|
7554
|
-
name: name$
|
|
7726
|
+
name: name$3f
|
|
7555
7727
|
};
|
|
7556
7728
|
|
|
7557
|
-
const name$
|
|
7729
|
+
const name$3e = "capitalConvertSegment";
|
|
7558
7730
|
const mutation$26 = Selector("Mutation")({
|
|
7559
|
-
[name$
|
|
7731
|
+
[name$3e]: [{ data: $("data", "ConvertSegmentInput!") }, rawSegmentSelector]
|
|
7560
7732
|
});
|
|
7561
7733
|
|
|
7562
7734
|
const convertSegment = {
|
|
7563
7735
|
__proto__: null,
|
|
7564
7736
|
mutation: mutation$26,
|
|
7565
|
-
name: name$
|
|
7737
|
+
name: name$3e
|
|
7566
7738
|
};
|
|
7567
7739
|
|
|
7568
|
-
const name$
|
|
7740
|
+
const name$3d = "capitalCreateCommit";
|
|
7569
7741
|
const mutation$25 = Selector("Mutation")({
|
|
7570
|
-
[name$
|
|
7742
|
+
[name$3d]: [{ data: $("data", "CreateCommitInput!") }, rawCommitSelector]
|
|
7571
7743
|
});
|
|
7572
7744
|
|
|
7573
7745
|
const createCommit = {
|
|
7574
7746
|
__proto__: null,
|
|
7575
7747
|
mutation: mutation$25,
|
|
7576
|
-
name: name$
|
|
7748
|
+
name: name$3d
|
|
7577
7749
|
};
|
|
7578
7750
|
|
|
7579
|
-
const name$
|
|
7751
|
+
const name$3c = "capitalCreateCycle";
|
|
7580
7752
|
const mutation$24 = Selector("Mutation")({
|
|
7581
|
-
[name$
|
|
7753
|
+
[name$3c]: [{ data: $("data", "CreateCycleInput!") }, rawCycleSelector]
|
|
7582
7754
|
});
|
|
7583
7755
|
|
|
7584
7756
|
const createCycle = {
|
|
7585
7757
|
__proto__: null,
|
|
7586
7758
|
mutation: mutation$24,
|
|
7587
|
-
name: name$
|
|
7759
|
+
name: name$3c
|
|
7588
7760
|
};
|
|
7589
7761
|
|
|
7590
|
-
const name$
|
|
7762
|
+
const name$3b = "capitalCreateDebt";
|
|
7591
7763
|
const mutation$23 = Selector("Mutation")({
|
|
7592
|
-
[name$
|
|
7764
|
+
[name$3b]: [{ data: $("data", "CreateDebtInput!") }, rawTransactionSelector]
|
|
7593
7765
|
});
|
|
7594
7766
|
|
|
7595
7767
|
const createDebt = {
|
|
7596
7768
|
__proto__: null,
|
|
7597
7769
|
mutation: mutation$23,
|
|
7598
|
-
name: name$
|
|
7770
|
+
name: name$3b
|
|
7599
7771
|
};
|
|
7600
7772
|
|
|
7601
|
-
const name$
|
|
7773
|
+
const name$3a = "capitalCreateExpense";
|
|
7602
7774
|
const mutation$22 = Selector("Mutation")({
|
|
7603
|
-
[name$
|
|
7775
|
+
[name$3a]: [{ data: $("data", "CreateExpenseInput!") }, rawTransactionSelector]
|
|
7604
7776
|
});
|
|
7605
7777
|
|
|
7606
7778
|
const createExpense = {
|
|
7607
7779
|
__proto__: null,
|
|
7608
7780
|
mutation: mutation$22,
|
|
7609
|
-
name: name$
|
|
7781
|
+
name: name$3a
|
|
7610
7782
|
};
|
|
7611
7783
|
|
|
7612
|
-
const name$
|
|
7784
|
+
const name$39 = "capitalCreateIssue";
|
|
7613
7785
|
const mutation$21 = Selector("Mutation")({
|
|
7614
|
-
[name$
|
|
7786
|
+
[name$39]: [{ data: $("data", "CreateIssueInput!") }, rawIssueSelector]
|
|
7615
7787
|
});
|
|
7616
7788
|
|
|
7617
7789
|
const createIssue = {
|
|
7618
7790
|
__proto__: null,
|
|
7619
7791
|
mutation: mutation$21,
|
|
7620
|
-
name: name$
|
|
7792
|
+
name: name$39
|
|
7621
7793
|
};
|
|
7622
7794
|
|
|
7623
|
-
const name$
|
|
7795
|
+
const name$38 = "capitalCreateProgramProperty";
|
|
7624
7796
|
const mutation$20 = Selector("Mutation")({
|
|
7625
|
-
[name$
|
|
7797
|
+
[name$38]: [{ data: $("data", "CreateProgramPropertyInput!") }, rawTransactionSelector]
|
|
7626
7798
|
});
|
|
7627
7799
|
|
|
7628
7800
|
const createProgramProperty = {
|
|
7629
7801
|
__proto__: null,
|
|
7630
7802
|
mutation: mutation$20,
|
|
7631
|
-
name: name$
|
|
7803
|
+
name: name$38
|
|
7632
7804
|
};
|
|
7633
7805
|
|
|
7634
|
-
const name$
|
|
7806
|
+
const name$37 = "capitalCreateProject";
|
|
7635
7807
|
const mutation$1$ = Selector("Mutation")({
|
|
7636
|
-
[name$
|
|
7808
|
+
[name$37]: [{ data: $("data", "CreateProjectInput!") }, rawTransactionSelector]
|
|
7637
7809
|
});
|
|
7638
7810
|
|
|
7639
7811
|
const createProject = {
|
|
7640
7812
|
__proto__: null,
|
|
7641
7813
|
mutation: mutation$1$,
|
|
7642
|
-
name: name$
|
|
7814
|
+
name: name$37
|
|
7643
7815
|
};
|
|
7644
7816
|
|
|
7645
|
-
const name$
|
|
7817
|
+
const name$36 = "capitalCreateProjectInvest";
|
|
7646
7818
|
const mutation$1_ = Selector("Mutation")({
|
|
7647
|
-
[name$
|
|
7819
|
+
[name$36]: [{ data: $("data", "CreateProjectInvestInput!") }, rawTransactionSelector]
|
|
7648
7820
|
});
|
|
7649
7821
|
|
|
7650
7822
|
const createProjectInvest = {
|
|
7651
7823
|
__proto__: null,
|
|
7652
7824
|
mutation: mutation$1_,
|
|
7653
|
-
name: name$
|
|
7825
|
+
name: name$36
|
|
7654
7826
|
};
|
|
7655
7827
|
|
|
7656
|
-
const name$
|
|
7828
|
+
const name$35 = "capitalCreateProjectProperty";
|
|
7657
7829
|
const mutation$1Z = Selector("Mutation")({
|
|
7658
|
-
[name$
|
|
7830
|
+
[name$35]: [{ data: $("data", "CreateProjectPropertyInput!") }, rawTransactionSelector]
|
|
7659
7831
|
});
|
|
7660
7832
|
|
|
7661
7833
|
const createProjectProperty = {
|
|
7662
7834
|
__proto__: null,
|
|
7663
7835
|
mutation: mutation$1Z,
|
|
7664
|
-
name: name$
|
|
7836
|
+
name: name$35
|
|
7665
7837
|
};
|
|
7666
7838
|
|
|
7667
|
-
const name$
|
|
7839
|
+
const name$34 = "capitalCreateStory";
|
|
7668
7840
|
const mutation$1Y = Selector("Mutation")({
|
|
7669
|
-
[name$
|
|
7841
|
+
[name$34]: [{ data: $("data", "CreateStoryInput!") }, rawStorySelector]
|
|
7670
7842
|
});
|
|
7671
7843
|
|
|
7672
7844
|
const createStory = {
|
|
7673
7845
|
__proto__: null,
|
|
7674
7846
|
mutation: mutation$1Y,
|
|
7675
|
-
name: name$
|
|
7847
|
+
name: name$34
|
|
7676
7848
|
};
|
|
7677
7849
|
|
|
7678
|
-
const name$
|
|
7850
|
+
const name$33 = "capitalDeclineCommit";
|
|
7679
7851
|
const mutation$1X = Selector("Mutation")({
|
|
7680
|
-
[name$
|
|
7852
|
+
[name$33]: [{ data: $("data", "CommitDeclineInput!") }, rawCommitSelector]
|
|
7681
7853
|
});
|
|
7682
7854
|
|
|
7683
7855
|
const declineCommit = {
|
|
7684
7856
|
__proto__: null,
|
|
7685
7857
|
mutation: mutation$1X,
|
|
7686
|
-
name: name$
|
|
7858
|
+
name: name$33
|
|
7687
7859
|
};
|
|
7688
7860
|
|
|
7689
|
-
const name$
|
|
7861
|
+
const name$32 = "capitalDeleteIssue";
|
|
7690
7862
|
const mutation$1W = Selector("Mutation")({
|
|
7691
|
-
[name$
|
|
7863
|
+
[name$32]: [{ data: $("data", "DeleteCapitalIssueByHashInput!") }, true]
|
|
7692
7864
|
});
|
|
7693
7865
|
|
|
7694
7866
|
const deleteIssue = {
|
|
7695
7867
|
__proto__: null,
|
|
7696
7868
|
mutation: mutation$1W,
|
|
7697
|
-
name: name$
|
|
7869
|
+
name: name$32
|
|
7698
7870
|
};
|
|
7699
7871
|
|
|
7700
|
-
const name$
|
|
7872
|
+
const name$31 = "capitalDeleteProject";
|
|
7701
7873
|
const mutation$1V = Selector("Mutation")({
|
|
7702
|
-
[name$
|
|
7874
|
+
[name$31]: [{ data: $("data", "DeleteProjectInput!") }, rawTransactionSelector]
|
|
7703
7875
|
});
|
|
7704
7876
|
|
|
7705
7877
|
const deleteProject = {
|
|
7706
7878
|
__proto__: null,
|
|
7707
7879
|
mutation: mutation$1V,
|
|
7708
|
-
name: name$
|
|
7880
|
+
name: name$31
|
|
7709
7881
|
};
|
|
7710
7882
|
|
|
7711
|
-
const name$
|
|
7883
|
+
const name$30 = "capitalDeleteStory";
|
|
7712
7884
|
const mutation$1U = Selector("Mutation")({
|
|
7713
|
-
[name$
|
|
7885
|
+
[name$30]: [{ data: $("data", "DeleteCapitalStoryByHashInput!") }, true]
|
|
7714
7886
|
});
|
|
7715
7887
|
|
|
7716
7888
|
const deleteStory = {
|
|
7717
7889
|
__proto__: null,
|
|
7718
7890
|
mutation: mutation$1U,
|
|
7719
|
-
name: name$
|
|
7891
|
+
name: name$30
|
|
7720
7892
|
};
|
|
7721
7893
|
|
|
7722
|
-
const name$
|
|
7894
|
+
const name$2$ = "capitalEditContributor";
|
|
7723
7895
|
const mutation$1T = Selector("Mutation")({
|
|
7724
|
-
[name$
|
|
7896
|
+
[name$2$]: [{ data: $("data", "EditContributorInput!") }, rawContributorSelector]
|
|
7725
7897
|
});
|
|
7726
7898
|
|
|
7727
7899
|
const editContributor = {
|
|
7728
7900
|
__proto__: null,
|
|
7729
7901
|
mutation: mutation$1T,
|
|
7730
|
-
name: name$
|
|
7902
|
+
name: name$2$
|
|
7731
7903
|
};
|
|
7732
7904
|
|
|
7733
|
-
const name$
|
|
7905
|
+
const name$2_ = "capitalEditProject";
|
|
7734
7906
|
const mutation$1S = Selector("Mutation")({
|
|
7735
|
-
[name$
|
|
7907
|
+
[name$2_]: [{ data: $("data", "EditProjectInput!") }, rawTransactionSelector]
|
|
7736
7908
|
});
|
|
7737
7909
|
|
|
7738
7910
|
const editProject = {
|
|
7739
7911
|
__proto__: null,
|
|
7740
7912
|
mutation: mutation$1S,
|
|
7741
|
-
name: name$
|
|
7913
|
+
name: name$2_
|
|
7742
7914
|
};
|
|
7743
7915
|
|
|
7744
|
-
const name$
|
|
7916
|
+
const name$2Z = "capitalFinalizeProject";
|
|
7745
7917
|
const mutation$1R = Selector("Mutation")({
|
|
7746
|
-
[name$
|
|
7918
|
+
[name$2Z]: [{ data: $("data", "FinalizeProjectInput!") }, projectSelector]
|
|
7747
7919
|
});
|
|
7748
7920
|
|
|
7749
7921
|
const finalizeProject = {
|
|
7750
7922
|
__proto__: null,
|
|
7751
7923
|
mutation: mutation$1R,
|
|
7752
|
-
name: name$
|
|
7924
|
+
name: name$2Z
|
|
7753
7925
|
};
|
|
7754
7926
|
|
|
7755
|
-
const name$
|
|
7927
|
+
const name$2Y = "capitalFundProgram";
|
|
7756
7928
|
const mutation$1Q = Selector("Mutation")({
|
|
7757
|
-
[name$
|
|
7929
|
+
[name$2Y]: [{ data: $("data", "FundProgramInput!") }, rawTransactionSelector]
|
|
7758
7930
|
});
|
|
7759
7931
|
|
|
7760
7932
|
const fundProgram = {
|
|
7761
7933
|
__proto__: null,
|
|
7762
7934
|
mutation: mutation$1Q,
|
|
7763
|
-
name: name$
|
|
7935
|
+
name: name$2Y
|
|
7764
7936
|
};
|
|
7765
7937
|
|
|
7766
|
-
const name$
|
|
7938
|
+
const name$2X = "capitalGenerateCapitalizationAgreement";
|
|
7767
7939
|
const mutation$1P = Selector("Mutation")({
|
|
7768
|
-
[name$
|
|
7940
|
+
[name$2X]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7769
7941
|
});
|
|
7770
7942
|
|
|
7771
7943
|
const generateCapitalizationAgreement = {
|
|
7772
7944
|
__proto__: null,
|
|
7773
7945
|
mutation: mutation$1P,
|
|
7774
|
-
name: name$
|
|
7946
|
+
name: name$2X
|
|
7775
7947
|
};
|
|
7776
7948
|
|
|
7777
|
-
const name$
|
|
7949
|
+
const name$2W = "capitalGenerateCapitalizationMoneyInvestStatement";
|
|
7778
7950
|
const mutation$1O = Selector("Mutation")({
|
|
7779
|
-
[name$
|
|
7951
|
+
[name$2W]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7780
7952
|
});
|
|
7781
7953
|
|
|
7782
7954
|
const generateCapitalizationMoneyInvestStatement = {
|
|
7783
7955
|
__proto__: null,
|
|
7784
7956
|
mutation: mutation$1O,
|
|
7785
|
-
name: name$
|
|
7957
|
+
name: name$2W
|
|
7786
7958
|
};
|
|
7787
7959
|
|
|
7788
|
-
const name$
|
|
7960
|
+
const name$2V = "capitalGenerateCapitalizationPropertyInvestAct";
|
|
7789
7961
|
const mutation$1N = Selector("Mutation")({
|
|
7790
|
-
[name$
|
|
7962
|
+
[name$2V]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7791
7963
|
});
|
|
7792
7964
|
|
|
7793
7965
|
const generateCapitalizationPropertyInvestAct = {
|
|
7794
7966
|
__proto__: null,
|
|
7795
7967
|
mutation: mutation$1N,
|
|
7796
|
-
name: name$
|
|
7968
|
+
name: name$2V
|
|
7797
7969
|
};
|
|
7798
7970
|
|
|
7799
|
-
const name$
|
|
7971
|
+
const name$2U = "capitalGenerateCapitalizationPropertyInvestDecision";
|
|
7800
7972
|
const mutation$1M = Selector("Mutation")({
|
|
7801
|
-
[name$
|
|
7973
|
+
[name$2U]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7802
7974
|
});
|
|
7803
7975
|
|
|
7804
7976
|
const generateCapitalizationPropertyInvestDecision = {
|
|
7805
7977
|
__proto__: null,
|
|
7806
7978
|
mutation: mutation$1M,
|
|
7807
|
-
name: name$
|
|
7979
|
+
name: name$2U
|
|
7808
7980
|
};
|
|
7809
7981
|
|
|
7810
|
-
const name$
|
|
7982
|
+
const name$2T = "capitalGenerateCapitalizationPropertyInvestStatement";
|
|
7811
7983
|
const mutation$1L = Selector("Mutation")({
|
|
7812
|
-
[name$
|
|
7984
|
+
[name$2T]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7813
7985
|
});
|
|
7814
7986
|
|
|
7815
7987
|
const generateCapitalizationPropertyInvestStatement = {
|
|
7816
7988
|
__proto__: null,
|
|
7817
7989
|
mutation: mutation$1L,
|
|
7818
|
-
name: name$
|
|
7990
|
+
name: name$2T
|
|
7819
7991
|
};
|
|
7820
7992
|
|
|
7821
|
-
const name$
|
|
7993
|
+
const name$2S = "capitalGenerateCapitalizationToMainWalletConvertStatement";
|
|
7822
7994
|
const mutation$1K = Selector("Mutation")({
|
|
7823
|
-
[name$
|
|
7995
|
+
[name$2S]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7824
7996
|
});
|
|
7825
7997
|
|
|
7826
7998
|
const generateCapitalizationToMainWalletConvertStatement = {
|
|
7827
7999
|
__proto__: null,
|
|
7828
8000
|
mutation: mutation$1K,
|
|
7829
|
-
name: name$
|
|
8001
|
+
name: name$2S
|
|
7830
8002
|
};
|
|
7831
8003
|
|
|
7832
|
-
const name$
|
|
8004
|
+
const name$2R = "capitalGenerateRegistrationDocuments";
|
|
7833
8005
|
const mutation$1J = Selector("Mutation")({
|
|
7834
|
-
[name$
|
|
8006
|
+
[name$2R]: [
|
|
7835
8007
|
{ data: $("data", "GenerateCapitalRegistrationDocumentsInputDTO!") },
|
|
7836
8008
|
generateCapitalRegistrationDocumentsOutputSelector
|
|
7837
8009
|
]
|
|
@@ -7840,395 +8012,395 @@ const mutation$1J = Selector("Mutation")({
|
|
|
7840
8012
|
const generateCapitalRegistrationDocuments = {
|
|
7841
8013
|
__proto__: null,
|
|
7842
8014
|
mutation: mutation$1J,
|
|
7843
|
-
name: name$
|
|
8015
|
+
name: name$2R
|
|
7844
8016
|
};
|
|
7845
8017
|
|
|
7846
|
-
const name$
|
|
8018
|
+
const name$2Q = "capitalGenerateComponentGenerationContract";
|
|
7847
8019
|
const mutation$1I = Selector("Mutation")({
|
|
7848
|
-
[name$
|
|
8020
|
+
[name$2Q]: [{ data: $("data", "ComponentGenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7849
8021
|
});
|
|
7850
8022
|
|
|
7851
8023
|
const generateComponentGenerationContract = {
|
|
7852
8024
|
__proto__: null,
|
|
7853
8025
|
mutation: mutation$1I,
|
|
7854
|
-
name: name$
|
|
8026
|
+
name: name$2Q
|
|
7855
8027
|
};
|
|
7856
8028
|
|
|
7857
|
-
const name$
|
|
8029
|
+
const name$2P = "capitalGenerateExpenseDecision";
|
|
7858
8030
|
const mutation$1H = Selector("Mutation")({
|
|
7859
|
-
[name$
|
|
8031
|
+
[name$2P]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7860
8032
|
});
|
|
7861
8033
|
|
|
7862
8034
|
const generateExpenseDecision = {
|
|
7863
8035
|
__proto__: null,
|
|
7864
8036
|
mutation: mutation$1H,
|
|
7865
|
-
name: name$
|
|
8037
|
+
name: name$2P
|
|
7866
8038
|
};
|
|
7867
8039
|
|
|
7868
|
-
const name$
|
|
8040
|
+
const name$2O = "capitalGenerateExpenseStatement";
|
|
7869
8041
|
const mutation$1G = Selector("Mutation")({
|
|
7870
|
-
[name$
|
|
8042
|
+
[name$2O]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7871
8043
|
});
|
|
7872
8044
|
|
|
7873
8045
|
const generateExpenseStatement = {
|
|
7874
8046
|
__proto__: null,
|
|
7875
8047
|
mutation: mutation$1G,
|
|
7876
|
-
name: name$
|
|
8048
|
+
name: name$2O
|
|
7877
8049
|
};
|
|
7878
8050
|
|
|
7879
|
-
const name$
|
|
8051
|
+
const name$2N = "capitalGenerateGenerationContract";
|
|
7880
8052
|
const mutation$1F = Selector("Mutation")({
|
|
7881
|
-
[name$
|
|
8053
|
+
[name$2N]: [{ data: $("data", "GenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7882
8054
|
});
|
|
7883
8055
|
|
|
7884
8056
|
const generateGenerationContract = {
|
|
7885
8057
|
__proto__: null,
|
|
7886
8058
|
mutation: mutation$1F,
|
|
7887
|
-
name: name$
|
|
8059
|
+
name: name$2N
|
|
7888
8060
|
};
|
|
7889
8061
|
|
|
7890
|
-
const name$
|
|
8062
|
+
const name$2M = "capitalGenerateGenerationMoneyInvestStatement";
|
|
7891
8063
|
const mutation$1E = Selector("Mutation")({
|
|
7892
|
-
[name$
|
|
8064
|
+
[name$2M]: [{ data: $("data", "GenerationMoneyInvestStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7893
8065
|
});
|
|
7894
8066
|
|
|
7895
8067
|
const generateGenerationMoneyInvestStatement = {
|
|
7896
8068
|
__proto__: null,
|
|
7897
8069
|
mutation: mutation$1E,
|
|
7898
|
-
name: name$
|
|
8070
|
+
name: name$2M
|
|
7899
8071
|
};
|
|
7900
8072
|
|
|
7901
|
-
const name$
|
|
8073
|
+
const name$2L = "capitalGenerateGenerationPropertyInvestAct";
|
|
7902
8074
|
const mutation$1D = Selector("Mutation")({
|
|
7903
|
-
[name$
|
|
8075
|
+
[name$2L]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7904
8076
|
});
|
|
7905
8077
|
|
|
7906
8078
|
const generateGenerationPropertyInvestAct = {
|
|
7907
8079
|
__proto__: null,
|
|
7908
8080
|
mutation: mutation$1D,
|
|
7909
|
-
name: name$
|
|
8081
|
+
name: name$2L
|
|
7910
8082
|
};
|
|
7911
8083
|
|
|
7912
|
-
const name$
|
|
8084
|
+
const name$2K = "capitalGenerateGenerationPropertyInvestDecision";
|
|
7913
8085
|
const mutation$1C = Selector("Mutation")({
|
|
7914
|
-
[name$
|
|
8086
|
+
[name$2K]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7915
8087
|
});
|
|
7916
8088
|
|
|
7917
8089
|
const generateGenerationPropertyInvestDecision = {
|
|
7918
8090
|
__proto__: null,
|
|
7919
8091
|
mutation: mutation$1C,
|
|
7920
|
-
name: name$
|
|
8092
|
+
name: name$2K
|
|
7921
8093
|
};
|
|
7922
8094
|
|
|
7923
|
-
const name$
|
|
8095
|
+
const name$2J = "capitalGenerateGenerationPropertyInvestStatement";
|
|
7924
8096
|
const mutation$1B = Selector("Mutation")({
|
|
7925
|
-
[name$
|
|
8097
|
+
[name$2J]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7926
8098
|
});
|
|
7927
8099
|
|
|
7928
8100
|
const generateGenerationPropertyInvestStatement = {
|
|
7929
8101
|
__proto__: null,
|
|
7930
8102
|
mutation: mutation$1B,
|
|
7931
|
-
name: name$
|
|
8103
|
+
name: name$2J
|
|
7932
8104
|
};
|
|
7933
8105
|
|
|
7934
|
-
const name$
|
|
8106
|
+
const name$2I = "capitalGenerateGenerationToCapitalizationConvertStatement";
|
|
7935
8107
|
const mutation$1A = Selector("Mutation")({
|
|
7936
|
-
[name$
|
|
8108
|
+
[name$2I]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7937
8109
|
});
|
|
7938
8110
|
|
|
7939
8111
|
const generateGenerationToCapitalizationConvertStatement = {
|
|
7940
8112
|
__proto__: null,
|
|
7941
8113
|
mutation: mutation$1A,
|
|
7942
|
-
name: name$
|
|
8114
|
+
name: name$2I
|
|
7943
8115
|
};
|
|
7944
8116
|
|
|
7945
|
-
const name$
|
|
8117
|
+
const name$2H = "capitalGenerateGenerationToMainWalletConvertStatement";
|
|
7946
8118
|
const mutation$1z = Selector("Mutation")({
|
|
7947
|
-
[name$
|
|
8119
|
+
[name$2H]: [{ data: $("data", "GenerationToMainWalletConvertStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7948
8120
|
});
|
|
7949
8121
|
|
|
7950
8122
|
const generateGenerationToMainWalletConvertStatement = {
|
|
7951
8123
|
__proto__: null,
|
|
7952
8124
|
mutation: mutation$1z,
|
|
7953
|
-
name: name$
|
|
8125
|
+
name: name$2H
|
|
7954
8126
|
};
|
|
7955
8127
|
|
|
7956
|
-
const name$
|
|
8128
|
+
const name$2G = "capitalGenerateGenerationToProjectConvertStatement";
|
|
7957
8129
|
const mutation$1y = Selector("Mutation")({
|
|
7958
|
-
[name$
|
|
8130
|
+
[name$2G]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7959
8131
|
});
|
|
7960
8132
|
|
|
7961
8133
|
const generateGenerationToProjectConvertStatement = {
|
|
7962
8134
|
__proto__: null,
|
|
7963
8135
|
mutation: mutation$1y,
|
|
7964
|
-
name: name$
|
|
8136
|
+
name: name$2G
|
|
7965
8137
|
};
|
|
7966
8138
|
|
|
7967
|
-
const name$
|
|
8139
|
+
const name$2F = "capitalGenerateGetLoanDecision";
|
|
7968
8140
|
const mutation$1x = Selector("Mutation")({
|
|
7969
|
-
[name$
|
|
8141
|
+
[name$2F]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7970
8142
|
});
|
|
7971
8143
|
|
|
7972
8144
|
const generateGetLoanDecision = {
|
|
7973
8145
|
__proto__: null,
|
|
7974
8146
|
mutation: mutation$1x,
|
|
7975
|
-
name: name$
|
|
8147
|
+
name: name$2F
|
|
7976
8148
|
};
|
|
7977
8149
|
|
|
7978
|
-
const name$
|
|
8150
|
+
const name$2E = "capitalGenerateGetLoanStatement";
|
|
7979
8151
|
const mutation$1w = Selector("Mutation")({
|
|
7980
|
-
[name$
|
|
8152
|
+
[name$2E]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7981
8153
|
});
|
|
7982
8154
|
|
|
7983
8155
|
const generateGetLoanStatement = {
|
|
7984
8156
|
__proto__: null,
|
|
7985
8157
|
mutation: mutation$1w,
|
|
7986
|
-
name: name$
|
|
8158
|
+
name: name$2E
|
|
7987
8159
|
};
|
|
7988
8160
|
|
|
7989
|
-
const name$
|
|
8161
|
+
const name$2D = "capitalGenerateProjectGenerationContract";
|
|
7990
8162
|
const mutation$1v = Selector("Mutation")({
|
|
7991
|
-
[name$
|
|
8163
|
+
[name$2D]: [{ data: $("data", "ProjectGenerationContractGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
7992
8164
|
});
|
|
7993
8165
|
|
|
7994
8166
|
const generateProjectGenerationContract = {
|
|
7995
8167
|
__proto__: null,
|
|
7996
8168
|
mutation: mutation$1v,
|
|
7997
|
-
name: name$
|
|
8169
|
+
name: name$2D
|
|
7998
8170
|
};
|
|
7999
8171
|
|
|
8000
|
-
const name$
|
|
8172
|
+
const name$2C = "capitalGenerateResultContributionAct";
|
|
8001
8173
|
const mutation$1u = Selector("Mutation")({
|
|
8002
|
-
[name$
|
|
8174
|
+
[name$2C]: [{ data: $("data", "ResultContributionActGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8003
8175
|
});
|
|
8004
8176
|
|
|
8005
8177
|
const generateResultContributionAct = {
|
|
8006
8178
|
__proto__: null,
|
|
8007
8179
|
mutation: mutation$1u,
|
|
8008
|
-
name: name$
|
|
8180
|
+
name: name$2C
|
|
8009
8181
|
};
|
|
8010
8182
|
|
|
8011
|
-
const name$
|
|
8183
|
+
const name$2B = "capitalGenerateResultContributionDecision";
|
|
8012
8184
|
const mutation$1t = Selector("Mutation")({
|
|
8013
|
-
[name$
|
|
8185
|
+
[name$2B]: [{ data: $("data", "ResultContributionDecisionGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8014
8186
|
});
|
|
8015
8187
|
|
|
8016
8188
|
const generateResultContributionDecision = {
|
|
8017
8189
|
__proto__: null,
|
|
8018
8190
|
mutation: mutation$1t,
|
|
8019
|
-
name: name$
|
|
8191
|
+
name: name$2B
|
|
8020
8192
|
};
|
|
8021
8193
|
|
|
8022
|
-
const name$
|
|
8194
|
+
const name$2A = "capitalGenerateResultContributionStatement";
|
|
8023
8195
|
const mutation$1s = Selector("Mutation")({
|
|
8024
|
-
[name$
|
|
8196
|
+
[name$2A]: [{ data: $("data", "ResultContributionStatementGenerateInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8025
8197
|
});
|
|
8026
8198
|
|
|
8027
8199
|
const generateResultContributionStatement = {
|
|
8028
8200
|
__proto__: null,
|
|
8029
8201
|
mutation: mutation$1s,
|
|
8030
|
-
name: name$
|
|
8202
|
+
name: name$2A
|
|
8031
8203
|
};
|
|
8032
8204
|
|
|
8033
|
-
const name$
|
|
8205
|
+
const name$2z = "capitalImportContributor";
|
|
8034
8206
|
const mutation$1r = Selector("Mutation")({
|
|
8035
|
-
[name$
|
|
8207
|
+
[name$2z]: [{ data: $("data", "ImportContributorInput!") }, rawTransactionSelector]
|
|
8036
8208
|
});
|
|
8037
8209
|
|
|
8038
8210
|
const importContributor = {
|
|
8039
8211
|
__proto__: null,
|
|
8040
8212
|
mutation: mutation$1r,
|
|
8041
|
-
name: name$
|
|
8213
|
+
name: name$2z
|
|
8042
8214
|
};
|
|
8043
8215
|
|
|
8044
|
-
const name$
|
|
8216
|
+
const name$2y = "capitalMakeClearance";
|
|
8045
8217
|
const mutation$1q = Selector("Mutation")({
|
|
8046
|
-
[name$
|
|
8218
|
+
[name$2y]: [{ data: $("data", "MakeClearanceInput!") }, rawTransactionSelector]
|
|
8047
8219
|
});
|
|
8048
8220
|
|
|
8049
8221
|
const makeClearance = {
|
|
8050
8222
|
__proto__: null,
|
|
8051
8223
|
mutation: mutation$1q,
|
|
8052
|
-
name: name$
|
|
8224
|
+
name: name$2y
|
|
8053
8225
|
};
|
|
8054
8226
|
|
|
8055
|
-
const name$
|
|
8227
|
+
const name$2x = "capitalOpenProject";
|
|
8056
8228
|
const mutation$1p = Selector("Mutation")({
|
|
8057
|
-
[name$
|
|
8229
|
+
[name$2x]: [{ data: $("data", "OpenProjectInput!") }, projectSelector]
|
|
8058
8230
|
});
|
|
8059
8231
|
|
|
8060
8232
|
const openProject = {
|
|
8061
8233
|
__proto__: null,
|
|
8062
8234
|
mutation: mutation$1p,
|
|
8063
|
-
name: name$
|
|
8235
|
+
name: name$2x
|
|
8064
8236
|
};
|
|
8065
8237
|
|
|
8066
|
-
const name$
|
|
8238
|
+
const name$2w = "capitalPushResult";
|
|
8067
8239
|
const mutation$1o = Selector("Mutation")({
|
|
8068
|
-
[name$
|
|
8240
|
+
[name$2w]: [{ data: $("data", "PushResultInput!") }, rawSegmentSelector]
|
|
8069
8241
|
});
|
|
8070
8242
|
|
|
8071
8243
|
const pushResult = {
|
|
8072
8244
|
__proto__: null,
|
|
8073
8245
|
mutation: mutation$1o,
|
|
8074
|
-
name: name$
|
|
8246
|
+
name: name$2w
|
|
8075
8247
|
};
|
|
8076
8248
|
|
|
8077
|
-
const name$
|
|
8249
|
+
const name$2v = "capitalRefreshProgram";
|
|
8078
8250
|
const mutation$1n = Selector("Mutation")({
|
|
8079
|
-
[name$
|
|
8251
|
+
[name$2v]: [{ data: $("data", "RefreshProgramInput!") }, rawTransactionSelector]
|
|
8080
8252
|
});
|
|
8081
8253
|
|
|
8082
8254
|
const refreshProgram = {
|
|
8083
8255
|
__proto__: null,
|
|
8084
8256
|
mutation: mutation$1n,
|
|
8085
|
-
name: name$
|
|
8257
|
+
name: name$2v
|
|
8086
8258
|
};
|
|
8087
8259
|
|
|
8088
|
-
const name$
|
|
8260
|
+
const name$2u = "capitalRefreshSegment";
|
|
8089
8261
|
const mutation$1m = Selector("Mutation")({
|
|
8090
|
-
[name$
|
|
8262
|
+
[name$2u]: [{ data: $("data", "RefreshSegmentInput!") }, rawSegmentSelector]
|
|
8091
8263
|
});
|
|
8092
8264
|
|
|
8093
8265
|
const refreshSegment = {
|
|
8094
8266
|
__proto__: null,
|
|
8095
8267
|
mutation: mutation$1m,
|
|
8096
|
-
name: name$
|
|
8268
|
+
name: name$2u
|
|
8097
8269
|
};
|
|
8098
8270
|
|
|
8099
|
-
const name$
|
|
8271
|
+
const name$2t = "capitalRegisterContributor";
|
|
8100
8272
|
const mutation$1l = Selector("Mutation")({
|
|
8101
|
-
[name$
|
|
8273
|
+
[name$2t]: [{ data: $("data", "RegisterContributorInput!") }, rawTransactionSelector]
|
|
8102
8274
|
});
|
|
8103
8275
|
|
|
8104
8276
|
const registerContributor = {
|
|
8105
8277
|
__proto__: null,
|
|
8106
8278
|
mutation: mutation$1l,
|
|
8107
|
-
name: name$
|
|
8279
|
+
name: name$2t
|
|
8108
8280
|
};
|
|
8109
8281
|
|
|
8110
|
-
const name$
|
|
8282
|
+
const name$2s = "capitalSetConfig";
|
|
8111
8283
|
const mutation$1k = Selector("Mutation")({
|
|
8112
|
-
[name$
|
|
8284
|
+
[name$2s]: [{ data: $("data", "SetConfigInput!") }, rawTransactionSelector]
|
|
8113
8285
|
});
|
|
8114
8286
|
|
|
8115
8287
|
const setConfig = {
|
|
8116
8288
|
__proto__: null,
|
|
8117
8289
|
mutation: mutation$1k,
|
|
8118
|
-
name: name$
|
|
8290
|
+
name: name$2s
|
|
8119
8291
|
};
|
|
8120
8292
|
|
|
8121
|
-
const name$
|
|
8293
|
+
const name$2r = "capitalSetMaster";
|
|
8122
8294
|
const mutation$1j = Selector("Mutation")({
|
|
8123
|
-
[name$
|
|
8295
|
+
[name$2r]: [{ data: $("data", "SetMasterInput!") }, rawTransactionSelector]
|
|
8124
8296
|
});
|
|
8125
8297
|
|
|
8126
8298
|
const setMaster = {
|
|
8127
8299
|
__proto__: null,
|
|
8128
8300
|
mutation: mutation$1j,
|
|
8129
|
-
name: name$
|
|
8301
|
+
name: name$2r
|
|
8130
8302
|
};
|
|
8131
8303
|
|
|
8132
|
-
const name$
|
|
8304
|
+
const name$2q = "capitalSetPlan";
|
|
8133
8305
|
const mutation$1i = Selector("Mutation")({
|
|
8134
|
-
[name$
|
|
8306
|
+
[name$2q]: [{ data: $("data", "SetPlanInput!") }, rawProjectSelector]
|
|
8135
8307
|
});
|
|
8136
8308
|
|
|
8137
8309
|
const setPlan = {
|
|
8138
8310
|
__proto__: null,
|
|
8139
8311
|
mutation: mutation$1i,
|
|
8140
|
-
name: name$
|
|
8312
|
+
name: name$2q
|
|
8141
8313
|
};
|
|
8142
8314
|
|
|
8143
|
-
const name$
|
|
8315
|
+
const name$2p = "capitalSignActAsChairman";
|
|
8144
8316
|
const mutation$1h = Selector("Mutation")({
|
|
8145
|
-
[name$
|
|
8317
|
+
[name$2p]: [{ data: $("data", "SignActAsChairmanInput!") }, rawSegmentSelector]
|
|
8146
8318
|
});
|
|
8147
8319
|
|
|
8148
8320
|
const signActAsChairman = {
|
|
8149
8321
|
__proto__: null,
|
|
8150
8322
|
mutation: mutation$1h,
|
|
8151
|
-
name: name$
|
|
8323
|
+
name: name$2p
|
|
8152
8324
|
};
|
|
8153
8325
|
|
|
8154
|
-
const name$
|
|
8326
|
+
const name$2o = "capitalSignActAsContributor";
|
|
8155
8327
|
const mutation$1g = Selector("Mutation")({
|
|
8156
|
-
[name$
|
|
8328
|
+
[name$2o]: [{ data: $("data", "SignActAsContributorInput!") }, rawSegmentSelector]
|
|
8157
8329
|
});
|
|
8158
8330
|
|
|
8159
8331
|
const signActAsContributor = {
|
|
8160
8332
|
__proto__: null,
|
|
8161
8333
|
mutation: mutation$1g,
|
|
8162
|
-
name: name$
|
|
8334
|
+
name: name$2o
|
|
8163
8335
|
};
|
|
8164
8336
|
|
|
8165
|
-
const name$
|
|
8337
|
+
const name$2n = "capitalStartProject";
|
|
8166
8338
|
const mutation$1f = Selector("Mutation")({
|
|
8167
|
-
[name$
|
|
8339
|
+
[name$2n]: [{ data: $("data", "StartProjectInput!") }, projectSelector]
|
|
8168
8340
|
});
|
|
8169
8341
|
|
|
8170
8342
|
const startProject = {
|
|
8171
8343
|
__proto__: null,
|
|
8172
8344
|
mutation: mutation$1f,
|
|
8173
|
-
name: name$
|
|
8345
|
+
name: name$2n
|
|
8174
8346
|
};
|
|
8175
8347
|
|
|
8176
|
-
const name$
|
|
8348
|
+
const name$2m = "capitalStartVoting";
|
|
8177
8349
|
const mutation$1e = Selector("Mutation")({
|
|
8178
|
-
[name$
|
|
8350
|
+
[name$2m]: [{ data: $("data", "StartVotingInput!") }, rawTransactionSelector]
|
|
8179
8351
|
});
|
|
8180
8352
|
|
|
8181
8353
|
const startVoting = {
|
|
8182
8354
|
__proto__: null,
|
|
8183
8355
|
mutation: mutation$1e,
|
|
8184
|
-
name: name$
|
|
8356
|
+
name: name$2m
|
|
8185
8357
|
};
|
|
8186
8358
|
|
|
8187
|
-
const name$
|
|
8359
|
+
const name$2l = "capitalStopProject";
|
|
8188
8360
|
const mutation$1d = Selector("Mutation")({
|
|
8189
|
-
[name$
|
|
8361
|
+
[name$2l]: [{ data: $("data", "StopProjectInput!") }, projectSelector]
|
|
8190
8362
|
});
|
|
8191
8363
|
|
|
8192
8364
|
const stopProject = {
|
|
8193
8365
|
__proto__: null,
|
|
8194
8366
|
mutation: mutation$1d,
|
|
8195
|
-
name: name$
|
|
8367
|
+
name: name$2l
|
|
8196
8368
|
};
|
|
8197
8369
|
|
|
8198
|
-
const name$
|
|
8370
|
+
const name$2k = "capitalSubmitVote";
|
|
8199
8371
|
const mutation$1c = Selector("Mutation")({
|
|
8200
|
-
[name$
|
|
8372
|
+
[name$2k]: [{ data: $("data", "SubmitVoteInput!") }, rawTransactionSelector]
|
|
8201
8373
|
});
|
|
8202
8374
|
|
|
8203
8375
|
const submitVote = {
|
|
8204
8376
|
__proto__: null,
|
|
8205
8377
|
mutation: mutation$1c,
|
|
8206
|
-
name: name$
|
|
8378
|
+
name: name$2k
|
|
8207
8379
|
};
|
|
8208
8380
|
|
|
8209
|
-
const name$
|
|
8381
|
+
const name$2j = "capitalUpdateIssue";
|
|
8210
8382
|
const mutation$1b = Selector("Mutation")({
|
|
8211
|
-
[name$
|
|
8383
|
+
[name$2j]: [{ data: $("data", "UpdateIssueInput!") }, rawIssueSelector]
|
|
8212
8384
|
});
|
|
8213
8385
|
|
|
8214
8386
|
const updateIssue = {
|
|
8215
8387
|
__proto__: null,
|
|
8216
8388
|
mutation: mutation$1b,
|
|
8217
|
-
name: name$
|
|
8389
|
+
name: name$2j
|
|
8218
8390
|
};
|
|
8219
8391
|
|
|
8220
|
-
const name$
|
|
8392
|
+
const name$2i = "capitalUpdateStory";
|
|
8221
8393
|
const mutation$1a = Selector("Mutation")({
|
|
8222
|
-
[name$
|
|
8394
|
+
[name$2i]: [{ data: $("data", "UpdateStoryInput!") }, rawStorySelector]
|
|
8223
8395
|
});
|
|
8224
8396
|
|
|
8225
8397
|
const updateStory = {
|
|
8226
8398
|
__proto__: null,
|
|
8227
8399
|
mutation: mutation$1a,
|
|
8228
|
-
name: name$
|
|
8400
|
+
name: name$2i
|
|
8229
8401
|
};
|
|
8230
8402
|
|
|
8231
|
-
const index$
|
|
8403
|
+
const index$G = {
|
|
8232
8404
|
__proto__: null,
|
|
8233
8405
|
AddAuthor: addAuthor,
|
|
8234
8406
|
ApproveCommit: approveCommit,
|
|
@@ -8344,51 +8516,51 @@ const chairmanOnboardingStateSelector = Selector("ChairmanOnboardingState")(onbo
|
|
|
8344
8516
|
const rawApprovalsPaginationSelector = { ...paginationSelector, items: rawApprovalSelector };
|
|
8345
8517
|
const approvalsPaginationSelector = Selector("PaginatedChairmanApprovalsPaginationResult")(rawApprovalsPaginationSelector);
|
|
8346
8518
|
|
|
8347
|
-
const name$
|
|
8519
|
+
const name$2h = "completeChairmanAgendaStep";
|
|
8348
8520
|
const mutation$19 = Selector("Mutation")({
|
|
8349
|
-
[name$
|
|
8521
|
+
[name$2h]: [{ data: $("data", "ChairmanOnboardingAgendaInput!") }, chairmanOnboardingStateSelector]
|
|
8350
8522
|
});
|
|
8351
8523
|
|
|
8352
8524
|
const completeOnboardingAgendaStep = {
|
|
8353
8525
|
__proto__: null,
|
|
8354
8526
|
mutation: mutation$19,
|
|
8355
|
-
name: name$
|
|
8527
|
+
name: name$2h
|
|
8356
8528
|
};
|
|
8357
8529
|
|
|
8358
|
-
const name$
|
|
8530
|
+
const name$2g = "completeChairmanGeneralMeetStep";
|
|
8359
8531
|
const mutation$18 = Selector("Mutation")({
|
|
8360
|
-
[name$
|
|
8532
|
+
[name$2g]: [{ data: $("data", "ChairmanOnboardingGeneralMeetInput!") }, chairmanOnboardingStateSelector]
|
|
8361
8533
|
});
|
|
8362
8534
|
|
|
8363
8535
|
const completeOnboardingGeneralMeetStep = {
|
|
8364
8536
|
__proto__: null,
|
|
8365
8537
|
mutation: mutation$18,
|
|
8366
|
-
name: name$
|
|
8538
|
+
name: name$2g
|
|
8367
8539
|
};
|
|
8368
8540
|
|
|
8369
|
-
const name$
|
|
8541
|
+
const name$2f = "chairmanConfirmApprove";
|
|
8370
8542
|
const mutation$17 = Selector("Mutation")({
|
|
8371
|
-
[name$
|
|
8543
|
+
[name$2f]: [{ data: $("data", "ConfirmApproveInput!") }, approvalSelector]
|
|
8372
8544
|
});
|
|
8373
8545
|
|
|
8374
8546
|
const confirmApprove = {
|
|
8375
8547
|
__proto__: null,
|
|
8376
8548
|
mutation: mutation$17,
|
|
8377
|
-
name: name$
|
|
8549
|
+
name: name$2f
|
|
8378
8550
|
};
|
|
8379
8551
|
|
|
8380
|
-
const name$
|
|
8552
|
+
const name$2e = "chairmanDeclineApprove";
|
|
8381
8553
|
const mutation$16 = Selector("Mutation")({
|
|
8382
|
-
[name$
|
|
8554
|
+
[name$2e]: [{ data: $("data", "DeclineApproveInput!") }, approvalSelector]
|
|
8383
8555
|
});
|
|
8384
8556
|
|
|
8385
8557
|
const declineApprove = {
|
|
8386
8558
|
__proto__: null,
|
|
8387
8559
|
mutation: mutation$16,
|
|
8388
|
-
name: name$
|
|
8560
|
+
name: name$2e
|
|
8389
8561
|
};
|
|
8390
8562
|
|
|
8391
|
-
const index$
|
|
8563
|
+
const index$F = {
|
|
8392
8564
|
__proto__: null,
|
|
8393
8565
|
CompleteOnboardingAgendaStep: completeOnboardingAgendaStep,
|
|
8394
8566
|
CompleteOnboardingGeneralMeetStep: completeOnboardingGeneralMeetStep,
|
|
@@ -8396,276 +8568,276 @@ const index$E = {
|
|
|
8396
8568
|
DeclineApprove: declineApprove
|
|
8397
8569
|
};
|
|
8398
8570
|
|
|
8399
|
-
const name$
|
|
8571
|
+
const name$2d = "chatcoopCreateAccount";
|
|
8400
8572
|
const mutation$15 = Selector("Mutation")({
|
|
8401
|
-
[name$
|
|
8573
|
+
[name$2d]: [{ data: $("data", "CreateMatrixAccountInputDTO!") }, true]
|
|
8402
8574
|
});
|
|
8403
8575
|
|
|
8404
8576
|
const createAccount = {
|
|
8405
8577
|
__proto__: null,
|
|
8406
8578
|
mutation: mutation$15,
|
|
8407
|
-
name: name$
|
|
8579
|
+
name: name$2d
|
|
8408
8580
|
};
|
|
8409
8581
|
|
|
8410
|
-
const index$
|
|
8582
|
+
const index$E = {
|
|
8411
8583
|
__proto__: null,
|
|
8412
8584
|
CreateAccount: createAccount
|
|
8413
8585
|
};
|
|
8414
8586
|
|
|
8415
|
-
const name$
|
|
8587
|
+
const name$2c = "acceptChildOrder";
|
|
8416
8588
|
const mutation$14 = Selector("Mutation")({
|
|
8417
|
-
[name$
|
|
8589
|
+
[name$2c]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
|
|
8418
8590
|
});
|
|
8419
8591
|
|
|
8420
8592
|
const acceptChildOrder = {
|
|
8421
8593
|
__proto__: null,
|
|
8422
8594
|
mutation: mutation$14,
|
|
8423
|
-
name: name$
|
|
8595
|
+
name: name$2c
|
|
8424
8596
|
};
|
|
8425
8597
|
|
|
8426
|
-
const name$
|
|
8598
|
+
const name$2b = "cancelRequest";
|
|
8427
8599
|
const mutation$13 = Selector("Mutation")({
|
|
8428
|
-
[name$
|
|
8600
|
+
[name$2b]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
|
|
8429
8601
|
});
|
|
8430
8602
|
|
|
8431
8603
|
const cancelRequest = {
|
|
8432
8604
|
__proto__: null,
|
|
8433
8605
|
mutation: mutation$13,
|
|
8434
|
-
name: name$
|
|
8606
|
+
name: name$2b
|
|
8435
8607
|
};
|
|
8436
8608
|
|
|
8437
|
-
const name$
|
|
8609
|
+
const name$2a = "confirmReceiveOnRequest";
|
|
8438
8610
|
const mutation$12 = Selector("Mutation")({
|
|
8439
|
-
[name$
|
|
8611
|
+
[name$2a]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
8440
8612
|
});
|
|
8441
8613
|
|
|
8442
8614
|
const completeReceiveOnRequest = {
|
|
8443
8615
|
__proto__: null,
|
|
8444
8616
|
mutation: mutation$12,
|
|
8445
|
-
name: name$
|
|
8617
|
+
name: name$2a
|
|
8446
8618
|
};
|
|
8447
8619
|
|
|
8448
|
-
const name$
|
|
8620
|
+
const name$29 = "completeRequest";
|
|
8449
8621
|
const mutation$11 = Selector("Mutation")({
|
|
8450
|
-
[name$
|
|
8622
|
+
[name$29]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
|
|
8451
8623
|
});
|
|
8452
8624
|
|
|
8453
8625
|
const completeRequest = {
|
|
8454
8626
|
__proto__: null,
|
|
8455
8627
|
mutation: mutation$11,
|
|
8456
|
-
name: name$
|
|
8628
|
+
name: name$29
|
|
8457
8629
|
};
|
|
8458
8630
|
|
|
8459
|
-
const name$
|
|
8631
|
+
const name$28 = "confirmSupplyOnRequest";
|
|
8460
8632
|
const mutation$10 = Selector("Mutation")({
|
|
8461
|
-
[name$
|
|
8633
|
+
[name$28]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
|
|
8462
8634
|
});
|
|
8463
8635
|
|
|
8464
8636
|
const confirmSupplyOnRequest = {
|
|
8465
8637
|
__proto__: null,
|
|
8466
8638
|
mutation: mutation$10,
|
|
8467
|
-
name: name$
|
|
8639
|
+
name: name$28
|
|
8468
8640
|
};
|
|
8469
8641
|
|
|
8470
|
-
const name$
|
|
8642
|
+
const name$27 = "createChildOrder";
|
|
8471
8643
|
const mutation$$ = Selector("Mutation")({
|
|
8472
|
-
[name$
|
|
8644
|
+
[name$27]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
|
|
8473
8645
|
});
|
|
8474
8646
|
|
|
8475
8647
|
const createChildOrder = {
|
|
8476
8648
|
__proto__: null,
|
|
8477
8649
|
mutation: mutation$$,
|
|
8478
|
-
name: name$
|
|
8650
|
+
name: name$27
|
|
8479
8651
|
};
|
|
8480
8652
|
|
|
8481
|
-
const name$
|
|
8653
|
+
const name$26 = "createParentOffer";
|
|
8482
8654
|
const mutation$_ = Selector("Mutation")({
|
|
8483
|
-
[name$
|
|
8655
|
+
[name$26]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
|
|
8484
8656
|
});
|
|
8485
8657
|
|
|
8486
8658
|
const createParentOffer = {
|
|
8487
8659
|
__proto__: null,
|
|
8488
8660
|
mutation: mutation$_,
|
|
8489
|
-
name: name$
|
|
8661
|
+
name: name$26
|
|
8490
8662
|
};
|
|
8491
8663
|
|
|
8492
|
-
const name$
|
|
8664
|
+
const name$25 = "declineRequest";
|
|
8493
8665
|
const mutation$Z = Selector("Mutation")({
|
|
8494
|
-
[name$
|
|
8666
|
+
[name$25]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
|
|
8495
8667
|
});
|
|
8496
8668
|
|
|
8497
8669
|
const declineRequest = {
|
|
8498
8670
|
__proto__: null,
|
|
8499
8671
|
mutation: mutation$Z,
|
|
8500
|
-
name: name$
|
|
8672
|
+
name: name$25
|
|
8501
8673
|
};
|
|
8502
8674
|
|
|
8503
|
-
const name$
|
|
8675
|
+
const name$24 = "deliverOnRequest";
|
|
8504
8676
|
const mutation$Y = Selector("Mutation")({
|
|
8505
|
-
[name$
|
|
8677
|
+
[name$24]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
|
|
8506
8678
|
});
|
|
8507
8679
|
|
|
8508
8680
|
const deliverOnRequest = {
|
|
8509
8681
|
__proto__: null,
|
|
8510
8682
|
mutation: mutation$Y,
|
|
8511
|
-
name: name$
|
|
8683
|
+
name: name$24
|
|
8512
8684
|
};
|
|
8513
8685
|
|
|
8514
|
-
const name$
|
|
8686
|
+
const name$23 = "disputeOnRequest";
|
|
8515
8687
|
const mutation$X = Selector("Mutation")({
|
|
8516
|
-
[name$
|
|
8688
|
+
[name$23]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
|
|
8517
8689
|
});
|
|
8518
8690
|
|
|
8519
8691
|
const disputeOnRequest = {
|
|
8520
8692
|
__proto__: null,
|
|
8521
8693
|
mutation: mutation$X,
|
|
8522
|
-
name: name$
|
|
8694
|
+
name: name$23
|
|
8523
8695
|
};
|
|
8524
8696
|
|
|
8525
|
-
const name$
|
|
8697
|
+
const name$22 = "generateAssetContributionAct";
|
|
8526
8698
|
const mutation$W = Selector("Mutation")({
|
|
8527
|
-
[name$
|
|
8699
|
+
[name$22]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8528
8700
|
});
|
|
8529
8701
|
|
|
8530
8702
|
const generateAssetContributionAct = {
|
|
8531
8703
|
__proto__: null,
|
|
8532
8704
|
mutation: mutation$W,
|
|
8533
|
-
name: name$
|
|
8705
|
+
name: name$22
|
|
8534
8706
|
};
|
|
8535
8707
|
|
|
8536
|
-
const name$
|
|
8708
|
+
const name$21 = "generateAssetContributionDecision";
|
|
8537
8709
|
const mutation$V = Selector("Mutation")({
|
|
8538
|
-
[name$
|
|
8710
|
+
[name$21]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8539
8711
|
});
|
|
8540
8712
|
|
|
8541
8713
|
const generateAssetContributionDecision = {
|
|
8542
8714
|
__proto__: null,
|
|
8543
8715
|
mutation: mutation$V,
|
|
8544
|
-
name: name$
|
|
8716
|
+
name: name$21
|
|
8545
8717
|
};
|
|
8546
8718
|
|
|
8547
|
-
const name$
|
|
8719
|
+
const name$20 = "generateAssetContributionStatement";
|
|
8548
8720
|
const mutation$U = Selector("Mutation")({
|
|
8549
|
-
[name$
|
|
8721
|
+
[name$20]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8550
8722
|
});
|
|
8551
8723
|
|
|
8552
8724
|
const generateAssetContributionStatement = {
|
|
8553
8725
|
__proto__: null,
|
|
8554
8726
|
mutation: mutation$U,
|
|
8555
|
-
name: name$
|
|
8727
|
+
name: name$20
|
|
8556
8728
|
};
|
|
8557
8729
|
|
|
8558
|
-
const name$
|
|
8730
|
+
const name$1$ = "generateReturnByAssetAct";
|
|
8559
8731
|
const mutation$T = Selector("Mutation")({
|
|
8560
|
-
[name$
|
|
8732
|
+
[name$1$]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8561
8733
|
});
|
|
8562
8734
|
|
|
8563
8735
|
const generateReturnByAssetAct = {
|
|
8564
8736
|
__proto__: null,
|
|
8565
8737
|
mutation: mutation$T,
|
|
8566
|
-
name: name$
|
|
8738
|
+
name: name$1$
|
|
8567
8739
|
};
|
|
8568
8740
|
|
|
8569
|
-
const name$
|
|
8741
|
+
const name$1_ = "generateReturnByAssetDecision";
|
|
8570
8742
|
const mutation$S = Selector("Mutation")({
|
|
8571
|
-
[name$
|
|
8743
|
+
[name$1_]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8572
8744
|
});
|
|
8573
8745
|
|
|
8574
8746
|
const generateReturnByAssetDecision = {
|
|
8575
8747
|
__proto__: null,
|
|
8576
8748
|
mutation: mutation$S,
|
|
8577
|
-
name: name$
|
|
8749
|
+
name: name$1_
|
|
8578
8750
|
};
|
|
8579
8751
|
|
|
8580
|
-
const name$
|
|
8752
|
+
const name$1Z = "generateReturnByAssetStatement";
|
|
8581
8753
|
const mutation$R = Selector("Mutation")({
|
|
8582
|
-
[name$
|
|
8754
|
+
[name$1Z]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8583
8755
|
});
|
|
8584
8756
|
|
|
8585
8757
|
const generateReturnByAssetStatement = {
|
|
8586
8758
|
__proto__: null,
|
|
8587
8759
|
mutation: mutation$R,
|
|
8588
|
-
name: name$
|
|
8760
|
+
name: name$1Z
|
|
8589
8761
|
};
|
|
8590
8762
|
|
|
8591
|
-
const name$
|
|
8763
|
+
const name$1Y = "moderateRequest";
|
|
8592
8764
|
const mutation$Q = Selector("Mutation")({
|
|
8593
|
-
[name$
|
|
8765
|
+
[name$1Y]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
|
|
8594
8766
|
});
|
|
8595
8767
|
|
|
8596
8768
|
const moderateRequest = {
|
|
8597
8769
|
__proto__: null,
|
|
8598
8770
|
mutation: mutation$Q,
|
|
8599
|
-
name: name$
|
|
8771
|
+
name: name$1Y
|
|
8600
8772
|
};
|
|
8601
8773
|
|
|
8602
|
-
const name$
|
|
8774
|
+
const name$1X = "prohibitRequest";
|
|
8603
8775
|
const mutation$P = Selector("Mutation")({
|
|
8604
|
-
[name$
|
|
8776
|
+
[name$1X]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
|
|
8605
8777
|
});
|
|
8606
8778
|
|
|
8607
8779
|
const prohibitRequest = {
|
|
8608
8780
|
__proto__: null,
|
|
8609
8781
|
mutation: mutation$P,
|
|
8610
|
-
name: name$
|
|
8782
|
+
name: name$1X
|
|
8611
8783
|
};
|
|
8612
8784
|
|
|
8613
|
-
const name$
|
|
8785
|
+
const name$1W = "publishRequest";
|
|
8614
8786
|
const mutation$O = Selector("Mutation")({
|
|
8615
|
-
[name$
|
|
8787
|
+
[name$1W]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
|
|
8616
8788
|
});
|
|
8617
8789
|
|
|
8618
8790
|
const publishRequest = {
|
|
8619
8791
|
__proto__: null,
|
|
8620
8792
|
mutation: mutation$O,
|
|
8621
|
-
name: name$
|
|
8793
|
+
name: name$1W
|
|
8622
8794
|
};
|
|
8623
8795
|
|
|
8624
|
-
const name$
|
|
8796
|
+
const name$1V = "receiveOnRequest";
|
|
8625
8797
|
const mutation$N = Selector("Mutation")({
|
|
8626
|
-
[name$
|
|
8798
|
+
[name$1V]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
8627
8799
|
});
|
|
8628
8800
|
|
|
8629
8801
|
const receiveOnRequest = {
|
|
8630
8802
|
__proto__: null,
|
|
8631
8803
|
mutation: mutation$N,
|
|
8632
|
-
name: name$
|
|
8804
|
+
name: name$1V
|
|
8633
8805
|
};
|
|
8634
8806
|
|
|
8635
|
-
const name$
|
|
8807
|
+
const name$1U = "supplyOnRequest";
|
|
8636
8808
|
const mutation$M = Selector("Mutation")({
|
|
8637
|
-
[name$
|
|
8809
|
+
[name$1U]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
|
|
8638
8810
|
});
|
|
8639
8811
|
|
|
8640
8812
|
const supplyOnRequest = {
|
|
8641
8813
|
__proto__: null,
|
|
8642
8814
|
mutation: mutation$M,
|
|
8643
|
-
name: name$
|
|
8815
|
+
name: name$1U
|
|
8644
8816
|
};
|
|
8645
8817
|
|
|
8646
|
-
const name$
|
|
8818
|
+
const name$1T = "unpublishRequest";
|
|
8647
8819
|
const mutation$L = Selector("Mutation")({
|
|
8648
|
-
[name$
|
|
8820
|
+
[name$1T]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
8649
8821
|
});
|
|
8650
8822
|
|
|
8651
8823
|
const unpublishRequest = {
|
|
8652
8824
|
__proto__: null,
|
|
8653
8825
|
mutation: mutation$L,
|
|
8654
|
-
name: name$
|
|
8826
|
+
name: name$1T
|
|
8655
8827
|
};
|
|
8656
8828
|
|
|
8657
|
-
const name$
|
|
8829
|
+
const name$1S = "updateRequest";
|
|
8658
8830
|
const mutation$K = Selector("Mutation")({
|
|
8659
|
-
[name$
|
|
8831
|
+
[name$1S]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
8660
8832
|
});
|
|
8661
8833
|
|
|
8662
8834
|
const updateRequest = {
|
|
8663
8835
|
__proto__: null,
|
|
8664
8836
|
mutation: mutation$K,
|
|
8665
|
-
name: name$
|
|
8837
|
+
name: name$1S
|
|
8666
8838
|
};
|
|
8667
8839
|
|
|
8668
|
-
const index$
|
|
8840
|
+
const index$D = {
|
|
8669
8841
|
__proto__: null,
|
|
8670
8842
|
AcceptChildOrder: acceptChildOrder,
|
|
8671
8843
|
CancelRequest: cancelRequest,
|
|
@@ -8692,9 +8864,9 @@ const index$C = {
|
|
|
8692
8864
|
UpdateRequest: updateRequest
|
|
8693
8865
|
};
|
|
8694
8866
|
|
|
8695
|
-
const name$
|
|
8867
|
+
const name$1R = "generateDocument";
|
|
8696
8868
|
const mutation$J = Selector("Mutation")({
|
|
8697
|
-
[name$
|
|
8869
|
+
[name$1R]: [
|
|
8698
8870
|
{
|
|
8699
8871
|
input: $("input", "GenerateAnyDocumentInput!")
|
|
8700
8872
|
},
|
|
@@ -8705,99 +8877,99 @@ const mutation$J = Selector("Mutation")({
|
|
|
8705
8877
|
const generateDocument = {
|
|
8706
8878
|
__proto__: null,
|
|
8707
8879
|
mutation: mutation$J,
|
|
8708
|
-
name: name$
|
|
8880
|
+
name: name$1R
|
|
8709
8881
|
};
|
|
8710
8882
|
|
|
8711
|
-
const index$
|
|
8883
|
+
const index$C = {
|
|
8712
8884
|
__proto__: null,
|
|
8713
8885
|
GenerateDocument: generateDocument
|
|
8714
8886
|
};
|
|
8715
8887
|
|
|
8716
|
-
const name$
|
|
8888
|
+
const name$1Q = "installExtension";
|
|
8717
8889
|
const mutation$I = Selector("Mutation")({
|
|
8718
|
-
[name$
|
|
8890
|
+
[name$1Q]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
8719
8891
|
});
|
|
8720
8892
|
|
|
8721
8893
|
const installExtension = {
|
|
8722
8894
|
__proto__: null,
|
|
8723
8895
|
mutation: mutation$I,
|
|
8724
|
-
name: name$
|
|
8896
|
+
name: name$1Q
|
|
8725
8897
|
};
|
|
8726
8898
|
|
|
8727
|
-
const name$
|
|
8899
|
+
const name$1P = "uninstallExtension";
|
|
8728
8900
|
const mutation$H = Selector("Mutation")({
|
|
8729
|
-
[name$
|
|
8901
|
+
[name$1P]: [{ data: $("data", "UninstallExtensionInput!") }, true]
|
|
8730
8902
|
});
|
|
8731
8903
|
|
|
8732
8904
|
const uninstallExtension = {
|
|
8733
8905
|
__proto__: null,
|
|
8734
8906
|
mutation: mutation$H,
|
|
8735
|
-
name: name$
|
|
8907
|
+
name: name$1P
|
|
8736
8908
|
};
|
|
8737
8909
|
|
|
8738
|
-
const name$
|
|
8910
|
+
const name$1O = "updateExtension";
|
|
8739
8911
|
const mutation$G = Selector("Mutation")({
|
|
8740
|
-
[name$
|
|
8912
|
+
[name$1O]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
8741
8913
|
});
|
|
8742
8914
|
|
|
8743
8915
|
const updateExtension = {
|
|
8744
8916
|
__proto__: null,
|
|
8745
8917
|
mutation: mutation$G,
|
|
8746
|
-
name: name$
|
|
8918
|
+
name: name$1O
|
|
8747
8919
|
};
|
|
8748
8920
|
|
|
8749
|
-
const index$
|
|
8921
|
+
const index$B = {
|
|
8750
8922
|
__proto__: null,
|
|
8751
8923
|
InstallExtension: installExtension,
|
|
8752
8924
|
UninstallExtension: uninstallExtension,
|
|
8753
8925
|
UpdateExtension: updateExtension
|
|
8754
8926
|
};
|
|
8755
8927
|
|
|
8756
|
-
const name$
|
|
8928
|
+
const name$1N = "generateProjectOfFreeDecision";
|
|
8757
8929
|
const mutation$F = Selector("Mutation")({
|
|
8758
|
-
[name$
|
|
8930
|
+
[name$1N]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8759
8931
|
});
|
|
8760
8932
|
|
|
8761
8933
|
const generateProjectOfFreeDecisionDocument = {
|
|
8762
8934
|
__proto__: null,
|
|
8763
8935
|
mutation: mutation$F,
|
|
8764
|
-
name: name$
|
|
8936
|
+
name: name$1N
|
|
8765
8937
|
};
|
|
8766
8938
|
|
|
8767
|
-
const name$
|
|
8939
|
+
const name$1M = "generateFreeDecision";
|
|
8768
8940
|
const mutation$E = Selector("Mutation")({
|
|
8769
|
-
[name$
|
|
8941
|
+
[name$1M]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
8770
8942
|
});
|
|
8771
8943
|
|
|
8772
8944
|
const generateFreeDecision = {
|
|
8773
8945
|
__proto__: null,
|
|
8774
8946
|
mutation: mutation$E,
|
|
8775
|
-
name: name$
|
|
8947
|
+
name: name$1M
|
|
8776
8948
|
};
|
|
8777
8949
|
|
|
8778
|
-
const name$
|
|
8950
|
+
const name$1L = "publishProjectOfFreeDecision";
|
|
8779
8951
|
const mutation$D = Selector("Mutation")({
|
|
8780
|
-
[name$
|
|
8952
|
+
[name$1L]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
|
|
8781
8953
|
});
|
|
8782
8954
|
|
|
8783
8955
|
const publishProjectOfFreeDecision = {
|
|
8784
8956
|
__proto__: null,
|
|
8785
8957
|
mutation: mutation$D,
|
|
8786
|
-
name: name$
|
|
8958
|
+
name: name$1L
|
|
8787
8959
|
};
|
|
8788
8960
|
|
|
8789
|
-
const name$
|
|
8961
|
+
const name$1K = "createProjectOfFreeDecision";
|
|
8790
8962
|
const mutation$C = Selector("Mutation")({
|
|
8791
|
-
[name$
|
|
8963
|
+
[name$1K]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
|
|
8792
8964
|
});
|
|
8793
8965
|
|
|
8794
8966
|
const createProjectOfFreeDecision = {
|
|
8795
8967
|
__proto__: null,
|
|
8796
8968
|
mutation: mutation$C,
|
|
8797
|
-
name: name$
|
|
8969
|
+
name: name$1K
|
|
8798
8970
|
};
|
|
8799
8971
|
|
|
8800
|
-
const index$
|
|
8972
|
+
const index$A = {
|
|
8801
8973
|
__proto__: null,
|
|
8802
8974
|
CreateProjectOfFreeDecision: createProjectOfFreeDecision,
|
|
8803
8975
|
GenerateFreeDecision: generateFreeDecision,
|
|
@@ -8805,60 +8977,60 @@ const index$z = {
|
|
|
8805
8977
|
PublishProjectOfFreeDecision: publishProjectOfFreeDecision
|
|
8806
8978
|
};
|
|
8807
8979
|
|
|
8808
|
-
const name$
|
|
8980
|
+
const name$1J = "setPaymentStatus";
|
|
8809
8981
|
const mutation$B = Selector("Mutation")({
|
|
8810
|
-
[name$
|
|
8982
|
+
[name$1J]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
|
|
8811
8983
|
});
|
|
8812
8984
|
|
|
8813
8985
|
const updatePaymentStatus = {
|
|
8814
8986
|
__proto__: null,
|
|
8815
8987
|
mutation: mutation$B,
|
|
8816
|
-
name: name$
|
|
8988
|
+
name: name$1J
|
|
8817
8989
|
};
|
|
8818
8990
|
|
|
8819
|
-
const name$
|
|
8991
|
+
const name$1I = "createInitialPayment";
|
|
8820
8992
|
const mutation$A = Selector("Mutation")({
|
|
8821
|
-
[name$
|
|
8993
|
+
[name$1I]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
8822
8994
|
});
|
|
8823
8995
|
|
|
8824
8996
|
const createInitialPayment$1 = {
|
|
8825
8997
|
__proto__: null,
|
|
8826
8998
|
mutation: mutation$A,
|
|
8827
|
-
name: name$
|
|
8999
|
+
name: name$1I
|
|
8828
9000
|
};
|
|
8829
9001
|
|
|
8830
|
-
const name$
|
|
9002
|
+
const name$1H = "createDepositPayment";
|
|
8831
9003
|
const mutation$z = Selector("Mutation")({
|
|
8832
|
-
[name$
|
|
9004
|
+
[name$1H]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
8833
9005
|
});
|
|
8834
9006
|
|
|
8835
9007
|
const createDepositPayment$1 = {
|
|
8836
9008
|
__proto__: null,
|
|
8837
9009
|
mutation: mutation$z,
|
|
8838
|
-
name: name$
|
|
9010
|
+
name: name$1H
|
|
8839
9011
|
};
|
|
8840
9012
|
|
|
8841
|
-
const index$
|
|
9013
|
+
const index$z = {
|
|
8842
9014
|
__proto__: null,
|
|
8843
9015
|
CreateDepositPayment: createDepositPayment$1,
|
|
8844
9016
|
CreateInitialPayment: createInitialPayment$1,
|
|
8845
9017
|
SetPaymentStatus: updatePaymentStatus
|
|
8846
9018
|
};
|
|
8847
9019
|
|
|
8848
|
-
const name$
|
|
9020
|
+
const name$1G = "createAnnualGeneralMeet";
|
|
8849
9021
|
const mutation$y = Selector("Mutation")({
|
|
8850
|
-
[name$
|
|
9022
|
+
[name$1G]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
8851
9023
|
});
|
|
8852
9024
|
|
|
8853
9025
|
const createAnnualGeneralMeet = {
|
|
8854
9026
|
__proto__: null,
|
|
8855
9027
|
mutation: mutation$y,
|
|
8856
|
-
name: name$
|
|
9028
|
+
name: name$1G
|
|
8857
9029
|
};
|
|
8858
9030
|
|
|
8859
|
-
const name$
|
|
9031
|
+
const name$1F = "generateAnnualGeneralMeetAgendaDocument";
|
|
8860
9032
|
const mutation$x = Selector("Mutation")({
|
|
8861
|
-
[name$
|
|
9033
|
+
[name$1F]: [
|
|
8862
9034
|
{
|
|
8863
9035
|
data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
|
|
8864
9036
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -8870,12 +9042,12 @@ const mutation$x = Selector("Mutation")({
|
|
|
8870
9042
|
const generateAnnualGeneralMeetAgendaDocument = {
|
|
8871
9043
|
__proto__: null,
|
|
8872
9044
|
mutation: mutation$x,
|
|
8873
|
-
name: name$
|
|
9045
|
+
name: name$1F
|
|
8874
9046
|
};
|
|
8875
9047
|
|
|
8876
|
-
const name$
|
|
9048
|
+
const name$1E = "generateAnnualGeneralMeetDecisionDocument";
|
|
8877
9049
|
const mutation$w = Selector("Mutation")({
|
|
8878
|
-
[name$
|
|
9050
|
+
[name$1E]: [
|
|
8879
9051
|
{
|
|
8880
9052
|
data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
|
|
8881
9053
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -8887,12 +9059,12 @@ const mutation$w = Selector("Mutation")({
|
|
|
8887
9059
|
const generateAnnualGeneralMeetDecisionDocument = {
|
|
8888
9060
|
__proto__: null,
|
|
8889
9061
|
mutation: mutation$w,
|
|
8890
|
-
name: name$
|
|
9062
|
+
name: name$1E
|
|
8891
9063
|
};
|
|
8892
9064
|
|
|
8893
|
-
const name$
|
|
9065
|
+
const name$1D = "generateAnnualGeneralMeetNotificationDocument";
|
|
8894
9066
|
const mutation$v = Selector("Mutation")({
|
|
8895
|
-
[name$
|
|
9067
|
+
[name$1D]: [
|
|
8896
9068
|
{
|
|
8897
9069
|
data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
|
|
8898
9070
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -8904,12 +9076,12 @@ const mutation$v = Selector("Mutation")({
|
|
|
8904
9076
|
const generateAnnualGeneralMeetNotificationDocument = {
|
|
8905
9077
|
__proto__: null,
|
|
8906
9078
|
mutation: mutation$v,
|
|
8907
|
-
name: name$
|
|
9079
|
+
name: name$1D
|
|
8908
9080
|
};
|
|
8909
9081
|
|
|
8910
|
-
const name$
|
|
9082
|
+
const name$1C = "generateBallotForAnnualGeneralMeetDocument";
|
|
8911
9083
|
const mutation$u = Selector("Mutation")({
|
|
8912
|
-
[name$
|
|
9084
|
+
[name$1C]: [
|
|
8913
9085
|
{
|
|
8914
9086
|
data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
|
|
8915
9087
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -8921,12 +9093,12 @@ const mutation$u = Selector("Mutation")({
|
|
|
8921
9093
|
const generateBallotForAnnualGeneralMeetDocument = {
|
|
8922
9094
|
__proto__: null,
|
|
8923
9095
|
mutation: mutation$u,
|
|
8924
|
-
name: name$
|
|
9096
|
+
name: name$1C
|
|
8925
9097
|
};
|
|
8926
9098
|
|
|
8927
|
-
const name$
|
|
9099
|
+
const name$1B = "generateSovietDecisionOnAnnualMeetDocument";
|
|
8928
9100
|
const mutation$t = Selector("Mutation")({
|
|
8929
|
-
[name$
|
|
9101
|
+
[name$1B]: [{
|
|
8930
9102
|
data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
|
|
8931
9103
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
8932
9104
|
}, documentSelector]
|
|
@@ -8935,65 +9107,65 @@ const mutation$t = Selector("Mutation")({
|
|
|
8935
9107
|
const generateSovietDecisionOnAnnualMeetDocument = {
|
|
8936
9108
|
__proto__: null,
|
|
8937
9109
|
mutation: mutation$t,
|
|
8938
|
-
name: name$
|
|
9110
|
+
name: name$1B
|
|
8939
9111
|
};
|
|
8940
9112
|
|
|
8941
|
-
const name$
|
|
9113
|
+
const name$1A = "notifyOnAnnualGeneralMeet";
|
|
8942
9114
|
const mutation$s = Selector("Mutation")({
|
|
8943
|
-
[name$
|
|
9115
|
+
[name$1A]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
8944
9116
|
});
|
|
8945
9117
|
|
|
8946
9118
|
const notifyOnAnnualGeneralMeet = {
|
|
8947
9119
|
__proto__: null,
|
|
8948
9120
|
mutation: mutation$s,
|
|
8949
|
-
name: name$
|
|
9121
|
+
name: name$1A
|
|
8950
9122
|
};
|
|
8951
9123
|
|
|
8952
|
-
const name$
|
|
9124
|
+
const name$1z = "restartAnnualGeneralMeet";
|
|
8953
9125
|
const mutation$r = Selector("Mutation")({
|
|
8954
|
-
[name$
|
|
9126
|
+
[name$1z]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
8955
9127
|
});
|
|
8956
9128
|
|
|
8957
9129
|
const restartAnnualGeneralMeet = {
|
|
8958
9130
|
__proto__: null,
|
|
8959
9131
|
mutation: mutation$r,
|
|
8960
|
-
name: name$
|
|
9132
|
+
name: name$1z
|
|
8961
9133
|
};
|
|
8962
9134
|
|
|
8963
|
-
const name$
|
|
9135
|
+
const name$1y = "signByPresiderOnAnnualGeneralMeet";
|
|
8964
9136
|
const mutation$q = Selector("Mutation")({
|
|
8965
|
-
[name$
|
|
9137
|
+
[name$1y]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
8966
9138
|
});
|
|
8967
9139
|
|
|
8968
9140
|
const signByPresiderOnAnnualGeneralMeet = {
|
|
8969
9141
|
__proto__: null,
|
|
8970
9142
|
mutation: mutation$q,
|
|
8971
|
-
name: name$
|
|
9143
|
+
name: name$1y
|
|
8972
9144
|
};
|
|
8973
9145
|
|
|
8974
|
-
const name$
|
|
9146
|
+
const name$1x = "signBySecretaryOnAnnualGeneralMeet";
|
|
8975
9147
|
const mutation$p = Selector("Mutation")({
|
|
8976
|
-
[name$
|
|
9148
|
+
[name$1x]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
8977
9149
|
});
|
|
8978
9150
|
|
|
8979
9151
|
const signBySecretaryOnAnnualGeneralMeet = {
|
|
8980
9152
|
__proto__: null,
|
|
8981
9153
|
mutation: mutation$p,
|
|
8982
|
-
name: name$
|
|
9154
|
+
name: name$1x
|
|
8983
9155
|
};
|
|
8984
9156
|
|
|
8985
|
-
const name$
|
|
9157
|
+
const name$1w = "voteOnAnnualGeneralMeet";
|
|
8986
9158
|
const mutation$o = Selector("Mutation")({
|
|
8987
|
-
[name$
|
|
9159
|
+
[name$1w]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
8988
9160
|
});
|
|
8989
9161
|
|
|
8990
9162
|
const voteOnAnnualGeneralMeet = {
|
|
8991
9163
|
__proto__: null,
|
|
8992
9164
|
mutation: mutation$o,
|
|
8993
|
-
name: name$
|
|
9165
|
+
name: name$1w
|
|
8994
9166
|
};
|
|
8995
9167
|
|
|
8996
|
-
const index$
|
|
9168
|
+
const index$y = {
|
|
8997
9169
|
__proto__: null,
|
|
8998
9170
|
CreateAnnualGeneralMeet: createAnnualGeneralMeet,
|
|
8999
9171
|
GenerateAnnualGeneralMeetAgendaDocument: generateAnnualGeneralMeetAgendaDocument,
|
|
@@ -9008,102 +9180,102 @@ const index$x = {
|
|
|
9008
9180
|
VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
|
|
9009
9181
|
};
|
|
9010
9182
|
|
|
9011
|
-
const name$
|
|
9183
|
+
const name$1v = "createWebPushSubscription";
|
|
9012
9184
|
const mutation$n = Selector("Mutation")({
|
|
9013
|
-
[name$
|
|
9185
|
+
[name$1v]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
|
|
9014
9186
|
});
|
|
9015
9187
|
|
|
9016
9188
|
const createWebPushSubscription = {
|
|
9017
9189
|
__proto__: null,
|
|
9018
9190
|
mutation: mutation$n,
|
|
9019
|
-
name: name$
|
|
9191
|
+
name: name$1v
|
|
9020
9192
|
};
|
|
9021
9193
|
|
|
9022
|
-
const name$
|
|
9194
|
+
const name$1u = "deactivateWebPushSubscriptionById";
|
|
9023
9195
|
const mutation$m = Selector("Mutation")({
|
|
9024
|
-
[name$
|
|
9196
|
+
[name$1u]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
|
|
9025
9197
|
});
|
|
9026
9198
|
|
|
9027
9199
|
const deactivateWebPushSubscriptionById = {
|
|
9028
9200
|
__proto__: null,
|
|
9029
9201
|
mutation: mutation$m,
|
|
9030
|
-
name: name$
|
|
9202
|
+
name: name$1u
|
|
9031
9203
|
};
|
|
9032
9204
|
|
|
9033
|
-
const name$
|
|
9205
|
+
const name$1t = "triggerNotificationWorkflow";
|
|
9034
9206
|
const mutation$l = Selector("Mutation")({
|
|
9035
|
-
[name$
|
|
9207
|
+
[name$1t]: [{ data: $("data", "TriggerNotificationWorkflowInput!") }, true]
|
|
9036
9208
|
});
|
|
9037
9209
|
|
|
9038
9210
|
const triggerNotificationWorkflow = {
|
|
9039
9211
|
__proto__: null,
|
|
9040
9212
|
mutation: mutation$l,
|
|
9041
|
-
name: name$
|
|
9213
|
+
name: name$1t
|
|
9042
9214
|
};
|
|
9043
9215
|
|
|
9044
|
-
const index$
|
|
9216
|
+
const index$x = {
|
|
9045
9217
|
__proto__: null,
|
|
9046
9218
|
CreateWebPushSubscription: createWebPushSubscription,
|
|
9047
9219
|
DeactivateWebPushSubscriptionById: deactivateWebPushSubscriptionById,
|
|
9048
9220
|
TriggerNotificationWorkflow: triggerNotificationWorkflow
|
|
9049
9221
|
};
|
|
9050
9222
|
|
|
9051
|
-
const name$
|
|
9223
|
+
const name$1s = "addParticipant";
|
|
9052
9224
|
const mutation$k = Selector("Mutation")({
|
|
9053
|
-
[name$
|
|
9225
|
+
[name$1s]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
|
|
9054
9226
|
});
|
|
9055
9227
|
|
|
9056
9228
|
const addParticipant = {
|
|
9057
9229
|
__proto__: null,
|
|
9058
9230
|
mutation: mutation$k,
|
|
9059
|
-
name: name$
|
|
9231
|
+
name: name$1s
|
|
9060
9232
|
};
|
|
9061
9233
|
|
|
9062
|
-
const name$
|
|
9234
|
+
const name$1r = "generateParticipantApplication";
|
|
9063
9235
|
const mutation$j = Selector("Mutation")({
|
|
9064
|
-
[name$
|
|
9236
|
+
[name$1r]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
9065
9237
|
});
|
|
9066
9238
|
|
|
9067
9239
|
const generateParticipantApplication = {
|
|
9068
9240
|
__proto__: null,
|
|
9069
9241
|
mutation: mutation$j,
|
|
9070
|
-
name: name$
|
|
9242
|
+
name: name$1r
|
|
9071
9243
|
};
|
|
9072
9244
|
|
|
9073
|
-
const name$
|
|
9245
|
+
const name$1q = "generateParticipantApplicationDecision";
|
|
9074
9246
|
const mutation$i = Selector("Mutation")({
|
|
9075
|
-
[name$
|
|
9247
|
+
[name$1q]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
9076
9248
|
});
|
|
9077
9249
|
|
|
9078
9250
|
const generateParticipantApplicationDecision = {
|
|
9079
9251
|
__proto__: null,
|
|
9080
9252
|
mutation: mutation$i,
|
|
9081
|
-
name: name$
|
|
9253
|
+
name: name$1q
|
|
9082
9254
|
};
|
|
9083
9255
|
|
|
9084
|
-
const name$
|
|
9256
|
+
const name$1p = "registerParticipant";
|
|
9085
9257
|
const mutation$h = Selector("Mutation")({
|
|
9086
|
-
[name$
|
|
9258
|
+
[name$1p]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
|
|
9087
9259
|
});
|
|
9088
9260
|
|
|
9089
9261
|
const registerParticipant = {
|
|
9090
9262
|
__proto__: null,
|
|
9091
9263
|
mutation: mutation$h,
|
|
9092
|
-
name: name$
|
|
9264
|
+
name: name$1p
|
|
9093
9265
|
};
|
|
9094
9266
|
|
|
9095
|
-
const name$
|
|
9267
|
+
const name$1o = "createInitialPayment";
|
|
9096
9268
|
const mutation$g = Selector("Mutation")({
|
|
9097
|
-
[name$
|
|
9269
|
+
[name$1o]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
9098
9270
|
});
|
|
9099
9271
|
|
|
9100
9272
|
const createInitialPayment = {
|
|
9101
9273
|
__proto__: null,
|
|
9102
9274
|
mutation: mutation$g,
|
|
9103
|
-
name: name$
|
|
9275
|
+
name: name$1o
|
|
9104
9276
|
};
|
|
9105
9277
|
|
|
9106
|
-
const index$
|
|
9278
|
+
const index$w = {
|
|
9107
9279
|
__proto__: null,
|
|
9108
9280
|
AddParticipant: addParticipant,
|
|
9109
9281
|
CreateInitialPayment: createInitialPayment,
|
|
@@ -9112,126 +9284,126 @@ const index$v = {
|
|
|
9112
9284
|
RegisterParticipant: registerParticipant
|
|
9113
9285
|
};
|
|
9114
9286
|
|
|
9115
|
-
const name$
|
|
9287
|
+
const name$1n = "addPaymentMethod";
|
|
9116
9288
|
const mutation$f = Selector("Mutation")({
|
|
9117
|
-
[name$
|
|
9289
|
+
[name$1n]: [{ data: $("data", "AddPaymentMethodInput!") }, paymentMethodSelector]
|
|
9118
9290
|
});
|
|
9119
9291
|
|
|
9120
9292
|
const addPaymentMethod = {
|
|
9121
9293
|
__proto__: null,
|
|
9122
9294
|
mutation: mutation$f,
|
|
9123
|
-
name: name$
|
|
9295
|
+
name: name$1n
|
|
9124
9296
|
};
|
|
9125
9297
|
|
|
9126
|
-
const name$
|
|
9298
|
+
const name$1m = "deletePaymentMethod";
|
|
9127
9299
|
const mutation$e = Selector("Mutation")({
|
|
9128
|
-
[name$
|
|
9300
|
+
[name$1m]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
|
|
9129
9301
|
});
|
|
9130
9302
|
|
|
9131
9303
|
const deletePaymentMethod = {
|
|
9132
9304
|
__proto__: null,
|
|
9133
9305
|
mutation: mutation$e,
|
|
9134
|
-
name: name$
|
|
9306
|
+
name: name$1m
|
|
9135
9307
|
};
|
|
9136
9308
|
|
|
9137
|
-
const name$
|
|
9309
|
+
const name$1l = "updateBankAccount";
|
|
9138
9310
|
const mutation$d = Selector("Mutation")({
|
|
9139
|
-
[name$
|
|
9311
|
+
[name$1l]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
|
|
9140
9312
|
});
|
|
9141
9313
|
|
|
9142
9314
|
const updateBankAccount = {
|
|
9143
9315
|
__proto__: null,
|
|
9144
9316
|
mutation: mutation$d,
|
|
9145
|
-
name: name$
|
|
9317
|
+
name: name$1l
|
|
9146
9318
|
};
|
|
9147
9319
|
|
|
9148
|
-
const index$
|
|
9320
|
+
const index$v = {
|
|
9149
9321
|
__proto__: null,
|
|
9150
9322
|
AddPaymentMethod: addPaymentMethod,
|
|
9151
9323
|
DeletePaymentMethod: deletePaymentMethod,
|
|
9152
9324
|
UpdateBankAccount: updateBankAccount
|
|
9153
9325
|
};
|
|
9154
9326
|
|
|
9155
|
-
const name$
|
|
9327
|
+
const name$1k = "generateConvertToAxonStatement";
|
|
9156
9328
|
const mutation$c = Selector("Mutation")({
|
|
9157
|
-
[name$
|
|
9329
|
+
[name$1k]: [{ data: $("data", "ConvertToAxonStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
9158
9330
|
});
|
|
9159
9331
|
|
|
9160
9332
|
const generateConvertToAxonStatement = {
|
|
9161
9333
|
__proto__: null,
|
|
9162
9334
|
mutation: mutation$c,
|
|
9163
|
-
name: name$
|
|
9335
|
+
name: name$1k
|
|
9164
9336
|
};
|
|
9165
9337
|
|
|
9166
|
-
const name$
|
|
9338
|
+
const name$1j = "processConvertToAxonStatement";
|
|
9167
9339
|
const mutation$b = Selector("Mutation")({
|
|
9168
|
-
[name$
|
|
9340
|
+
[name$1j]: [{ data: $("data", "ProcessConvertToAxonStatementInput!") }, true]
|
|
9169
9341
|
});
|
|
9170
9342
|
|
|
9171
9343
|
const processConvertToAxonStatement = {
|
|
9172
9344
|
__proto__: null,
|
|
9173
9345
|
mutation: mutation$b,
|
|
9174
|
-
name: name$
|
|
9346
|
+
name: name$1j
|
|
9175
9347
|
};
|
|
9176
9348
|
|
|
9177
|
-
const index$
|
|
9349
|
+
const index$u = {
|
|
9178
9350
|
__proto__: null,
|
|
9179
9351
|
GenerateConvertToAxonStatement: generateConvertToAxonStatement,
|
|
9180
9352
|
ProcessConvertToAxonStatement: processConvertToAxonStatement
|
|
9181
9353
|
};
|
|
9182
9354
|
|
|
9183
|
-
const name$
|
|
9355
|
+
const name$1i = "generateRegistrationDocuments";
|
|
9184
9356
|
const mutation$a = Selector("Mutation")({
|
|
9185
|
-
[name$
|
|
9357
|
+
[name$1i]: [{ data: $("data", "GenerateRegistrationDocumentsInput!") }, generateRegistrationDocumentsOutputSelector]
|
|
9186
9358
|
});
|
|
9187
9359
|
|
|
9188
9360
|
const generateRegistrationDocuments = {
|
|
9189
9361
|
__proto__: null,
|
|
9190
9362
|
mutation: mutation$a,
|
|
9191
|
-
name: name$
|
|
9363
|
+
name: name$1i
|
|
9192
9364
|
};
|
|
9193
9365
|
|
|
9194
|
-
const index$
|
|
9366
|
+
const index$t = {
|
|
9195
9367
|
__proto__: null,
|
|
9196
9368
|
GenerateRegistrationDocuments: generateRegistrationDocuments
|
|
9197
9369
|
};
|
|
9198
9370
|
|
|
9199
|
-
const name$
|
|
9371
|
+
const name$1h = "initSystem";
|
|
9200
9372
|
const mutation$9 = Selector("Mutation")({
|
|
9201
|
-
[name$
|
|
9373
|
+
[name$1h]: [{ data: $("data", "Init!") }, systemInfoSelector]
|
|
9202
9374
|
});
|
|
9203
9375
|
|
|
9204
9376
|
const initSystem = {
|
|
9205
9377
|
__proto__: null,
|
|
9206
9378
|
mutation: mutation$9,
|
|
9207
|
-
name: name$
|
|
9379
|
+
name: name$1h
|
|
9208
9380
|
};
|
|
9209
9381
|
|
|
9210
|
-
const name$
|
|
9382
|
+
const name$1g = "installSystem";
|
|
9211
9383
|
const mutation$8 = Selector("Mutation")({
|
|
9212
|
-
[name$
|
|
9384
|
+
[name$1g]: [{ data: $("data", "Install!") }, systemInfoSelector]
|
|
9213
9385
|
});
|
|
9214
9386
|
|
|
9215
9387
|
const installSystem = {
|
|
9216
9388
|
__proto__: null,
|
|
9217
9389
|
mutation: mutation$8,
|
|
9218
|
-
name: name$
|
|
9390
|
+
name: name$1g
|
|
9219
9391
|
};
|
|
9220
9392
|
|
|
9221
|
-
const name$
|
|
9393
|
+
const name$1f = "setWif";
|
|
9222
9394
|
const mutation$7 = Selector("Mutation")({
|
|
9223
|
-
[name$
|
|
9395
|
+
[name$1f]: [{ data: $("data", "SetWifInput!") }, true]
|
|
9224
9396
|
});
|
|
9225
9397
|
|
|
9226
9398
|
const saveWif = {
|
|
9227
9399
|
__proto__: null,
|
|
9228
9400
|
mutation: mutation$7,
|
|
9229
|
-
name: name$
|
|
9401
|
+
name: name$1f
|
|
9230
9402
|
};
|
|
9231
9403
|
|
|
9232
|
-
const name$
|
|
9404
|
+
const name$1e = "startInstall";
|
|
9233
9405
|
const mutation$6 = Selector("Mutation")({
|
|
9234
|
-
[name$
|
|
9406
|
+
[name$1e]: [{ data: $("data", "StartInstallInput!") }, {
|
|
9235
9407
|
install_code: true,
|
|
9236
9408
|
coopname: true
|
|
9237
9409
|
}]
|
|
@@ -9240,32 +9412,32 @@ const mutation$6 = Selector("Mutation")({
|
|
|
9240
9412
|
const startInstall = {
|
|
9241
9413
|
__proto__: null,
|
|
9242
9414
|
mutation: mutation$6,
|
|
9243
|
-
name: name$
|
|
9415
|
+
name: name$1e
|
|
9244
9416
|
};
|
|
9245
9417
|
|
|
9246
|
-
const name$
|
|
9418
|
+
const name$1d = "updateSettings";
|
|
9247
9419
|
const mutation$5 = Selector("Mutation")({
|
|
9248
|
-
[name$
|
|
9420
|
+
[name$1d]: [{ data: $("data", "UpdateSettingsInput!") }, rawSettingsSelector]
|
|
9249
9421
|
});
|
|
9250
9422
|
|
|
9251
9423
|
const updateSettings = {
|
|
9252
9424
|
__proto__: null,
|
|
9253
9425
|
mutation: mutation$5,
|
|
9254
|
-
name: name$
|
|
9426
|
+
name: name$1d
|
|
9255
9427
|
};
|
|
9256
9428
|
|
|
9257
|
-
const name$
|
|
9429
|
+
const name$1c = "updateSystem";
|
|
9258
9430
|
const mutation$4 = Selector("Mutation")({
|
|
9259
|
-
[name$
|
|
9431
|
+
[name$1c]: [{ data: $("data", "Update!") }, systemInfoSelector]
|
|
9260
9432
|
});
|
|
9261
9433
|
|
|
9262
9434
|
const updateSystem = {
|
|
9263
9435
|
__proto__: null,
|
|
9264
9436
|
mutation: mutation$4,
|
|
9265
|
-
name: name$
|
|
9437
|
+
name: name$1c
|
|
9266
9438
|
};
|
|
9267
9439
|
|
|
9268
|
-
const index$
|
|
9440
|
+
const index$s = {
|
|
9269
9441
|
__proto__: null,
|
|
9270
9442
|
InitSystem: initSystem,
|
|
9271
9443
|
InstallSystem: installSystem,
|
|
@@ -9275,31 +9447,31 @@ const index$r = {
|
|
|
9275
9447
|
UpdateSystem: updateSystem
|
|
9276
9448
|
};
|
|
9277
9449
|
|
|
9278
|
-
const name$
|
|
9450
|
+
const name$1b = "createWithdraw";
|
|
9279
9451
|
const mutation$3 = Selector("Mutation")({
|
|
9280
|
-
[name$
|
|
9452
|
+
[name$1b]: [{ data: $("data", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
|
|
9281
9453
|
});
|
|
9282
9454
|
|
|
9283
9455
|
const createWithdraw = {
|
|
9284
9456
|
__proto__: null,
|
|
9285
9457
|
mutation: mutation$3,
|
|
9286
|
-
name: name$
|
|
9458
|
+
name: name$1b
|
|
9287
9459
|
};
|
|
9288
9460
|
|
|
9289
|
-
const name$
|
|
9461
|
+
const name$1a = "createDepositPayment";
|
|
9290
9462
|
const mutation$2 = Selector("Mutation")({
|
|
9291
|
-
[name$
|
|
9463
|
+
[name$1a]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
9292
9464
|
});
|
|
9293
9465
|
|
|
9294
9466
|
const createDepositPayment = {
|
|
9295
9467
|
__proto__: null,
|
|
9296
9468
|
mutation: mutation$2,
|
|
9297
|
-
name: name$
|
|
9469
|
+
name: name$1a
|
|
9298
9470
|
};
|
|
9299
9471
|
|
|
9300
|
-
const name$
|
|
9472
|
+
const name$19 = "generateReturnByMoneyStatementDocument";
|
|
9301
9473
|
const mutation$1 = Selector("Mutation")({
|
|
9302
|
-
[name$
|
|
9474
|
+
[name$19]: [
|
|
9303
9475
|
{
|
|
9304
9476
|
data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
|
|
9305
9477
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -9311,12 +9483,12 @@ const mutation$1 = Selector("Mutation")({
|
|
|
9311
9483
|
const generateReturnByMoneyStatementDocument = {
|
|
9312
9484
|
__proto__: null,
|
|
9313
9485
|
mutation: mutation$1,
|
|
9314
|
-
name: name$
|
|
9486
|
+
name: name$19
|
|
9315
9487
|
};
|
|
9316
9488
|
|
|
9317
|
-
const name$
|
|
9489
|
+
const name$18 = "generateReturnByMoneyDecisionDocument";
|
|
9318
9490
|
const mutation = Selector("Mutation")({
|
|
9319
|
-
[name$
|
|
9491
|
+
[name$18]: [
|
|
9320
9492
|
{
|
|
9321
9493
|
data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
|
|
9322
9494
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -9328,10 +9500,10 @@ const mutation = Selector("Mutation")({
|
|
|
9328
9500
|
const generateReturnByMoneyDecisionDocument = {
|
|
9329
9501
|
__proto__: null,
|
|
9330
9502
|
mutation: mutation,
|
|
9331
|
-
name: name$
|
|
9503
|
+
name: name$18
|
|
9332
9504
|
};
|
|
9333
9505
|
|
|
9334
|
-
const index$
|
|
9506
|
+
const index$r = {
|
|
9335
9507
|
__proto__: null,
|
|
9336
9508
|
CreateDepositPayment: createDepositPayment,
|
|
9337
9509
|
CreateWithdraw: createWithdraw,
|
|
@@ -9341,48 +9513,48 @@ const index$q = {
|
|
|
9341
9513
|
|
|
9342
9514
|
const Mutations = {
|
|
9343
9515
|
__proto__: null,
|
|
9344
|
-
Accounts: index$
|
|
9345
|
-
Agreements: index$
|
|
9346
|
-
Auth: index$
|
|
9347
|
-
Branches: index$
|
|
9348
|
-
Capital: index$
|
|
9349
|
-
Chairman: index$
|
|
9350
|
-
ChatCoop: index$
|
|
9351
|
-
Cooplace: index$
|
|
9352
|
-
Documents: index$
|
|
9353
|
-
Extensions: index$
|
|
9354
|
-
FreeDecisions: index$
|
|
9355
|
-
Gateway: index$
|
|
9356
|
-
Meet: index$
|
|
9357
|
-
Notification: index$
|
|
9358
|
-
Participants: index$
|
|
9359
|
-
PaymentMethods: index$
|
|
9360
|
-
Provider: index$
|
|
9361
|
-
Registration: index$
|
|
9362
|
-
System: index$
|
|
9363
|
-
Wallet: index$
|
|
9364
|
-
};
|
|
9365
|
-
|
|
9366
|
-
const name$
|
|
9367
|
-
const query$
|
|
9368
|
-
[name$
|
|
9516
|
+
Accounts: index$K,
|
|
9517
|
+
Agreements: index$J,
|
|
9518
|
+
Auth: index$I,
|
|
9519
|
+
Branches: index$H,
|
|
9520
|
+
Capital: index$G,
|
|
9521
|
+
Chairman: index$F,
|
|
9522
|
+
ChatCoop: index$E,
|
|
9523
|
+
Cooplace: index$D,
|
|
9524
|
+
Documents: index$C,
|
|
9525
|
+
Extensions: index$B,
|
|
9526
|
+
FreeDecisions: index$A,
|
|
9527
|
+
Gateway: index$z,
|
|
9528
|
+
Meet: index$y,
|
|
9529
|
+
Notification: index$x,
|
|
9530
|
+
Participants: index$w,
|
|
9531
|
+
PaymentMethods: index$v,
|
|
9532
|
+
Provider: index$u,
|
|
9533
|
+
Registration: index$t,
|
|
9534
|
+
System: index$s,
|
|
9535
|
+
Wallet: index$r
|
|
9536
|
+
};
|
|
9537
|
+
|
|
9538
|
+
const name$17 = "getAccount";
|
|
9539
|
+
const query$17 = Selector("Query")({
|
|
9540
|
+
[name$17]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
|
|
9369
9541
|
});
|
|
9370
9542
|
|
|
9371
9543
|
const getAccount = {
|
|
9372
9544
|
__proto__: null,
|
|
9373
|
-
name: name$
|
|
9374
|
-
query: query$
|
|
9545
|
+
name: name$17,
|
|
9546
|
+
query: query$17
|
|
9375
9547
|
};
|
|
9376
9548
|
|
|
9377
|
-
const name$
|
|
9378
|
-
const query$
|
|
9379
|
-
[name$
|
|
9549
|
+
const name$16 = "getAccounts";
|
|
9550
|
+
const query$16 = Selector("Query")({
|
|
9551
|
+
[name$16]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
9380
9552
|
});
|
|
9381
9553
|
|
|
9382
9554
|
const getAccounts = {
|
|
9383
9555
|
__proto__: null,
|
|
9384
|
-
name: name$
|
|
9385
|
-
query: query$
|
|
9556
|
+
name: name$16,
|
|
9557
|
+
query: query$16
|
|
9386
9558
|
};
|
|
9387
9559
|
|
|
9388
9560
|
const rawSearchPrivateAccountsResultSelector = {
|
|
@@ -9399,18 +9571,18 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
|
|
|
9399
9571
|
rawSearchPrivateAccountsResultSelector
|
|
9400
9572
|
);
|
|
9401
9573
|
|
|
9402
|
-
const name$
|
|
9403
|
-
const query$
|
|
9404
|
-
[name$
|
|
9574
|
+
const name$15 = "searchPrivateAccounts";
|
|
9575
|
+
const query$15 = Selector("Query")({
|
|
9576
|
+
[name$15]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
|
|
9405
9577
|
});
|
|
9406
9578
|
|
|
9407
9579
|
const searchPrivateAccounts = {
|
|
9408
9580
|
__proto__: null,
|
|
9409
|
-
name: name$
|
|
9410
|
-
query: query$
|
|
9581
|
+
name: name$15,
|
|
9582
|
+
query: query$15
|
|
9411
9583
|
};
|
|
9412
9584
|
|
|
9413
|
-
const index$
|
|
9585
|
+
const index$q = {
|
|
9414
9586
|
__proto__: null,
|
|
9415
9587
|
GetAccount: getAccount,
|
|
9416
9588
|
GetAccounts: getAccounts,
|
|
@@ -9451,25 +9623,25 @@ const rawAgendaSelector = {
|
|
|
9451
9623
|
};
|
|
9452
9624
|
const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
|
|
9453
9625
|
|
|
9454
|
-
const name$
|
|
9455
|
-
const query$
|
|
9456
|
-
[name$
|
|
9626
|
+
const name$14 = "getAgenda";
|
|
9627
|
+
const query$14 = Selector("Query")({
|
|
9628
|
+
[name$14]: agendaSelector
|
|
9457
9629
|
});
|
|
9458
9630
|
|
|
9459
9631
|
const getAgenda = {
|
|
9460
9632
|
__proto__: null,
|
|
9461
|
-
name: name$
|
|
9462
|
-
query: query$
|
|
9633
|
+
name: name$14,
|
|
9634
|
+
query: query$14
|
|
9463
9635
|
};
|
|
9464
9636
|
|
|
9465
|
-
const index$
|
|
9637
|
+
const index$p = {
|
|
9466
9638
|
__proto__: null,
|
|
9467
9639
|
GetAgenda: getAgenda
|
|
9468
9640
|
};
|
|
9469
9641
|
|
|
9470
|
-
const name$
|
|
9471
|
-
const query$
|
|
9472
|
-
[name$
|
|
9642
|
+
const name$13 = "agreements";
|
|
9643
|
+
const query$13 = Selector("Query")({
|
|
9644
|
+
[name$13]: [
|
|
9473
9645
|
{
|
|
9474
9646
|
filter: $("filter", "AgreementFilter"),
|
|
9475
9647
|
options: $("options", "PaginationInput")
|
|
@@ -9480,19 +9652,19 @@ const query$12 = Selector("Query")({
|
|
|
9480
9652
|
|
|
9481
9653
|
const agreements = {
|
|
9482
9654
|
__proto__: null,
|
|
9483
|
-
name: name$
|
|
9484
|
-
query: query$
|
|
9655
|
+
name: name$13,
|
|
9656
|
+
query: query$13
|
|
9485
9657
|
};
|
|
9486
9658
|
|
|
9487
|
-
const index$
|
|
9659
|
+
const index$o = {
|
|
9488
9660
|
__proto__: null,
|
|
9489
9661
|
Agreements: agreements
|
|
9490
9662
|
};
|
|
9491
9663
|
|
|
9492
9664
|
const paginatedActionsSelector = { ...paginationSelector, items: rawBlockchainActionSelector };
|
|
9493
|
-
const name$
|
|
9494
|
-
const query$
|
|
9495
|
-
[name$
|
|
9665
|
+
const name$12 = "getActions";
|
|
9666
|
+
const query$12 = Selector("Query")({
|
|
9667
|
+
[name$12]: [
|
|
9496
9668
|
{
|
|
9497
9669
|
filters: $("filters", "ActionFiltersInput"),
|
|
9498
9670
|
pagination: $("pagination", "PaginationInput")
|
|
@@ -9503,14 +9675,14 @@ const query$11 = Selector("Query")({
|
|
|
9503
9675
|
|
|
9504
9676
|
const getActions = {
|
|
9505
9677
|
__proto__: null,
|
|
9506
|
-
name: name$
|
|
9507
|
-
query: query$
|
|
9678
|
+
name: name$12,
|
|
9679
|
+
query: query$12
|
|
9508
9680
|
};
|
|
9509
9681
|
|
|
9510
|
-
const name$
|
|
9682
|
+
const name$11 = "getCurrentTableStates";
|
|
9511
9683
|
const paginatedCurrentTableStatesSelector = { ...paginationSelector, items: rawCurrentTableStateSelector };
|
|
9512
|
-
const query$
|
|
9513
|
-
[name$
|
|
9684
|
+
const query$11 = Selector("Query")({
|
|
9685
|
+
[name$11]: [
|
|
9514
9686
|
{
|
|
9515
9687
|
filters: $("filters", "CurrentTableStatesFiltersInput"),
|
|
9516
9688
|
pagination: $("pagination", "PaginationInput")
|
|
@@ -9521,14 +9693,14 @@ const query$10 = Selector("Query")({
|
|
|
9521
9693
|
|
|
9522
9694
|
const getCurrentTableStates = {
|
|
9523
9695
|
__proto__: null,
|
|
9524
|
-
name: name$
|
|
9525
|
-
query: query$
|
|
9696
|
+
name: name$11,
|
|
9697
|
+
query: query$11
|
|
9526
9698
|
};
|
|
9527
9699
|
|
|
9528
9700
|
const paginatedDeltasSelector = { ...paginationSelector, items: rawDeltaSelector };
|
|
9529
|
-
const name
|
|
9530
|
-
const query
|
|
9531
|
-
[name
|
|
9701
|
+
const name$10 = "getDeltas";
|
|
9702
|
+
const query$10 = Selector("Query")({
|
|
9703
|
+
[name$10]: [
|
|
9532
9704
|
{
|
|
9533
9705
|
filters: $("filters", "DeltaFiltersInput"),
|
|
9534
9706
|
pagination: $("pagination", "PaginationInput")
|
|
@@ -9539,48 +9711,48 @@ const query$$ = Selector("Query")({
|
|
|
9539
9711
|
|
|
9540
9712
|
const getDeltas = {
|
|
9541
9713
|
__proto__: null,
|
|
9542
|
-
name: name
|
|
9543
|
-
query: query
|
|
9714
|
+
name: name$10,
|
|
9715
|
+
query: query$10
|
|
9544
9716
|
};
|
|
9545
9717
|
|
|
9546
|
-
const index$
|
|
9718
|
+
const index$n = {
|
|
9547
9719
|
__proto__: null,
|
|
9548
9720
|
GetActions: getActions,
|
|
9549
9721
|
GetCurrentTableStates: getCurrentTableStates,
|
|
9550
9722
|
GetDeltas: getDeltas
|
|
9551
9723
|
};
|
|
9552
9724
|
|
|
9553
|
-
const name
|
|
9554
|
-
const query
|
|
9555
|
-
[name
|
|
9725
|
+
const name$$ = "getBranches";
|
|
9726
|
+
const query$$ = Selector("Query")({
|
|
9727
|
+
[name$$]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
|
|
9556
9728
|
});
|
|
9557
9729
|
|
|
9558
9730
|
const getBranches = {
|
|
9559
9731
|
__proto__: null,
|
|
9560
|
-
name: name
|
|
9561
|
-
query: query
|
|
9732
|
+
name: name$$,
|
|
9733
|
+
query: query$$
|
|
9562
9734
|
};
|
|
9563
9735
|
|
|
9564
|
-
const name$
|
|
9565
|
-
const query$
|
|
9566
|
-
[name$
|
|
9736
|
+
const name$_ = "getBranches";
|
|
9737
|
+
const query$_ = Selector("Query")({
|
|
9738
|
+
[name$_]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
|
|
9567
9739
|
});
|
|
9568
9740
|
|
|
9569
9741
|
const getPublicBranches = {
|
|
9570
9742
|
__proto__: null,
|
|
9571
|
-
name: name$
|
|
9572
|
-
query: query$
|
|
9743
|
+
name: name$_,
|
|
9744
|
+
query: query$_
|
|
9573
9745
|
};
|
|
9574
9746
|
|
|
9575
|
-
const index$
|
|
9747
|
+
const index$m = {
|
|
9576
9748
|
__proto__: null,
|
|
9577
9749
|
GetBranches: getBranches,
|
|
9578
9750
|
GetPublicBranches: getPublicBranches
|
|
9579
9751
|
};
|
|
9580
9752
|
|
|
9581
|
-
const name$
|
|
9582
|
-
const query$
|
|
9583
|
-
[name$
|
|
9753
|
+
const name$Z = "capitalCandidates";
|
|
9754
|
+
const query$Z = Selector("Query")({
|
|
9755
|
+
[name$Z]: [
|
|
9584
9756
|
{
|
|
9585
9757
|
filter: $("filter", "CandidateFilterInput"),
|
|
9586
9758
|
options: $("options", "PaginationInput")
|
|
@@ -9590,381 +9762,381 @@ const query$Y = Selector("Query")({
|
|
|
9590
9762
|
});
|
|
9591
9763
|
|
|
9592
9764
|
const getCapitalCandidates = {
|
|
9765
|
+
__proto__: null,
|
|
9766
|
+
name: name$Z,
|
|
9767
|
+
query: query$Z
|
|
9768
|
+
};
|
|
9769
|
+
|
|
9770
|
+
const name$Y = "capitalCommit";
|
|
9771
|
+
const query$Y = Selector("Query")({
|
|
9772
|
+
[name$Y]: [{ data: $("data", "GetCapitalCommitByHashInput!") }, commitSelector]
|
|
9773
|
+
});
|
|
9774
|
+
|
|
9775
|
+
const getCommit = {
|
|
9593
9776
|
__proto__: null,
|
|
9594
9777
|
name: name$Y,
|
|
9595
9778
|
query: query$Y
|
|
9596
9779
|
};
|
|
9597
9780
|
|
|
9598
|
-
const name$X = "
|
|
9781
|
+
const name$X = "capitalCommits";
|
|
9599
9782
|
const query$X = Selector("Query")({
|
|
9600
|
-
[name$X]: [{
|
|
9783
|
+
[name$X]: [{ filter: $("filter", "CapitalCommitFilter"), options: $("options", "PaginationInput") }, commitsPaginationSelector]
|
|
9601
9784
|
});
|
|
9602
9785
|
|
|
9603
|
-
const
|
|
9786
|
+
const getCommits = {
|
|
9604
9787
|
__proto__: null,
|
|
9605
9788
|
name: name$X,
|
|
9606
9789
|
query: query$X
|
|
9607
9790
|
};
|
|
9608
9791
|
|
|
9609
|
-
const name$W = "
|
|
9792
|
+
const name$W = "capitalContributor";
|
|
9610
9793
|
const query$W = Selector("Query")({
|
|
9611
|
-
[name$W]: [{
|
|
9794
|
+
[name$W]: [{ data: $("data", "GetContributorInput!") }, contributorSelector]
|
|
9612
9795
|
});
|
|
9613
9796
|
|
|
9614
|
-
const
|
|
9797
|
+
const getContributor = {
|
|
9615
9798
|
__proto__: null,
|
|
9616
9799
|
name: name$W,
|
|
9617
9800
|
query: query$W
|
|
9618
9801
|
};
|
|
9619
9802
|
|
|
9620
|
-
const name$V = "
|
|
9803
|
+
const name$V = "capitalContributors";
|
|
9621
9804
|
const query$V = Selector("Query")({
|
|
9622
|
-
[name$V]: [{
|
|
9805
|
+
[name$V]: [{ filter: $("filter", "CapitalContributorFilter"), options: $("options", "PaginationInput") }, contributorsPaginationSelector]
|
|
9623
9806
|
});
|
|
9624
9807
|
|
|
9625
|
-
const
|
|
9808
|
+
const getContributors = {
|
|
9626
9809
|
__proto__: null,
|
|
9627
9810
|
name: name$V,
|
|
9628
9811
|
query: query$V
|
|
9629
9812
|
};
|
|
9630
9813
|
|
|
9631
|
-
const name$U = "
|
|
9814
|
+
const name$U = "capitalCycles";
|
|
9632
9815
|
const query$U = Selector("Query")({
|
|
9633
|
-
[name$U]: [{ filter: $("filter", "
|
|
9816
|
+
[name$U]: [{ filter: $("filter", "CapitalCycleFilter"), options: $("options", "PaginationInput") }, cyclesPaginationSelector]
|
|
9634
9817
|
});
|
|
9635
9818
|
|
|
9636
|
-
const
|
|
9819
|
+
const getCycles = {
|
|
9637
9820
|
__proto__: null,
|
|
9638
9821
|
name: name$U,
|
|
9639
9822
|
query: query$U
|
|
9640
9823
|
};
|
|
9641
9824
|
|
|
9642
|
-
const name$T = "
|
|
9825
|
+
const name$T = "capitalDebt";
|
|
9643
9826
|
const query$T = Selector("Query")({
|
|
9644
|
-
[name$T]: [{
|
|
9827
|
+
[name$T]: [{ data: $("data", "GetDebtInput!") }, debtSelector]
|
|
9645
9828
|
});
|
|
9646
9829
|
|
|
9647
|
-
const
|
|
9830
|
+
const getDebt = {
|
|
9648
9831
|
__proto__: null,
|
|
9649
9832
|
name: name$T,
|
|
9650
9833
|
query: query$T
|
|
9651
9834
|
};
|
|
9652
9835
|
|
|
9653
|
-
const name$S = "
|
|
9836
|
+
const name$S = "capitalDebts";
|
|
9654
9837
|
const query$S = Selector("Query")({
|
|
9655
|
-
[name$S]: [{
|
|
9838
|
+
[name$S]: [{ filter: $("filter", "DebtFilter"), options: $("options", "PaginationInput") }, debtsPaginationSelector]
|
|
9656
9839
|
});
|
|
9657
9840
|
|
|
9658
|
-
const
|
|
9841
|
+
const getDebts = {
|
|
9659
9842
|
__proto__: null,
|
|
9660
9843
|
name: name$S,
|
|
9661
9844
|
query: query$S
|
|
9662
9845
|
};
|
|
9663
9846
|
|
|
9664
|
-
const name$R = "
|
|
9847
|
+
const name$R = "capitalExpense";
|
|
9665
9848
|
const query$R = Selector("Query")({
|
|
9666
|
-
[name$R]: [{
|
|
9849
|
+
[name$R]: [{ data: $("data", "GetExpenseInput!") }, expenseSelector]
|
|
9667
9850
|
});
|
|
9668
9851
|
|
|
9669
|
-
const
|
|
9852
|
+
const getExpense = {
|
|
9670
9853
|
__proto__: null,
|
|
9671
9854
|
name: name$R,
|
|
9672
9855
|
query: query$R
|
|
9673
9856
|
};
|
|
9674
9857
|
|
|
9675
|
-
const name$Q = "
|
|
9858
|
+
const name$Q = "capitalExpenses";
|
|
9676
9859
|
const query$Q = Selector("Query")({
|
|
9677
|
-
[name$Q]: [{
|
|
9860
|
+
[name$Q]: [{ filter: $("filter", "ExpenseFilter"), options: $("options", "PaginationInput") }, expensesPaginationSelector]
|
|
9678
9861
|
});
|
|
9679
9862
|
|
|
9680
|
-
const
|
|
9863
|
+
const getExpenses = {
|
|
9681
9864
|
__proto__: null,
|
|
9682
9865
|
name: name$Q,
|
|
9683
9866
|
query: query$Q
|
|
9684
9867
|
};
|
|
9685
9868
|
|
|
9686
|
-
const name$P = "
|
|
9869
|
+
const name$P = "capitalInvest";
|
|
9687
9870
|
const query$P = Selector("Query")({
|
|
9688
|
-
[name$P]: [{
|
|
9871
|
+
[name$P]: [{ data: $("data", "GetInvestInput!") }, investSelector]
|
|
9689
9872
|
});
|
|
9690
9873
|
|
|
9691
|
-
const
|
|
9874
|
+
const getInvest = {
|
|
9692
9875
|
__proto__: null,
|
|
9693
9876
|
name: name$P,
|
|
9694
9877
|
query: query$P
|
|
9695
9878
|
};
|
|
9696
9879
|
|
|
9697
|
-
const name$O = "
|
|
9880
|
+
const name$O = "capitalInvests";
|
|
9698
9881
|
const query$O = Selector("Query")({
|
|
9699
|
-
[name$O]: [{
|
|
9882
|
+
[name$O]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, investsPaginationSelector]
|
|
9700
9883
|
});
|
|
9701
9884
|
|
|
9702
|
-
const
|
|
9885
|
+
const getInvests = {
|
|
9703
9886
|
__proto__: null,
|
|
9704
9887
|
name: name$O,
|
|
9705
9888
|
query: query$O
|
|
9706
9889
|
};
|
|
9707
9890
|
|
|
9708
|
-
const name$N = "
|
|
9891
|
+
const name$N = "capitalIssue";
|
|
9709
9892
|
const query$N = Selector("Query")({
|
|
9710
|
-
[name$N]: [{
|
|
9893
|
+
[name$N]: [{ data: $("data", "GetCapitalIssueByHashInput!") }, issueSelector]
|
|
9711
9894
|
});
|
|
9712
9895
|
|
|
9713
|
-
const
|
|
9896
|
+
const getIssue = {
|
|
9714
9897
|
__proto__: null,
|
|
9715
9898
|
name: name$N,
|
|
9716
9899
|
query: query$N
|
|
9717
9900
|
};
|
|
9718
9901
|
|
|
9719
|
-
const name$M = "
|
|
9902
|
+
const name$M = "getCapitalIssueLogs";
|
|
9720
9903
|
const query$M = Selector("Query")({
|
|
9721
|
-
[name$M]: [
|
|
9904
|
+
[name$M]: [
|
|
9905
|
+
{
|
|
9906
|
+
data: $("data", "GetCapitalIssueLogsInput!"),
|
|
9907
|
+
options: $("options", "PaginationInput")
|
|
9908
|
+
},
|
|
9909
|
+
logsPaginationSelector
|
|
9910
|
+
]
|
|
9722
9911
|
});
|
|
9723
9912
|
|
|
9724
|
-
const
|
|
9913
|
+
const getIssueLogs = {
|
|
9725
9914
|
__proto__: null,
|
|
9726
9915
|
name: name$M,
|
|
9727
9916
|
query: query$M
|
|
9728
9917
|
};
|
|
9729
9918
|
|
|
9730
|
-
const name$L = "
|
|
9919
|
+
const name$L = "capitalIssues";
|
|
9731
9920
|
const query$L = Selector("Query")({
|
|
9732
|
-
[name$L]: [
|
|
9733
|
-
{
|
|
9734
|
-
data: $("data", "GetCapitalIssueLogsInput!"),
|
|
9735
|
-
options: $("options", "PaginationInput")
|
|
9736
|
-
},
|
|
9737
|
-
logsPaginationSelector
|
|
9738
|
-
]
|
|
9921
|
+
[name$L]: [{ filter: $("filter", "CapitalIssueFilter"), options: $("options", "PaginationInput") }, issuesPaginationSelector]
|
|
9739
9922
|
});
|
|
9740
9923
|
|
|
9741
|
-
const
|
|
9924
|
+
const getIssues = {
|
|
9742
9925
|
__proto__: null,
|
|
9743
9926
|
name: name$L,
|
|
9744
9927
|
query: query$L
|
|
9745
9928
|
};
|
|
9746
9929
|
|
|
9747
|
-
const name$K = "
|
|
9930
|
+
const name$K = "getCapitalOnboardingState";
|
|
9748
9931
|
const query$K = Selector("Query")({
|
|
9749
|
-
[name$K]:
|
|
9932
|
+
[name$K]: capitalOnboardingStateSelector
|
|
9750
9933
|
});
|
|
9751
9934
|
|
|
9752
|
-
const
|
|
9935
|
+
const getOnboardingState$1 = {
|
|
9753
9936
|
__proto__: null,
|
|
9754
9937
|
name: name$K,
|
|
9755
9938
|
query: query$K
|
|
9756
9939
|
};
|
|
9757
9940
|
|
|
9758
|
-
const name$J = "
|
|
9941
|
+
const name$J = "capitalProgramInvest";
|
|
9759
9942
|
const query$J = Selector("Query")({
|
|
9760
|
-
[name$J]:
|
|
9943
|
+
[name$J]: [{ data: $("data", "GetProgramInvestInput!") }, programInvestSelector]
|
|
9761
9944
|
});
|
|
9762
9945
|
|
|
9763
|
-
const
|
|
9946
|
+
const getProgramInvest = {
|
|
9764
9947
|
__proto__: null,
|
|
9765
9948
|
name: name$J,
|
|
9766
9949
|
query: query$J
|
|
9767
9950
|
};
|
|
9768
9951
|
|
|
9769
|
-
const name$I = "
|
|
9952
|
+
const name$I = "capitalProgramInvests";
|
|
9770
9953
|
const query$I = Selector("Query")({
|
|
9771
|
-
[name$I]: [{
|
|
9954
|
+
[name$I]: [{ filter: $("filter", "CapitalInvestFilter"), options: $("options", "PaginationInput") }, programInvestsPaginationSelector]
|
|
9772
9955
|
});
|
|
9773
9956
|
|
|
9774
|
-
const
|
|
9957
|
+
const getProgramInvests = {
|
|
9775
9958
|
__proto__: null,
|
|
9776
9959
|
name: name$I,
|
|
9777
9960
|
query: query$I
|
|
9778
9961
|
};
|
|
9779
9962
|
|
|
9780
|
-
const name$H = "
|
|
9963
|
+
const name$H = "capitalProject";
|
|
9781
9964
|
const query$H = Selector("Query")({
|
|
9782
|
-
[name$H]: [{
|
|
9965
|
+
[name$H]: [{ data: $("data", "GetProjectInput!") }, projectSelector]
|
|
9783
9966
|
});
|
|
9784
9967
|
|
|
9785
|
-
const
|
|
9968
|
+
const getProject = {
|
|
9786
9969
|
__proto__: null,
|
|
9787
9970
|
name: name$H,
|
|
9788
9971
|
query: query$H
|
|
9789
9972
|
};
|
|
9790
9973
|
|
|
9791
|
-
const name$G = "
|
|
9974
|
+
const name$G = "getCapitalProjectLogs";
|
|
9792
9975
|
const query$G = Selector("Query")({
|
|
9793
|
-
[name$G]: [{ data: $("data", "
|
|
9976
|
+
[name$G]: [{ data: $("data", "GetCapitalLogsInput!") }, logsPaginationSelector]
|
|
9794
9977
|
});
|
|
9795
9978
|
|
|
9796
|
-
const
|
|
9979
|
+
const getProjectLogs = {
|
|
9797
9980
|
__proto__: null,
|
|
9798
9981
|
name: name$G,
|
|
9799
9982
|
query: query$G
|
|
9800
9983
|
};
|
|
9801
9984
|
|
|
9802
|
-
const name$F = "
|
|
9985
|
+
const name$F = "capitalProjects";
|
|
9803
9986
|
const query$F = Selector("Query")({
|
|
9804
|
-
[name$F]: [{
|
|
9987
|
+
[name$F]: [{ filter: $("filter", "CapitalProjectFilter"), options: $("options", "PaginationInput") }, projectsPaginationSelector]
|
|
9805
9988
|
});
|
|
9806
9989
|
|
|
9807
|
-
const
|
|
9990
|
+
const getProjects = {
|
|
9808
9991
|
__proto__: null,
|
|
9809
9992
|
name: name$F,
|
|
9810
9993
|
query: query$F
|
|
9811
9994
|
};
|
|
9812
9995
|
|
|
9813
|
-
const name$E = "
|
|
9996
|
+
const name$E = "capitalProjectWithRelations";
|
|
9814
9997
|
const query$E = Selector("Query")({
|
|
9815
|
-
[name$E]: [{
|
|
9998
|
+
[name$E]: [{ data: $("data", "GetProjectWithRelationsInput!") }, projectSelector]
|
|
9816
9999
|
});
|
|
9817
10000
|
|
|
9818
|
-
const
|
|
10001
|
+
const getProjectWithRelations = {
|
|
9819
10002
|
__proto__: null,
|
|
9820
10003
|
name: name$E,
|
|
9821
10004
|
query: query$E
|
|
9822
10005
|
};
|
|
9823
10006
|
|
|
9824
|
-
const name$D = "
|
|
10007
|
+
const name$D = "capitalResult";
|
|
9825
10008
|
const query$D = Selector("Query")({
|
|
9826
|
-
[name$D]: [{ data: $("data", "
|
|
10009
|
+
[name$D]: [{ data: $("data", "GetResultInput!") }, resultSelector]
|
|
9827
10010
|
});
|
|
9828
10011
|
|
|
9829
|
-
const
|
|
10012
|
+
const getResult = {
|
|
9830
10013
|
__proto__: null,
|
|
9831
10014
|
name: name$D,
|
|
9832
10015
|
query: query$D
|
|
9833
10016
|
};
|
|
9834
10017
|
|
|
9835
|
-
const name$C = "
|
|
10018
|
+
const name$C = "capitalResults";
|
|
9836
10019
|
const query$C = Selector("Query")({
|
|
9837
|
-
[name$C]: [{
|
|
10020
|
+
[name$C]: [{ filter: $("filter", "ResultFilter"), options: $("options", "PaginationInput") }, resultsPaginationSelector]
|
|
9838
10021
|
});
|
|
9839
10022
|
|
|
9840
|
-
const
|
|
10023
|
+
const getResults = {
|
|
9841
10024
|
__proto__: null,
|
|
9842
10025
|
name: name$C,
|
|
9843
10026
|
query: query$C
|
|
9844
10027
|
};
|
|
9845
10028
|
|
|
9846
|
-
const name$B = "
|
|
10029
|
+
const name$B = "capitalSegment";
|
|
9847
10030
|
const query$B = Selector("Query")({
|
|
9848
|
-
[name$B]: [{ filter: $("filter", "
|
|
10031
|
+
[name$B]: [{ filter: $("filter", "CapitalSegmentFilter") }, segmentSelector]
|
|
9849
10032
|
});
|
|
9850
10033
|
|
|
9851
|
-
const
|
|
10034
|
+
const getSegment = {
|
|
9852
10035
|
__proto__: null,
|
|
9853
10036
|
name: name$B,
|
|
9854
10037
|
query: query$B
|
|
9855
10038
|
};
|
|
9856
10039
|
|
|
9857
|
-
const name$A = "
|
|
10040
|
+
const name$A = "capitalSegments";
|
|
9858
10041
|
const query$A = Selector("Query")({
|
|
9859
|
-
[name$A]: [{ filter: $("filter", "CapitalSegmentFilter") },
|
|
10042
|
+
[name$A]: [{ filter: $("filter", "CapitalSegmentFilter"), options: $("options", "PaginationInput") }, segmentsPaginationSelector]
|
|
9860
10043
|
});
|
|
9861
10044
|
|
|
9862
|
-
const
|
|
10045
|
+
const getSegments = {
|
|
9863
10046
|
__proto__: null,
|
|
9864
10047
|
name: name$A,
|
|
9865
10048
|
query: query$A
|
|
9866
10049
|
};
|
|
9867
10050
|
|
|
9868
|
-
const name$z = "
|
|
10051
|
+
const name$z = "capitalState";
|
|
9869
10052
|
const query$z = Selector("Query")({
|
|
9870
|
-
[name$z]: [{
|
|
10053
|
+
[name$z]: [{ data: $("data", "GetCapitalConfigInput!") }, configSelector]
|
|
9871
10054
|
});
|
|
9872
10055
|
|
|
9873
|
-
const
|
|
10056
|
+
const getState = {
|
|
9874
10057
|
__proto__: null,
|
|
9875
10058
|
name: name$z,
|
|
9876
10059
|
query: query$z
|
|
9877
10060
|
};
|
|
9878
10061
|
|
|
9879
|
-
const name$y = "
|
|
10062
|
+
const name$y = "capitalStories";
|
|
9880
10063
|
const query$y = Selector("Query")({
|
|
9881
|
-
[name$y]: [{
|
|
10064
|
+
[name$y]: [{ filter: $("filter", "CapitalStoryFilter"), options: $("options", "PaginationInput") }, storiesPaginationSelector]
|
|
9882
10065
|
});
|
|
9883
10066
|
|
|
9884
|
-
const
|
|
10067
|
+
const getStories = {
|
|
9885
10068
|
__proto__: null,
|
|
9886
10069
|
name: name$y,
|
|
9887
10070
|
query: query$y
|
|
9888
10071
|
};
|
|
9889
10072
|
|
|
9890
|
-
const name$x = "
|
|
10073
|
+
const name$x = "capitalStory";
|
|
9891
10074
|
const query$x = Selector("Query")({
|
|
9892
|
-
[name$x]: [{
|
|
10075
|
+
[name$x]: [{ data: $("data", "GetCapitalStoryByHashInput!") }, storySelector]
|
|
9893
10076
|
});
|
|
9894
10077
|
|
|
9895
|
-
const
|
|
10078
|
+
const getStory = {
|
|
9896
10079
|
__proto__: null,
|
|
9897
10080
|
name: name$x,
|
|
9898
10081
|
query: query$x
|
|
9899
10082
|
};
|
|
9900
10083
|
|
|
9901
|
-
const name$w = "
|
|
10084
|
+
const name$w = "capitalTimeEntries";
|
|
9902
10085
|
const query$w = Selector("Query")({
|
|
9903
|
-
[name$w]: [{
|
|
10086
|
+
[name$w]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesPaginationSelector]
|
|
9904
10087
|
});
|
|
9905
10088
|
|
|
9906
|
-
const
|
|
10089
|
+
const getTimeEntries = {
|
|
9907
10090
|
__proto__: null,
|
|
9908
10091
|
name: name$w,
|
|
9909
10092
|
query: query$w
|
|
9910
10093
|
};
|
|
9911
10094
|
|
|
9912
|
-
const name$v = "
|
|
10095
|
+
const name$v = "capitalTimeEntriesByIssues";
|
|
9913
10096
|
const query$v = Selector("Query")({
|
|
9914
|
-
[name$v]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") },
|
|
10097
|
+
[name$v]: [{ filter: $("filter", "CapitalTimeEntriesFilter"), options: $("options", "PaginationInput") }, timeEntriesByIssuesPaginationSelector]
|
|
9915
10098
|
});
|
|
9916
10099
|
|
|
9917
|
-
const
|
|
10100
|
+
const getTimeEntriesByIssues = {
|
|
9918
10101
|
__proto__: null,
|
|
9919
10102
|
name: name$v,
|
|
9920
10103
|
query: query$v
|
|
9921
10104
|
};
|
|
9922
10105
|
|
|
9923
|
-
const name$u = "
|
|
10106
|
+
const name$u = "capitalTimeStats";
|
|
9924
10107
|
const query$u = Selector("Query")({
|
|
9925
|
-
[name$u]: [{
|
|
10108
|
+
[name$u]: [{ data: $("data", "CapitalTimeStatsInput"), options: $("options", "PaginationInput") }, flexibleTimeStatsSelector]
|
|
9926
10109
|
});
|
|
9927
10110
|
|
|
9928
|
-
const
|
|
10111
|
+
const getTimeStats = {
|
|
9929
10112
|
__proto__: null,
|
|
9930
10113
|
name: name$u,
|
|
9931
10114
|
query: query$u
|
|
9932
10115
|
};
|
|
9933
10116
|
|
|
9934
|
-
const name$t = "
|
|
10117
|
+
const name$t = "capitalVote";
|
|
9935
10118
|
const query$t = Selector("Query")({
|
|
9936
|
-
[name$t]: [{ data: $("data", "
|
|
10119
|
+
[name$t]: [{ data: $("data", "GetVoteInput!") }, voteSelector]
|
|
9937
10120
|
});
|
|
9938
10121
|
|
|
9939
|
-
const
|
|
10122
|
+
const getVote = {
|
|
9940
10123
|
__proto__: null,
|
|
9941
10124
|
name: name$t,
|
|
9942
10125
|
query: query$t
|
|
9943
10126
|
};
|
|
9944
10127
|
|
|
9945
|
-
const name$s = "
|
|
10128
|
+
const name$s = "capitalVotes";
|
|
9946
10129
|
const query$s = Selector("Query")({
|
|
9947
|
-
[name$s]: [{
|
|
10130
|
+
[name$s]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
|
|
9948
10131
|
});
|
|
9949
10132
|
|
|
9950
|
-
const
|
|
10133
|
+
const getVotes = {
|
|
9951
10134
|
__proto__: null,
|
|
9952
10135
|
name: name$s,
|
|
9953
10136
|
query: query$s
|
|
9954
10137
|
};
|
|
9955
10138
|
|
|
9956
|
-
const
|
|
9957
|
-
const query$r = Selector("Query")({
|
|
9958
|
-
[name$r]: [{ filter: $("filter", "VoteFilter"), options: $("options", "PaginationInput") }, votesPaginationSelector]
|
|
9959
|
-
});
|
|
9960
|
-
|
|
9961
|
-
const getVotes = {
|
|
9962
|
-
__proto__: null,
|
|
9963
|
-
name: name$r,
|
|
9964
|
-
query: query$r
|
|
9965
|
-
};
|
|
9966
|
-
|
|
9967
|
-
const index$k = {
|
|
10139
|
+
const index$l = {
|
|
9968
10140
|
__proto__: null,
|
|
9969
10141
|
GetCapitalCandidates: getCapitalCandidates,
|
|
9970
10142
|
GetCommit: getCommit,
|
|
@@ -10002,20 +10174,20 @@ const index$k = {
|
|
|
10002
10174
|
GetVotes: getVotes
|
|
10003
10175
|
};
|
|
10004
10176
|
|
|
10005
|
-
const name$
|
|
10006
|
-
const query$
|
|
10007
|
-
[name$
|
|
10177
|
+
const name$r = "chairmanApproval";
|
|
10178
|
+
const query$r = Selector("Query")({
|
|
10179
|
+
[name$r]: [{ id: $("id", "String!") }, approvalSelector]
|
|
10008
10180
|
});
|
|
10009
10181
|
|
|
10010
10182
|
const getApproval = {
|
|
10011
10183
|
__proto__: null,
|
|
10012
|
-
name: name$
|
|
10013
|
-
query: query$
|
|
10184
|
+
name: name$r,
|
|
10185
|
+
query: query$r
|
|
10014
10186
|
};
|
|
10015
10187
|
|
|
10016
|
-
const name$
|
|
10017
|
-
const query$
|
|
10018
|
-
[name$
|
|
10188
|
+
const name$q = "chairmanApprovals";
|
|
10189
|
+
const query$q = Selector("Query")({
|
|
10190
|
+
[name$q]: [
|
|
10019
10191
|
{
|
|
10020
10192
|
filter: $("filter", "ApprovalFilter"),
|
|
10021
10193
|
options: $("options", "PaginationInput")
|
|
@@ -10026,73 +10198,73 @@ const query$p = Selector("Query")({
|
|
|
10026
10198
|
|
|
10027
10199
|
const getApprovals = {
|
|
10028
10200
|
__proto__: null,
|
|
10029
|
-
name: name$
|
|
10030
|
-
query: query$
|
|
10201
|
+
name: name$q,
|
|
10202
|
+
query: query$q
|
|
10031
10203
|
};
|
|
10032
10204
|
|
|
10033
|
-
const name$
|
|
10034
|
-
const query$
|
|
10035
|
-
[name$
|
|
10205
|
+
const name$p = "getChairmanOnboardingState";
|
|
10206
|
+
const query$p = Selector("Query")({
|
|
10207
|
+
[name$p]: chairmanOnboardingStateSelector
|
|
10036
10208
|
});
|
|
10037
10209
|
|
|
10038
10210
|
const getOnboardingState = {
|
|
10039
10211
|
__proto__: null,
|
|
10040
|
-
name: name$
|
|
10041
|
-
query: query$
|
|
10212
|
+
name: name$p,
|
|
10213
|
+
query: query$p
|
|
10042
10214
|
};
|
|
10043
10215
|
|
|
10044
|
-
const index$
|
|
10216
|
+
const index$k = {
|
|
10045
10217
|
__proto__: null,
|
|
10046
10218
|
GetApproval: getApproval,
|
|
10047
10219
|
GetApprovals: getApprovals,
|
|
10048
10220
|
GetOnboardingState: getOnboardingState
|
|
10049
10221
|
};
|
|
10050
10222
|
|
|
10051
|
-
const name$
|
|
10052
|
-
const query$
|
|
10053
|
-
[name$
|
|
10223
|
+
const name$o = "chatcoopCheckUsernameAvailability";
|
|
10224
|
+
const query$o = Selector("Query")({
|
|
10225
|
+
[name$o]: [{ data: $("data", "CheckMatrixUsernameInput!") }, true]
|
|
10054
10226
|
});
|
|
10055
10227
|
|
|
10056
10228
|
const checkUsernameAvailability = {
|
|
10057
10229
|
__proto__: null,
|
|
10058
|
-
name: name$
|
|
10059
|
-
query: query$
|
|
10230
|
+
name: name$o,
|
|
10231
|
+
query: query$o
|
|
10060
10232
|
};
|
|
10061
10233
|
|
|
10062
|
-
const name$
|
|
10063
|
-
const query$
|
|
10064
|
-
[name$
|
|
10234
|
+
const name$n = "chatcoopGetAccountStatus";
|
|
10235
|
+
const query$n = Selector("Query")({
|
|
10236
|
+
[name$n]: chatcoopAccountStatusSelector
|
|
10065
10237
|
});
|
|
10066
10238
|
|
|
10067
10239
|
const getAccountStatus = {
|
|
10068
10240
|
__proto__: null,
|
|
10069
|
-
name: name$
|
|
10070
|
-
query: query$
|
|
10241
|
+
name: name$n,
|
|
10242
|
+
query: query$n
|
|
10071
10243
|
};
|
|
10072
10244
|
|
|
10073
|
-
const name$
|
|
10074
|
-
const query$
|
|
10075
|
-
[name$
|
|
10245
|
+
const name$m = "chatcoopGetTranscription";
|
|
10246
|
+
const query$m = Selector("Query")({
|
|
10247
|
+
[name$m]: [{ data: $("data", "GetTranscriptionInput!") }, rawCallTranscriptionWithSegmentsSelector]
|
|
10076
10248
|
});
|
|
10077
10249
|
|
|
10078
10250
|
const getTranscription = {
|
|
10079
10251
|
__proto__: null,
|
|
10080
|
-
name: name$
|
|
10081
|
-
query: query$
|
|
10252
|
+
name: name$m,
|
|
10253
|
+
query: query$m
|
|
10082
10254
|
};
|
|
10083
10255
|
|
|
10084
|
-
const name$
|
|
10085
|
-
const query$
|
|
10086
|
-
[name$
|
|
10256
|
+
const name$l = "chatcoopGetTranscriptions";
|
|
10257
|
+
const query$l = Selector("Query")({
|
|
10258
|
+
[name$l]: [{ data: $("data", "GetTranscriptionsInput") }, rawCallTranscriptionSelector]
|
|
10087
10259
|
});
|
|
10088
10260
|
|
|
10089
10261
|
const getTranscriptions = {
|
|
10090
10262
|
__proto__: null,
|
|
10091
|
-
name: name$
|
|
10092
|
-
query: query$
|
|
10263
|
+
name: name$l,
|
|
10264
|
+
query: query$l
|
|
10093
10265
|
};
|
|
10094
10266
|
|
|
10095
|
-
const index$
|
|
10267
|
+
const index$j = {
|
|
10096
10268
|
__proto__: null,
|
|
10097
10269
|
CheckUsernameAvailability: checkUsernameAvailability,
|
|
10098
10270
|
GetAccountStatus: getAccountStatus,
|
|
@@ -10118,35 +10290,35 @@ const rawDesktopSelector = {
|
|
|
10118
10290
|
};
|
|
10119
10291
|
const desktopSelector = Selector("Desktop")(rawDesktopSelector);
|
|
10120
10292
|
|
|
10121
|
-
const name$
|
|
10122
|
-
const query$
|
|
10123
|
-
[name$
|
|
10293
|
+
const name$k = "getDesktop";
|
|
10294
|
+
const query$k = Selector("Query")({
|
|
10295
|
+
[name$k]: desktopSelector
|
|
10124
10296
|
});
|
|
10125
10297
|
|
|
10126
10298
|
const getDesktop = {
|
|
10127
10299
|
__proto__: null,
|
|
10128
|
-
name: name$
|
|
10129
|
-
query: query$
|
|
10300
|
+
name: name$k,
|
|
10301
|
+
query: query$k
|
|
10130
10302
|
};
|
|
10131
10303
|
|
|
10132
|
-
const index$
|
|
10304
|
+
const index$i = {
|
|
10133
10305
|
__proto__: null,
|
|
10134
10306
|
GetDesktop: getDesktop
|
|
10135
10307
|
};
|
|
10136
10308
|
|
|
10137
10309
|
const documentPaginationSelector = { ...paginationSelector, items: rawDocumentPackageAggregateSelector };
|
|
10138
|
-
const name$
|
|
10139
|
-
const query$
|
|
10140
|
-
[name$
|
|
10310
|
+
const name$j = "getDocuments";
|
|
10311
|
+
const query$j = Selector("Query")({
|
|
10312
|
+
[name$j]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
|
|
10141
10313
|
});
|
|
10142
10314
|
|
|
10143
10315
|
const getDocuments = {
|
|
10144
10316
|
__proto__: null,
|
|
10145
|
-
name: name$
|
|
10146
|
-
query: query$
|
|
10317
|
+
name: name$j,
|
|
10318
|
+
query: query$j
|
|
10147
10319
|
};
|
|
10148
10320
|
|
|
10149
|
-
const index$
|
|
10321
|
+
const index$h = {
|
|
10150
10322
|
__proto__: null,
|
|
10151
10323
|
GetDocuments: getDocuments
|
|
10152
10324
|
};
|
|
@@ -10169,9 +10341,9 @@ const rawPaginatedExtensionLogsSelector = {
|
|
|
10169
10341
|
};
|
|
10170
10342
|
const paginatedExtensionLogsSelector = Selector("ExtensionLogsPaginationResult")(rawPaginatedExtensionLogsSelector);
|
|
10171
10343
|
|
|
10172
|
-
const name$
|
|
10173
|
-
const query$
|
|
10174
|
-
[name$
|
|
10344
|
+
const name$i = "getExtensionLogs";
|
|
10345
|
+
const query$i = Selector("Query")({
|
|
10346
|
+
[name$i]: [
|
|
10175
10347
|
{
|
|
10176
10348
|
data: $("data", "GetExtensionLogsInput"),
|
|
10177
10349
|
options: $("options", "PaginationInput")
|
|
@@ -10182,31 +10354,31 @@ const query$h = Selector("Query")({
|
|
|
10182
10354
|
|
|
10183
10355
|
const getExtensionLogs = {
|
|
10184
10356
|
__proto__: null,
|
|
10185
|
-
name: name$
|
|
10186
|
-
query: query$
|
|
10357
|
+
name: name$i,
|
|
10358
|
+
query: query$i
|
|
10187
10359
|
};
|
|
10188
10360
|
|
|
10189
|
-
const name$
|
|
10190
|
-
const query$
|
|
10191
|
-
[name$
|
|
10361
|
+
const name$h = "getExtensions";
|
|
10362
|
+
const query$h = Selector("Query")({
|
|
10363
|
+
[name$h]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
|
|
10192
10364
|
});
|
|
10193
10365
|
|
|
10194
10366
|
const getExtensions = {
|
|
10195
10367
|
__proto__: null,
|
|
10196
|
-
name: name$
|
|
10197
|
-
query: query$
|
|
10368
|
+
name: name$h,
|
|
10369
|
+
query: query$h
|
|
10198
10370
|
};
|
|
10199
10371
|
|
|
10200
|
-
const index$
|
|
10372
|
+
const index$g = {
|
|
10201
10373
|
__proto__: null,
|
|
10202
10374
|
GetExtensionLogs: getExtensionLogs,
|
|
10203
10375
|
GetExtensions: getExtensions
|
|
10204
10376
|
};
|
|
10205
10377
|
|
|
10206
10378
|
const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
|
|
10207
|
-
const name$
|
|
10208
|
-
const query$
|
|
10209
|
-
[name$
|
|
10379
|
+
const name$g = "getPayments";
|
|
10380
|
+
const query$g = Selector("Query")({
|
|
10381
|
+
[name$g]: [
|
|
10210
10382
|
{
|
|
10211
10383
|
data: $("data", "PaymentFiltersInput"),
|
|
10212
10384
|
options: $("options", "PaginationInput")
|
|
@@ -10217,111 +10389,111 @@ const query$f = Selector("Query")({
|
|
|
10217
10389
|
|
|
10218
10390
|
const getPayments = {
|
|
10219
10391
|
__proto__: null,
|
|
10220
|
-
name: name$
|
|
10221
|
-
query: query$
|
|
10392
|
+
name: name$g,
|
|
10393
|
+
query: query$g
|
|
10222
10394
|
};
|
|
10223
10395
|
|
|
10224
|
-
const index$
|
|
10396
|
+
const index$f = {
|
|
10225
10397
|
__proto__: null,
|
|
10226
10398
|
GetPayments: getPayments
|
|
10227
10399
|
};
|
|
10228
10400
|
|
|
10229
|
-
const name$
|
|
10230
|
-
const query$
|
|
10231
|
-
[name$
|
|
10401
|
+
const name$f = "getLedger";
|
|
10402
|
+
const query$f = Selector("Query")({
|
|
10403
|
+
[name$f]: [{ data: $("data", "GetLedgerInput!") }, ledgerStateSelector]
|
|
10232
10404
|
});
|
|
10233
10405
|
|
|
10234
10406
|
const getLedger = {
|
|
10235
10407
|
__proto__: null,
|
|
10236
|
-
name: name$
|
|
10237
|
-
query: query$
|
|
10408
|
+
name: name$f,
|
|
10409
|
+
query: query$f
|
|
10238
10410
|
};
|
|
10239
10411
|
|
|
10240
|
-
const name$
|
|
10241
|
-
const query$
|
|
10242
|
-
[name$
|
|
10412
|
+
const name$e = "getLedgerHistory";
|
|
10413
|
+
const query$e = Selector("Query")({
|
|
10414
|
+
[name$e]: [{ data: $("data", "GetLedgerHistoryInput!") }, rawLedgerHistorySelector]
|
|
10243
10415
|
});
|
|
10244
10416
|
|
|
10245
10417
|
const getLedgerHistory = {
|
|
10246
10418
|
__proto__: null,
|
|
10247
|
-
name: name$
|
|
10248
|
-
query: query$
|
|
10419
|
+
name: name$e,
|
|
10420
|
+
query: query$e
|
|
10249
10421
|
};
|
|
10250
10422
|
|
|
10251
|
-
const index$
|
|
10423
|
+
const index$e = {
|
|
10252
10424
|
__proto__: null,
|
|
10253
10425
|
GetLedger: getLedger,
|
|
10254
10426
|
GetLedgerHistory: getLedgerHistory
|
|
10255
10427
|
};
|
|
10256
10428
|
|
|
10257
|
-
const name$
|
|
10258
|
-
const query$
|
|
10259
|
-
[name$
|
|
10429
|
+
const name$d = "getMeet";
|
|
10430
|
+
const query$d = Selector("Query")({
|
|
10431
|
+
[name$d]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
|
|
10260
10432
|
});
|
|
10261
10433
|
|
|
10262
10434
|
const getMeet = {
|
|
10263
10435
|
__proto__: null,
|
|
10264
|
-
name: name$
|
|
10265
|
-
query: query$
|
|
10436
|
+
name: name$d,
|
|
10437
|
+
query: query$d
|
|
10266
10438
|
};
|
|
10267
10439
|
|
|
10268
|
-
const name$
|
|
10269
|
-
const query$
|
|
10270
|
-
[name$
|
|
10440
|
+
const name$c = "getMeets";
|
|
10441
|
+
const query$c = Selector("Query")({
|
|
10442
|
+
[name$c]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
|
|
10271
10443
|
});
|
|
10272
10444
|
|
|
10273
10445
|
const getMeets = {
|
|
10274
10446
|
__proto__: null,
|
|
10275
|
-
name: name$
|
|
10276
|
-
query: query$
|
|
10447
|
+
name: name$c,
|
|
10448
|
+
query: query$c
|
|
10277
10449
|
};
|
|
10278
10450
|
|
|
10279
|
-
const index$
|
|
10451
|
+
const index$d = {
|
|
10280
10452
|
__proto__: null,
|
|
10281
10453
|
GetMeet: getMeet,
|
|
10282
10454
|
GetMeets: getMeets
|
|
10283
10455
|
};
|
|
10284
10456
|
|
|
10285
|
-
const name$
|
|
10286
|
-
const query$
|
|
10287
|
-
[name$
|
|
10457
|
+
const name$b = "getUserWebPushSubscriptions";
|
|
10458
|
+
const query$b = Selector("Query")({
|
|
10459
|
+
[name$b]: [{ data: $("data", "GetUserSubscriptionsInput!") }, rawWebPushSubscriptionSelector]
|
|
10288
10460
|
});
|
|
10289
10461
|
|
|
10290
10462
|
const getUserWebPushSubscriptions = {
|
|
10291
10463
|
__proto__: null,
|
|
10292
|
-
name: name$
|
|
10293
|
-
query: query$
|
|
10464
|
+
name: name$b,
|
|
10465
|
+
query: query$b
|
|
10294
10466
|
};
|
|
10295
10467
|
|
|
10296
|
-
const name$
|
|
10297
|
-
const query$
|
|
10298
|
-
[name$
|
|
10468
|
+
const name$a = "getWebPushSubscriptionStats";
|
|
10469
|
+
const query$a = Selector("Query")({
|
|
10470
|
+
[name$a]: rawSubscriptionStatsSelector
|
|
10299
10471
|
});
|
|
10300
10472
|
|
|
10301
10473
|
const getWebPushSubscriptionStats = {
|
|
10302
10474
|
__proto__: null,
|
|
10303
|
-
name: name$
|
|
10304
|
-
query: query$
|
|
10475
|
+
name: name$a,
|
|
10476
|
+
query: query$a
|
|
10305
10477
|
};
|
|
10306
10478
|
|
|
10307
|
-
const index$
|
|
10479
|
+
const index$c = {
|
|
10308
10480
|
__proto__: null,
|
|
10309
10481
|
GetUserWebPushSubscriptions: getUserWebPushSubscriptions,
|
|
10310
10482
|
GetWebPushSubscriptionStats: getWebPushSubscriptionStats
|
|
10311
10483
|
};
|
|
10312
10484
|
|
|
10313
|
-
const name$
|
|
10314
|
-
const query$
|
|
10315
|
-
[name$
|
|
10485
|
+
const name$9 = "onecoopGetDocuments";
|
|
10486
|
+
const query$9 = Selector("Query")({
|
|
10487
|
+
[name$9]: [{ data: $("data", "GetOneCoopDocumentsInput!") }, oneCoopDocumentsPaginationSelector]
|
|
10316
10488
|
});
|
|
10317
10489
|
|
|
10318
10490
|
const getOneCoopDocuments = {
|
|
10319
10491
|
__proto__: null,
|
|
10320
|
-
name: name$
|
|
10321
|
-
query: query$
|
|
10492
|
+
name: name$9,
|
|
10493
|
+
query: query$9
|
|
10322
10494
|
};
|
|
10323
10495
|
|
|
10324
|
-
const index$
|
|
10496
|
+
const index$b = {
|
|
10325
10497
|
__proto__: null,
|
|
10326
10498
|
GetOneCoopDocuments: getOneCoopDocuments
|
|
10327
10499
|
};
|
|
@@ -10329,17 +10501,17 @@ const index$a = {
|
|
|
10329
10501
|
const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
|
|
10330
10502
|
Selector("PaymentMethodPaginationResult")(rawPaymentMethodPaginationSelector);
|
|
10331
10503
|
|
|
10332
|
-
const name$
|
|
10333
|
-
const query$
|
|
10334
|
-
[name$
|
|
10504
|
+
const name$8 = "getPaymentMethods";
|
|
10505
|
+
const query$8 = Selector("Query")({
|
|
10506
|
+
[name$8]: [{ data: $("data", "GetPaymentMethodsInput") }, rawPaymentMethodPaginationSelector]
|
|
10335
10507
|
});
|
|
10336
10508
|
|
|
10337
10509
|
const getPaymentMethods = {
|
|
10338
10510
|
__proto__: null,
|
|
10339
|
-
query: query$
|
|
10511
|
+
query: query$8
|
|
10340
10512
|
};
|
|
10341
10513
|
|
|
10342
|
-
const index$
|
|
10514
|
+
const index$a = {
|
|
10343
10515
|
__proto__: null,
|
|
10344
10516
|
GetPaymentMethods: getPaymentMethods
|
|
10345
10517
|
};
|
|
@@ -10354,11 +10526,38 @@ const getCandidatesQuery = Selector("Query")({
|
|
|
10354
10526
|
]
|
|
10355
10527
|
});
|
|
10356
10528
|
|
|
10357
|
-
const index$
|
|
10529
|
+
const index$9 = {
|
|
10358
10530
|
__proto__: null,
|
|
10359
10531
|
getCandidatesQuery: getCandidatesQuery
|
|
10360
10532
|
};
|
|
10361
10533
|
|
|
10534
|
+
const name$7 = "searchDocuments";
|
|
10535
|
+
const query$7 = {
|
|
10536
|
+
[name$7]: [
|
|
10537
|
+
{ data: $("data", "SearchDocumentsInput!") },
|
|
10538
|
+
{
|
|
10539
|
+
hash: true,
|
|
10540
|
+
full_title: true,
|
|
10541
|
+
username: true,
|
|
10542
|
+
coopname: true,
|
|
10543
|
+
registry_id: true,
|
|
10544
|
+
created_at: true,
|
|
10545
|
+
highlights: true
|
|
10546
|
+
}
|
|
10547
|
+
]
|
|
10548
|
+
};
|
|
10549
|
+
|
|
10550
|
+
const searchDocuments = {
|
|
10551
|
+
__proto__: null,
|
|
10552
|
+
name: name$7,
|
|
10553
|
+
query: query$7
|
|
10554
|
+
};
|
|
10555
|
+
|
|
10556
|
+
const index$8 = {
|
|
10557
|
+
__proto__: null,
|
|
10558
|
+
SearchDocuments: searchDocuments
|
|
10559
|
+
};
|
|
10560
|
+
|
|
10362
10561
|
const name$6 = "getCurrentInstance";
|
|
10363
10562
|
const query$6 = Selector("Query")({
|
|
10364
10563
|
[name$6]: currentInstanceSelector
|
|
@@ -10470,24 +10669,25 @@ const index$6 = {
|
|
|
10470
10669
|
|
|
10471
10670
|
const index$5 = {
|
|
10472
10671
|
__proto__: null,
|
|
10473
|
-
Accounts: index$
|
|
10474
|
-
Agenda: index$
|
|
10475
|
-
Agreements: index$
|
|
10476
|
-
BlockchainExplorer: index$
|
|
10477
|
-
Branches: index$
|
|
10478
|
-
Capital: index$
|
|
10479
|
-
Chairman: index$
|
|
10480
|
-
ChatCoop: index$
|
|
10481
|
-
Desktop: index$
|
|
10482
|
-
Documents: index$
|
|
10483
|
-
Extensions: index$
|
|
10484
|
-
Gateway: index$
|
|
10485
|
-
Ledger: index$
|
|
10486
|
-
Meet: index$
|
|
10487
|
-
Notification: index$
|
|
10488
|
-
OneCoop: index$
|
|
10489
|
-
PaymentMethods: index$
|
|
10490
|
-
Registration: index$
|
|
10672
|
+
Accounts: index$q,
|
|
10673
|
+
Agenda: index$p,
|
|
10674
|
+
Agreements: index$o,
|
|
10675
|
+
BlockchainExplorer: index$n,
|
|
10676
|
+
Branches: index$m,
|
|
10677
|
+
Capital: index$l,
|
|
10678
|
+
Chairman: index$k,
|
|
10679
|
+
ChatCoop: index$j,
|
|
10680
|
+
Desktop: index$i,
|
|
10681
|
+
Documents: index$h,
|
|
10682
|
+
Extensions: index$g,
|
|
10683
|
+
Gateway: index$f,
|
|
10684
|
+
Ledger: index$e,
|
|
10685
|
+
Meet: index$d,
|
|
10686
|
+
Notification: index$c,
|
|
10687
|
+
OneCoop: index$b,
|
|
10688
|
+
PaymentMethods: index$a,
|
|
10689
|
+
Registration: index$9,
|
|
10690
|
+
Search: index$8,
|
|
10491
10691
|
System: index$7,
|
|
10492
10692
|
Wallet: index$6
|
|
10493
10693
|
};
|
|
@@ -10586,7 +10786,7 @@ const _Client = class _Client {
|
|
|
10586
10786
|
signature
|
|
10587
10787
|
}
|
|
10588
10788
|
};
|
|
10589
|
-
const { [name$
|
|
10789
|
+
const { [name$3t]: result } = await this.thunder("mutation")(
|
|
10590
10790
|
mutation$2l,
|
|
10591
10791
|
{
|
|
10592
10792
|
variables
|
|
@@ -10712,6 +10912,6 @@ exports.Classes = Classes;
|
|
|
10712
10912
|
exports.Client = Client;
|
|
10713
10913
|
exports.Mutations = Mutations;
|
|
10714
10914
|
exports.Queries = index$5;
|
|
10715
|
-
exports.Selectors = index$
|
|
10915
|
+
exports.Selectors = index$L;
|
|
10716
10916
|
exports.Types = index;
|
|
10717
|
-
exports.Zeus = index$
|
|
10917
|
+
exports.Zeus = index$M;
|