@coopenomics/sdk 2025.7.3 → 2025.7.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +588 -454
- package/dist/index.d.cts +1056 -568
- package/dist/index.d.mts +1056 -568
- package/dist/index.d.ts +1056 -568
- package/dist/index.mjs +588 -454
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -840,10 +840,14 @@ const AllTypesProps = {
|
|
|
840
840
|
},
|
|
841
841
|
CreateParentOfferInput: {},
|
|
842
842
|
CreateProjectFreeDecisionInput: {},
|
|
843
|
+
CreateSubscriptionInput: {
|
|
844
|
+
subscription: "WebPushSubscriptionDataInput"
|
|
845
|
+
},
|
|
843
846
|
CreateWithdrawInput: {
|
|
844
847
|
statement: "ReturnByMoneySignedDocumentInput"
|
|
845
848
|
},
|
|
846
849
|
DateTime: `scalar.DateTime`,
|
|
850
|
+
DeactivateSubscriptionInput: {},
|
|
847
851
|
DeclineRequestInput: {},
|
|
848
852
|
DeleteBranchInput: {},
|
|
849
853
|
DeletePaymentMethodInput: {},
|
|
@@ -873,6 +877,7 @@ const AllTypesProps = {
|
|
|
873
877
|
GetMeetInput: {},
|
|
874
878
|
GetMeetsInput: {},
|
|
875
879
|
GetPaymentMethodsInput: {},
|
|
880
|
+
GetUserSubscriptionsInput: {},
|
|
876
881
|
Init: {
|
|
877
882
|
organization_data: "CreateOrganizationDataInput",
|
|
878
883
|
vars: "VarsInput"
|
|
@@ -932,9 +937,15 @@ const AllTypesProps = {
|
|
|
932
937
|
createProjectOfFreeDecision: {
|
|
933
938
|
data: "CreateProjectFreeDecisionInput"
|
|
934
939
|
},
|
|
940
|
+
createWebPushSubscription: {
|
|
941
|
+
data: "CreateSubscriptionInput"
|
|
942
|
+
},
|
|
935
943
|
createWithdraw: {
|
|
936
944
|
input: "CreateWithdrawInput"
|
|
937
945
|
},
|
|
946
|
+
deactivateWebPushSubscriptionById: {
|
|
947
|
+
data: "DeactivateSubscriptionInput"
|
|
948
|
+
},
|
|
938
949
|
declineRequest: {
|
|
939
950
|
data: "DeclineRequestInput"
|
|
940
951
|
},
|
|
@@ -1201,6 +1212,9 @@ const AllTypesProps = {
|
|
|
1201
1212
|
data: "PaymentFiltersInput",
|
|
1202
1213
|
options: "PaginationInput"
|
|
1203
1214
|
},
|
|
1215
|
+
getUserWebPushSubscriptions: {
|
|
1216
|
+
data: "GetUserSubscriptionsInput"
|
|
1217
|
+
},
|
|
1204
1218
|
searchPrivateAccounts: {
|
|
1205
1219
|
data: "SearchPrivateAccountsInput"
|
|
1206
1220
|
}
|
|
@@ -1325,7 +1339,11 @@ const AllTypesProps = {
|
|
|
1325
1339
|
VoteOnAnnualGeneralMeetInput: {
|
|
1326
1340
|
ballot: "AnnualGeneralMeetingVotingBallotSignedDocumentInput",
|
|
1327
1341
|
votes: "VoteItemInput"
|
|
1328
|
-
}
|
|
1342
|
+
},
|
|
1343
|
+
WebPushSubscriptionDataInput: {
|
|
1344
|
+
keys: "WebPushSubscriptionKeysInput"
|
|
1345
|
+
},
|
|
1346
|
+
WebPushSubscriptionKeysInput: {}
|
|
1329
1347
|
};
|
|
1330
1348
|
const ReturnTypes = {
|
|
1331
1349
|
Account: {
|
|
@@ -1551,6 +1569,11 @@ const ReturnTypes = {
|
|
|
1551
1569
|
username: "String",
|
|
1552
1570
|
verifications: "Verification"
|
|
1553
1571
|
},
|
|
1572
|
+
CreateSubscriptionResponse: {
|
|
1573
|
+
message: "String",
|
|
1574
|
+
subscription: "WebPushSubscriptionDto",
|
|
1575
|
+
success: "Boolean"
|
|
1576
|
+
},
|
|
1554
1577
|
CreateWithdrawResponse: {
|
|
1555
1578
|
withdraw_hash: "String"
|
|
1556
1579
|
},
|
|
@@ -1810,6 +1833,8 @@ const ReturnTypes = {
|
|
|
1810
1833
|
referer: "String",
|
|
1811
1834
|
role: "String",
|
|
1812
1835
|
status: "UserStatus",
|
|
1836
|
+
subscriber_hash: "String",
|
|
1837
|
+
subscriber_id: "String",
|
|
1813
1838
|
type: "String",
|
|
1814
1839
|
username: "String"
|
|
1815
1840
|
},
|
|
@@ -1829,7 +1854,9 @@ const ReturnTypes = {
|
|
|
1829
1854
|
createInitialPayment: "GatewayPayment",
|
|
1830
1855
|
createParentOffer: "Transaction",
|
|
1831
1856
|
createProjectOfFreeDecision: "CreatedProjectFreeDecision",
|
|
1857
|
+
createWebPushSubscription: "CreateSubscriptionResponse",
|
|
1832
1858
|
createWithdraw: "CreateWithdrawResponse",
|
|
1859
|
+
deactivateWebPushSubscriptionById: "Boolean",
|
|
1833
1860
|
declineRequest: "Transaction",
|
|
1834
1861
|
deleteBranch: "Boolean",
|
|
1835
1862
|
deletePaymentMethod: "Boolean",
|
|
@@ -2021,6 +2048,8 @@ const ReturnTypes = {
|
|
|
2021
2048
|
getPaymentMethods: "PaymentMethodPaginationResult",
|
|
2022
2049
|
getPayments: "PaginatedGatewayPaymentsPaginationResult",
|
|
2023
2050
|
getSystemInfo: "SystemInfo",
|
|
2051
|
+
getUserWebPushSubscriptions: "WebPushSubscriptionDto",
|
|
2052
|
+
getWebPushSubscriptionStats: "SubscriptionStatsDto",
|
|
2024
2053
|
searchPrivateAccounts: "PrivateAccountSearchResult"
|
|
2025
2054
|
},
|
|
2026
2055
|
Question: {
|
|
@@ -2107,6 +2136,12 @@ const ReturnTypes = {
|
|
|
2107
2136
|
action: "ExtendedBlockchainAction",
|
|
2108
2137
|
documentAggregate: "DocumentAggregate"
|
|
2109
2138
|
},
|
|
2139
|
+
SubscriptionStatsDto: {
|
|
2140
|
+
active: "Int",
|
|
2141
|
+
inactive: "Int",
|
|
2142
|
+
total: "Int",
|
|
2143
|
+
uniqueUsers: "Int"
|
|
2144
|
+
},
|
|
2110
2145
|
SystemInfo: {
|
|
2111
2146
|
blockchain_account: "BlockchainAccount",
|
|
2112
2147
|
blockchain_info: "BlockchainInfoDTO",
|
|
@@ -2181,6 +2216,17 @@ const ReturnTypes = {
|
|
|
2181
2216
|
WaitWeight: {
|
|
2182
2217
|
wait_sec: "Int",
|
|
2183
2218
|
weight: "Int"
|
|
2219
|
+
},
|
|
2220
|
+
WebPushSubscriptionDto: {
|
|
2221
|
+
authKey: "String",
|
|
2222
|
+
createdAt: "DateTime",
|
|
2223
|
+
endpoint: "String",
|
|
2224
|
+
id: "String",
|
|
2225
|
+
isActive: "Boolean",
|
|
2226
|
+
p256dhKey: "String",
|
|
2227
|
+
updatedAt: "DateTime",
|
|
2228
|
+
userAgent: "String",
|
|
2229
|
+
username: "String"
|
|
2184
2230
|
}
|
|
2185
2231
|
};
|
|
2186
2232
|
const Ops = {
|
|
@@ -2774,7 +2820,7 @@ var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
|
|
|
2774
2820
|
return UserStatus2;
|
|
2775
2821
|
})(UserStatus || {});
|
|
2776
2822
|
|
|
2777
|
-
const index$
|
|
2823
|
+
const index$v = {
|
|
2778
2824
|
__proto__: null,
|
|
2779
2825
|
$: $,
|
|
2780
2826
|
AccountType: AccountType,
|
|
@@ -2900,7 +2946,9 @@ const rawMonoAccountSelector = {
|
|
|
2900
2946
|
role: true,
|
|
2901
2947
|
status: true,
|
|
2902
2948
|
type: true,
|
|
2903
|
-
username: true
|
|
2949
|
+
username: true,
|
|
2950
|
+
subscriber_id: true,
|
|
2951
|
+
subscriber_hash: true
|
|
2904
2952
|
};
|
|
2905
2953
|
Selector("MonoAccount")(
|
|
2906
2954
|
rawMonoAccountSelector
|
|
@@ -3152,37 +3200,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
|
|
|
3152
3200
|
rawRegisteredAccountSelector
|
|
3153
3201
|
);
|
|
3154
3202
|
|
|
3155
|
-
const name$
|
|
3156
|
-
const mutation$
|
|
3157
|
-
[name$
|
|
3203
|
+
const name$1v = "registerAccount";
|
|
3204
|
+
const mutation$1f = Selector("Mutation")({
|
|
3205
|
+
[name$1v]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
|
|
3158
3206
|
});
|
|
3159
3207
|
|
|
3160
3208
|
const registerAccount = {
|
|
3161
3209
|
__proto__: null,
|
|
3162
|
-
mutation: mutation$
|
|
3163
|
-
name: name$
|
|
3210
|
+
mutation: mutation$1f,
|
|
3211
|
+
name: name$1v
|
|
3164
3212
|
};
|
|
3165
3213
|
|
|
3166
|
-
const name$
|
|
3167
|
-
const mutation$
|
|
3168
|
-
[name$
|
|
3214
|
+
const name$1u = "resetKey";
|
|
3215
|
+
const mutation$1e = Selector("Mutation")({
|
|
3216
|
+
[name$1u]: [{ data: $("data", "ResetKeyInput!") }, true]
|
|
3169
3217
|
});
|
|
3170
3218
|
|
|
3171
3219
|
const resetKey = {
|
|
3172
3220
|
__proto__: null,
|
|
3173
|
-
mutation: mutation$
|
|
3174
|
-
name: name$
|
|
3221
|
+
mutation: mutation$1e,
|
|
3222
|
+
name: name$1u
|
|
3175
3223
|
};
|
|
3176
3224
|
|
|
3177
|
-
const name$
|
|
3178
|
-
const mutation$
|
|
3179
|
-
[name$
|
|
3225
|
+
const name$1t = "startResetKey";
|
|
3226
|
+
const mutation$1d = Selector("Mutation")({
|
|
3227
|
+
[name$1t]: [{ data: $("data", "StartResetKeyInput!") }, true]
|
|
3180
3228
|
});
|
|
3181
3229
|
|
|
3182
3230
|
const startResetKey = {
|
|
3183
3231
|
__proto__: null,
|
|
3184
|
-
mutation: mutation$
|
|
3185
|
-
name: name$
|
|
3232
|
+
mutation: mutation$1d,
|
|
3233
|
+
name: name$1t
|
|
3186
3234
|
};
|
|
3187
3235
|
|
|
3188
3236
|
const paginationSelector = {
|
|
@@ -3503,6 +3551,34 @@ const rawMeetAggregateSelector = {
|
|
|
3503
3551
|
};
|
|
3504
3552
|
const meetAggregateSelector = Selector("MeetAggregate")(rawMeetAggregateSelector);
|
|
3505
3553
|
|
|
3554
|
+
const rawWebPushSubscriptionSelector = {
|
|
3555
|
+
id: true,
|
|
3556
|
+
username: true,
|
|
3557
|
+
endpoint: true,
|
|
3558
|
+
p256dhKey: true,
|
|
3559
|
+
authKey: true,
|
|
3560
|
+
userAgent: true,
|
|
3561
|
+
isActive: true,
|
|
3562
|
+
createdAt: true,
|
|
3563
|
+
updatedAt: true
|
|
3564
|
+
};
|
|
3565
|
+
Selector("WebPushSubscriptionDto")(rawWebPushSubscriptionSelector);
|
|
3566
|
+
|
|
3567
|
+
const rawCreateSubscriptionResponseSelector = {
|
|
3568
|
+
success: true,
|
|
3569
|
+
message: true,
|
|
3570
|
+
subscription: rawWebPushSubscriptionSelector
|
|
3571
|
+
};
|
|
3572
|
+
Selector("CreateSubscriptionResponse")(rawCreateSubscriptionResponseSelector);
|
|
3573
|
+
|
|
3574
|
+
const rawSubscriptionStatsSelector = {
|
|
3575
|
+
total: true,
|
|
3576
|
+
active: true,
|
|
3577
|
+
inactive: true,
|
|
3578
|
+
uniqueUsers: true
|
|
3579
|
+
};
|
|
3580
|
+
Selector("SubscriptionStatsDto")(rawSubscriptionStatsSelector);
|
|
3581
|
+
|
|
3506
3582
|
const rawPaymentMethodSelector = {
|
|
3507
3583
|
data: {
|
|
3508
3584
|
"__typename": true,
|
|
@@ -3637,18 +3713,18 @@ const rawCreateWithdrawResponseSelector = {
|
|
|
3637
3713
|
};
|
|
3638
3714
|
const createWithdrawResponseSelector = Selector("CreateWithdrawResponse")(rawCreateWithdrawResponseSelector);
|
|
3639
3715
|
|
|
3640
|
-
const name$
|
|
3641
|
-
const mutation$
|
|
3642
|
-
[name$
|
|
3716
|
+
const name$1s = "updateAccount";
|
|
3717
|
+
const mutation$1c = Selector("Mutation")({
|
|
3718
|
+
[name$1s]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
|
|
3643
3719
|
});
|
|
3644
3720
|
|
|
3645
3721
|
const updateAccount = {
|
|
3646
3722
|
__proto__: null,
|
|
3647
|
-
mutation: mutation$
|
|
3648
|
-
name: name$
|
|
3723
|
+
mutation: mutation$1c,
|
|
3724
|
+
name: name$1s
|
|
3649
3725
|
};
|
|
3650
3726
|
|
|
3651
|
-
const index$
|
|
3727
|
+
const index$u = {
|
|
3652
3728
|
__proto__: null,
|
|
3653
3729
|
RegisterAccount: registerAccount,
|
|
3654
3730
|
ResetKey: resetKey,
|
|
@@ -3656,51 +3732,51 @@ const index$s = {
|
|
|
3656
3732
|
UpdateAccount: updateAccount
|
|
3657
3733
|
};
|
|
3658
3734
|
|
|
3659
|
-
const name$
|
|
3660
|
-
const mutation$
|
|
3661
|
-
[name$
|
|
3735
|
+
const name$1r = "generatePrivacyAgreement";
|
|
3736
|
+
const mutation$1b = Selector("Mutation")({
|
|
3737
|
+
[name$1r]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3662
3738
|
});
|
|
3663
3739
|
|
|
3664
3740
|
const generatePrivacyAgreement = {
|
|
3665
3741
|
__proto__: null,
|
|
3666
|
-
mutation: mutation$
|
|
3667
|
-
name: name$
|
|
3742
|
+
mutation: mutation$1b,
|
|
3743
|
+
name: name$1r
|
|
3668
3744
|
};
|
|
3669
3745
|
|
|
3670
|
-
const name$
|
|
3671
|
-
const mutation$
|
|
3672
|
-
[name$
|
|
3746
|
+
const name$1q = "generateSignatureAgreement";
|
|
3747
|
+
const mutation$1a = Selector("Mutation")({
|
|
3748
|
+
[name$1q]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3673
3749
|
});
|
|
3674
3750
|
|
|
3675
3751
|
const generateSignatureAgreement = {
|
|
3676
3752
|
__proto__: null,
|
|
3677
|
-
mutation: mutation$
|
|
3678
|
-
name: name$
|
|
3753
|
+
mutation: mutation$1a,
|
|
3754
|
+
name: name$1q
|
|
3679
3755
|
};
|
|
3680
3756
|
|
|
3681
|
-
const name$
|
|
3682
|
-
const mutation$
|
|
3683
|
-
[name$
|
|
3757
|
+
const name$1p = "generateWalletAgreement";
|
|
3758
|
+
const mutation$19 = Selector("Mutation")({
|
|
3759
|
+
[name$1p]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3684
3760
|
});
|
|
3685
3761
|
|
|
3686
3762
|
const generateWalletAgreement = {
|
|
3687
3763
|
__proto__: null,
|
|
3688
|
-
mutation: mutation$
|
|
3689
|
-
name: name$
|
|
3764
|
+
mutation: mutation$19,
|
|
3765
|
+
name: name$1p
|
|
3690
3766
|
};
|
|
3691
3767
|
|
|
3692
|
-
const name$
|
|
3693
|
-
const mutation$
|
|
3694
|
-
[name$
|
|
3768
|
+
const name$1o = "generateUserAgreement";
|
|
3769
|
+
const mutation$18 = Selector("Mutation")({
|
|
3770
|
+
[name$1o]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3695
3771
|
});
|
|
3696
3772
|
|
|
3697
3773
|
const generateUserAgreement = {
|
|
3698
3774
|
__proto__: null,
|
|
3699
|
-
mutation: mutation$
|
|
3700
|
-
name: name$
|
|
3775
|
+
mutation: mutation$18,
|
|
3776
|
+
name: name$1o
|
|
3701
3777
|
};
|
|
3702
3778
|
|
|
3703
|
-
const index$
|
|
3779
|
+
const index$t = {
|
|
3704
3780
|
__proto__: null,
|
|
3705
3781
|
GeneratePrivacyAgreement: generatePrivacyAgreement,
|
|
3706
3782
|
GenerateSignatureAgreement: generateSignatureAgreement,
|
|
@@ -3708,124 +3784,124 @@ const index$r = {
|
|
|
3708
3784
|
GenerateWalletAgreement: generateWalletAgreement
|
|
3709
3785
|
};
|
|
3710
3786
|
|
|
3711
|
-
const name$
|
|
3712
|
-
const mutation$
|
|
3713
|
-
[name$
|
|
3787
|
+
const name$1n = "refresh";
|
|
3788
|
+
const mutation$17 = Selector("Mutation")({
|
|
3789
|
+
[name$1n]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
|
|
3714
3790
|
});
|
|
3715
3791
|
|
|
3716
3792
|
const refresh = {
|
|
3717
3793
|
__proto__: null,
|
|
3718
|
-
mutation: mutation$
|
|
3719
|
-
name: name$
|
|
3794
|
+
mutation: mutation$17,
|
|
3795
|
+
name: name$1n
|
|
3720
3796
|
};
|
|
3721
3797
|
|
|
3722
|
-
const name$
|
|
3723
|
-
const mutation$
|
|
3724
|
-
[name$
|
|
3798
|
+
const name$1m = "logout";
|
|
3799
|
+
const mutation$16 = Selector("Mutation")({
|
|
3800
|
+
[name$1m]: [{ data: $("data", "LogoutInput!") }, true]
|
|
3725
3801
|
});
|
|
3726
3802
|
|
|
3727
3803
|
const logout = {
|
|
3728
3804
|
__proto__: null,
|
|
3729
|
-
mutation: mutation$
|
|
3730
|
-
name: name$
|
|
3805
|
+
mutation: mutation$16,
|
|
3806
|
+
name: name$1m
|
|
3731
3807
|
};
|
|
3732
3808
|
|
|
3733
|
-
const name$
|
|
3734
|
-
const mutation$
|
|
3735
|
-
[name$
|
|
3809
|
+
const name$1l = "login";
|
|
3810
|
+
const mutation$15 = Selector("Mutation")({
|
|
3811
|
+
[name$1l]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
|
|
3736
3812
|
});
|
|
3737
3813
|
|
|
3738
3814
|
const login = {
|
|
3739
3815
|
__proto__: null,
|
|
3740
|
-
mutation: mutation$
|
|
3741
|
-
name: name$
|
|
3816
|
+
mutation: mutation$15,
|
|
3817
|
+
name: name$1l
|
|
3742
3818
|
};
|
|
3743
3819
|
|
|
3744
|
-
const index$
|
|
3820
|
+
const index$s = {
|
|
3745
3821
|
__proto__: null,
|
|
3746
3822
|
Login: login,
|
|
3747
3823
|
Logout: logout,
|
|
3748
3824
|
Refresh: refresh
|
|
3749
3825
|
};
|
|
3750
3826
|
|
|
3751
|
-
const name$
|
|
3752
|
-
const mutation$
|
|
3753
|
-
[name$
|
|
3827
|
+
const name$1k = "addTrustedAccount";
|
|
3828
|
+
const mutation$14 = Selector("Mutation")({
|
|
3829
|
+
[name$1k]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
|
|
3754
3830
|
});
|
|
3755
3831
|
|
|
3756
3832
|
const addTrustedAccount = {
|
|
3757
3833
|
__proto__: null,
|
|
3758
|
-
mutation: mutation$
|
|
3759
|
-
name: name$
|
|
3834
|
+
mutation: mutation$14,
|
|
3835
|
+
name: name$1k
|
|
3760
3836
|
};
|
|
3761
3837
|
|
|
3762
|
-
const name$
|
|
3763
|
-
const mutation$
|
|
3764
|
-
[name$
|
|
3838
|
+
const name$1j = "createBranch";
|
|
3839
|
+
const mutation$13 = Selector("Mutation")({
|
|
3840
|
+
[name$1j]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
|
|
3765
3841
|
});
|
|
3766
3842
|
|
|
3767
3843
|
const createBranch = {
|
|
3768
3844
|
__proto__: null,
|
|
3769
|
-
mutation: mutation$
|
|
3770
|
-
name: name$
|
|
3845
|
+
mutation: mutation$13,
|
|
3846
|
+
name: name$1j
|
|
3771
3847
|
};
|
|
3772
3848
|
|
|
3773
|
-
const name$
|
|
3774
|
-
const mutation$
|
|
3775
|
-
[name$
|
|
3849
|
+
const name$1i = "deleteBranch";
|
|
3850
|
+
const mutation$12 = Selector("Mutation")({
|
|
3851
|
+
[name$1i]: [{ data: $("data", "DeleteBranchInput!") }, true]
|
|
3776
3852
|
});
|
|
3777
3853
|
|
|
3778
3854
|
const deleteBranch = {
|
|
3779
3855
|
__proto__: null,
|
|
3780
|
-
mutation: mutation$
|
|
3781
|
-
name: name$
|
|
3856
|
+
mutation: mutation$12,
|
|
3857
|
+
name: name$1i
|
|
3782
3858
|
};
|
|
3783
3859
|
|
|
3784
|
-
const name$
|
|
3785
|
-
const mutation
|
|
3786
|
-
[name$
|
|
3860
|
+
const name$1h = "deleteTrustedAccount";
|
|
3861
|
+
const mutation$11 = Selector("Mutation")({
|
|
3862
|
+
[name$1h]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
|
|
3787
3863
|
});
|
|
3788
3864
|
|
|
3789
3865
|
const deleteTrustedAccount = {
|
|
3790
3866
|
__proto__: null,
|
|
3791
|
-
mutation: mutation
|
|
3792
|
-
name: name$
|
|
3867
|
+
mutation: mutation$11,
|
|
3868
|
+
name: name$1h
|
|
3793
3869
|
};
|
|
3794
3870
|
|
|
3795
|
-
const name$
|
|
3796
|
-
const mutation$
|
|
3797
|
-
[name$
|
|
3871
|
+
const name$1g = "editBranch";
|
|
3872
|
+
const mutation$10 = Selector("Mutation")({
|
|
3873
|
+
[name$1g]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
|
|
3798
3874
|
});
|
|
3799
3875
|
|
|
3800
3876
|
const editBranch = {
|
|
3801
3877
|
__proto__: null,
|
|
3802
|
-
mutation: mutation$
|
|
3803
|
-
name: name$
|
|
3878
|
+
mutation: mutation$10,
|
|
3879
|
+
name: name$1g
|
|
3804
3880
|
};
|
|
3805
3881
|
|
|
3806
|
-
const name$
|
|
3807
|
-
const mutation
|
|
3808
|
-
[name$
|
|
3882
|
+
const name$1f = "generateSelectBranchDocument";
|
|
3883
|
+
const mutation$$ = Selector("Mutation")({
|
|
3884
|
+
[name$1f]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3809
3885
|
});
|
|
3810
3886
|
|
|
3811
3887
|
const generateSelectBranchDocument = {
|
|
3812
3888
|
__proto__: null,
|
|
3813
|
-
mutation: mutation
|
|
3814
|
-
name: name$
|
|
3889
|
+
mutation: mutation$$,
|
|
3890
|
+
name: name$1f
|
|
3815
3891
|
};
|
|
3816
3892
|
|
|
3817
|
-
const name$
|
|
3818
|
-
const mutation$
|
|
3819
|
-
[name$
|
|
3893
|
+
const name$1e = "selectBranch";
|
|
3894
|
+
const mutation$_ = Selector("Mutation")({
|
|
3895
|
+
[name$1e]: [{ data: $("data", "SelectBranchInput!") }, true]
|
|
3820
3896
|
});
|
|
3821
3897
|
|
|
3822
3898
|
const selectBranch = {
|
|
3823
3899
|
__proto__: null,
|
|
3824
|
-
mutation: mutation$
|
|
3825
|
-
name: name$
|
|
3900
|
+
mutation: mutation$_,
|
|
3901
|
+
name: name$1e
|
|
3826
3902
|
};
|
|
3827
3903
|
|
|
3828
|
-
const index$
|
|
3904
|
+
const index$r = {
|
|
3829
3905
|
__proto__: null,
|
|
3830
3906
|
AddTrustedAccount: addTrustedAccount,
|
|
3831
3907
|
CreateBranch: createBranch,
|
|
@@ -3836,260 +3912,260 @@ const index$p = {
|
|
|
3836
3912
|
SelectBranch: selectBranch
|
|
3837
3913
|
};
|
|
3838
3914
|
|
|
3839
|
-
const name$
|
|
3840
|
-
const mutation$
|
|
3841
|
-
[name$
|
|
3915
|
+
const name$1d = "acceptChildOrder";
|
|
3916
|
+
const mutation$Z = Selector("Mutation")({
|
|
3917
|
+
[name$1d]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
|
|
3842
3918
|
});
|
|
3843
3919
|
|
|
3844
3920
|
const acceptChildOrder = {
|
|
3921
|
+
__proto__: null,
|
|
3922
|
+
mutation: mutation$Z,
|
|
3923
|
+
name: name$1d
|
|
3924
|
+
};
|
|
3925
|
+
|
|
3926
|
+
const name$1c = "cancelRequest";
|
|
3927
|
+
const mutation$Y = Selector("Mutation")({
|
|
3928
|
+
[name$1c]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
|
|
3929
|
+
});
|
|
3930
|
+
|
|
3931
|
+
const cancelRequest = {
|
|
3932
|
+
__proto__: null,
|
|
3933
|
+
mutation: mutation$Y,
|
|
3934
|
+
name: name$1c
|
|
3935
|
+
};
|
|
3936
|
+
|
|
3937
|
+
const name$1b = "confirmReceiveOnRequest";
|
|
3938
|
+
const mutation$X = Selector("Mutation")({
|
|
3939
|
+
[name$1b]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
3940
|
+
});
|
|
3941
|
+
|
|
3942
|
+
const completeReceiveOnRequest = {
|
|
3845
3943
|
__proto__: null,
|
|
3846
3944
|
mutation: mutation$X,
|
|
3847
|
-
name: name$
|
|
3945
|
+
name: name$1b
|
|
3848
3946
|
};
|
|
3849
3947
|
|
|
3850
|
-
const name$
|
|
3948
|
+
const name$1a = "completeRequest";
|
|
3851
3949
|
const mutation$W = Selector("Mutation")({
|
|
3852
|
-
[name$
|
|
3950
|
+
[name$1a]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
|
|
3853
3951
|
});
|
|
3854
3952
|
|
|
3855
|
-
const
|
|
3953
|
+
const completeRequest = {
|
|
3856
3954
|
__proto__: null,
|
|
3857
3955
|
mutation: mutation$W,
|
|
3858
|
-
name: name$
|
|
3956
|
+
name: name$1a
|
|
3859
3957
|
};
|
|
3860
3958
|
|
|
3861
|
-
const name$
|
|
3959
|
+
const name$19 = "confirmSupplyOnRequest";
|
|
3862
3960
|
const mutation$V = Selector("Mutation")({
|
|
3863
|
-
[name$
|
|
3961
|
+
[name$19]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
|
|
3864
3962
|
});
|
|
3865
3963
|
|
|
3866
|
-
const
|
|
3964
|
+
const confirmSupplyOnRequest = {
|
|
3867
3965
|
__proto__: null,
|
|
3868
3966
|
mutation: mutation$V,
|
|
3869
|
-
name: name$
|
|
3967
|
+
name: name$19
|
|
3870
3968
|
};
|
|
3871
3969
|
|
|
3872
|
-
const name$
|
|
3970
|
+
const name$18 = "createChildOrder";
|
|
3873
3971
|
const mutation$U = Selector("Mutation")({
|
|
3874
|
-
[name$
|
|
3972
|
+
[name$18]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
|
|
3875
3973
|
});
|
|
3876
3974
|
|
|
3877
|
-
const
|
|
3975
|
+
const createChildOrder = {
|
|
3878
3976
|
__proto__: null,
|
|
3879
3977
|
mutation: mutation$U,
|
|
3880
|
-
name: name$
|
|
3978
|
+
name: name$18
|
|
3881
3979
|
};
|
|
3882
3980
|
|
|
3883
|
-
const name$
|
|
3981
|
+
const name$17 = "createParentOffer";
|
|
3884
3982
|
const mutation$T = Selector("Mutation")({
|
|
3885
|
-
[name$
|
|
3983
|
+
[name$17]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
|
|
3886
3984
|
});
|
|
3887
3985
|
|
|
3888
|
-
const
|
|
3986
|
+
const createParentOffer = {
|
|
3889
3987
|
__proto__: null,
|
|
3890
3988
|
mutation: mutation$T,
|
|
3891
|
-
name: name$
|
|
3989
|
+
name: name$17
|
|
3892
3990
|
};
|
|
3893
3991
|
|
|
3894
|
-
const name$
|
|
3992
|
+
const name$16 = "declineRequest";
|
|
3895
3993
|
const mutation$S = Selector("Mutation")({
|
|
3896
|
-
[name$
|
|
3994
|
+
[name$16]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
|
|
3897
3995
|
});
|
|
3898
3996
|
|
|
3899
|
-
const
|
|
3997
|
+
const declineRequest = {
|
|
3900
3998
|
__proto__: null,
|
|
3901
3999
|
mutation: mutation$S,
|
|
3902
|
-
name: name$
|
|
4000
|
+
name: name$16
|
|
3903
4001
|
};
|
|
3904
4002
|
|
|
3905
|
-
const name$
|
|
4003
|
+
const name$15 = "deliverOnRequest";
|
|
3906
4004
|
const mutation$R = Selector("Mutation")({
|
|
3907
|
-
[name$
|
|
4005
|
+
[name$15]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
|
|
3908
4006
|
});
|
|
3909
4007
|
|
|
3910
|
-
const
|
|
4008
|
+
const deliverOnRequest = {
|
|
3911
4009
|
__proto__: null,
|
|
3912
4010
|
mutation: mutation$R,
|
|
3913
|
-
name: name$
|
|
4011
|
+
name: name$15
|
|
3914
4012
|
};
|
|
3915
4013
|
|
|
3916
|
-
const name$
|
|
4014
|
+
const name$14 = "disputeOnRequest";
|
|
3917
4015
|
const mutation$Q = Selector("Mutation")({
|
|
3918
|
-
[name$
|
|
4016
|
+
[name$14]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
|
|
3919
4017
|
});
|
|
3920
4018
|
|
|
3921
|
-
const
|
|
4019
|
+
const disputeOnRequest = {
|
|
3922
4020
|
__proto__: null,
|
|
3923
4021
|
mutation: mutation$Q,
|
|
3924
|
-
name: name$
|
|
4022
|
+
name: name$14
|
|
3925
4023
|
};
|
|
3926
4024
|
|
|
3927
|
-
const name$
|
|
4025
|
+
const name$13 = "generateAssetContributionAct";
|
|
3928
4026
|
const mutation$P = Selector("Mutation")({
|
|
3929
|
-
[name$
|
|
4027
|
+
[name$13]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3930
4028
|
});
|
|
3931
4029
|
|
|
3932
|
-
const
|
|
4030
|
+
const generateAssetContributionAct = {
|
|
3933
4031
|
__proto__: null,
|
|
3934
4032
|
mutation: mutation$P,
|
|
3935
|
-
name: name$
|
|
4033
|
+
name: name$13
|
|
3936
4034
|
};
|
|
3937
4035
|
|
|
3938
|
-
const name$
|
|
4036
|
+
const name$12 = "generateAssetContributionDecision";
|
|
3939
4037
|
const mutation$O = Selector("Mutation")({
|
|
3940
|
-
[name$
|
|
4038
|
+
[name$12]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3941
4039
|
});
|
|
3942
4040
|
|
|
3943
|
-
const
|
|
4041
|
+
const generateAssetContributionDecision = {
|
|
3944
4042
|
__proto__: null,
|
|
3945
4043
|
mutation: mutation$O,
|
|
3946
|
-
name: name$
|
|
4044
|
+
name: name$12
|
|
3947
4045
|
};
|
|
3948
4046
|
|
|
3949
|
-
const name
|
|
4047
|
+
const name$11 = "generateAssetContributionStatement";
|
|
3950
4048
|
const mutation$N = Selector("Mutation")({
|
|
3951
|
-
[name
|
|
4049
|
+
[name$11]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3952
4050
|
});
|
|
3953
4051
|
|
|
3954
|
-
const
|
|
4052
|
+
const generateAssetContributionStatement = {
|
|
3955
4053
|
__proto__: null,
|
|
3956
4054
|
mutation: mutation$N,
|
|
3957
|
-
name: name
|
|
4055
|
+
name: name$11
|
|
3958
4056
|
};
|
|
3959
4057
|
|
|
3960
|
-
const name$
|
|
4058
|
+
const name$10 = "generateReturnByAssetAct";
|
|
3961
4059
|
const mutation$M = Selector("Mutation")({
|
|
3962
|
-
[name$
|
|
4060
|
+
[name$10]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3963
4061
|
});
|
|
3964
4062
|
|
|
3965
|
-
const
|
|
4063
|
+
const generateReturnByAssetAct = {
|
|
3966
4064
|
__proto__: null,
|
|
3967
4065
|
mutation: mutation$M,
|
|
3968
|
-
name: name$
|
|
4066
|
+
name: name$10
|
|
3969
4067
|
};
|
|
3970
4068
|
|
|
3971
|
-
const name
|
|
4069
|
+
const name$$ = "generateReturnByAssetDecision";
|
|
3972
4070
|
const mutation$L = Selector("Mutation")({
|
|
3973
|
-
[name
|
|
4071
|
+
[name$$]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3974
4072
|
});
|
|
3975
4073
|
|
|
3976
|
-
const
|
|
4074
|
+
const generateReturnByAssetDecision = {
|
|
3977
4075
|
__proto__: null,
|
|
3978
4076
|
mutation: mutation$L,
|
|
3979
|
-
name: name
|
|
4077
|
+
name: name$$
|
|
3980
4078
|
};
|
|
3981
4079
|
|
|
3982
|
-
const name$
|
|
4080
|
+
const name$_ = "generateReturnByAssetStatement";
|
|
3983
4081
|
const mutation$K = Selector("Mutation")({
|
|
3984
|
-
[name$
|
|
4082
|
+
[name$_]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3985
4083
|
});
|
|
3986
4084
|
|
|
3987
|
-
const
|
|
4085
|
+
const generateReturnByAssetStatement = {
|
|
3988
4086
|
__proto__: null,
|
|
3989
4087
|
mutation: mutation$K,
|
|
3990
|
-
name: name$
|
|
4088
|
+
name: name$_
|
|
3991
4089
|
};
|
|
3992
4090
|
|
|
3993
|
-
const name$
|
|
4091
|
+
const name$Z = "moderateRequest";
|
|
3994
4092
|
const mutation$J = Selector("Mutation")({
|
|
3995
|
-
[name$
|
|
4093
|
+
[name$Z]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
|
|
3996
4094
|
});
|
|
3997
4095
|
|
|
3998
|
-
const
|
|
4096
|
+
const moderateRequest = {
|
|
3999
4097
|
__proto__: null,
|
|
4000
4098
|
mutation: mutation$J,
|
|
4001
|
-
name: name$
|
|
4099
|
+
name: name$Z
|
|
4002
4100
|
};
|
|
4003
4101
|
|
|
4004
|
-
const name$
|
|
4102
|
+
const name$Y = "prohibitRequest";
|
|
4005
4103
|
const mutation$I = Selector("Mutation")({
|
|
4006
|
-
[name$
|
|
4104
|
+
[name$Y]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
|
|
4007
4105
|
});
|
|
4008
4106
|
|
|
4009
|
-
const
|
|
4107
|
+
const prohibitRequest = {
|
|
4010
4108
|
__proto__: null,
|
|
4011
4109
|
mutation: mutation$I,
|
|
4012
|
-
name: name$
|
|
4110
|
+
name: name$Y
|
|
4013
4111
|
};
|
|
4014
4112
|
|
|
4015
|
-
const name$
|
|
4113
|
+
const name$X = "publishRequest";
|
|
4016
4114
|
const mutation$H = Selector("Mutation")({
|
|
4017
|
-
[name$
|
|
4115
|
+
[name$X]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
|
|
4018
4116
|
});
|
|
4019
4117
|
|
|
4020
|
-
const
|
|
4118
|
+
const publishRequest = {
|
|
4021
4119
|
__proto__: null,
|
|
4022
4120
|
mutation: mutation$H,
|
|
4023
|
-
name: name$
|
|
4121
|
+
name: name$X
|
|
4024
4122
|
};
|
|
4025
4123
|
|
|
4026
|
-
const name$
|
|
4124
|
+
const name$W = "receiveOnRequest";
|
|
4027
4125
|
const mutation$G = Selector("Mutation")({
|
|
4028
|
-
[name$
|
|
4126
|
+
[name$W]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
4029
4127
|
});
|
|
4030
4128
|
|
|
4031
|
-
const
|
|
4129
|
+
const receiveOnRequest = {
|
|
4032
4130
|
__proto__: null,
|
|
4033
4131
|
mutation: mutation$G,
|
|
4034
|
-
name: name$
|
|
4132
|
+
name: name$W
|
|
4035
4133
|
};
|
|
4036
4134
|
|
|
4037
|
-
const name$
|
|
4135
|
+
const name$V = "supplyOnRequest";
|
|
4038
4136
|
const mutation$F = Selector("Mutation")({
|
|
4039
|
-
[name$
|
|
4137
|
+
[name$V]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
|
|
4040
4138
|
});
|
|
4041
4139
|
|
|
4042
|
-
const
|
|
4140
|
+
const supplyOnRequest = {
|
|
4043
4141
|
__proto__: null,
|
|
4044
4142
|
mutation: mutation$F,
|
|
4045
|
-
name: name$
|
|
4143
|
+
name: name$V
|
|
4046
4144
|
};
|
|
4047
4145
|
|
|
4048
|
-
const name$
|
|
4146
|
+
const name$U = "unpublishRequest";
|
|
4049
4147
|
const mutation$E = Selector("Mutation")({
|
|
4050
|
-
[name$
|
|
4148
|
+
[name$U]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
4051
4149
|
});
|
|
4052
4150
|
|
|
4053
|
-
const
|
|
4151
|
+
const unpublishRequest = {
|
|
4054
4152
|
__proto__: null,
|
|
4055
4153
|
mutation: mutation$E,
|
|
4056
|
-
name: name$
|
|
4154
|
+
name: name$U
|
|
4057
4155
|
};
|
|
4058
4156
|
|
|
4059
|
-
const name$
|
|
4157
|
+
const name$T = "updateRequest";
|
|
4060
4158
|
const mutation$D = Selector("Mutation")({
|
|
4061
|
-
[name$
|
|
4062
|
-
});
|
|
4063
|
-
|
|
4064
|
-
const supplyOnRequest = {
|
|
4065
|
-
__proto__: null,
|
|
4066
|
-
mutation: mutation$D,
|
|
4067
|
-
name: name$R
|
|
4068
|
-
};
|
|
4069
|
-
|
|
4070
|
-
const name$Q = "unpublishRequest";
|
|
4071
|
-
const mutation$C = Selector("Mutation")({
|
|
4072
|
-
[name$Q]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
4073
|
-
});
|
|
4074
|
-
|
|
4075
|
-
const unpublishRequest = {
|
|
4076
|
-
__proto__: null,
|
|
4077
|
-
mutation: mutation$C,
|
|
4078
|
-
name: name$Q
|
|
4079
|
-
};
|
|
4080
|
-
|
|
4081
|
-
const name$P = "updateRequest";
|
|
4082
|
-
const mutation$B = Selector("Mutation")({
|
|
4083
|
-
[name$P]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
4159
|
+
[name$T]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
4084
4160
|
});
|
|
4085
4161
|
|
|
4086
4162
|
const updateRequest = {
|
|
4087
4163
|
__proto__: null,
|
|
4088
|
-
mutation: mutation$
|
|
4089
|
-
name: name$
|
|
4164
|
+
mutation: mutation$D,
|
|
4165
|
+
name: name$T
|
|
4090
4166
|
};
|
|
4091
4167
|
|
|
4092
|
-
const index$
|
|
4168
|
+
const index$q = {
|
|
4093
4169
|
__proto__: null,
|
|
4094
4170
|
AcceptChildOrder: acceptChildOrder,
|
|
4095
4171
|
CancelRequest: cancelRequest,
|
|
@@ -4116,91 +4192,91 @@ const index$o = {
|
|
|
4116
4192
|
UpdateRequest: updateRequest
|
|
4117
4193
|
};
|
|
4118
4194
|
|
|
4119
|
-
const name$
|
|
4120
|
-
const mutation$
|
|
4121
|
-
[name$
|
|
4195
|
+
const name$S = "installExtension";
|
|
4196
|
+
const mutation$C = Selector("Mutation")({
|
|
4197
|
+
[name$S]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
4122
4198
|
});
|
|
4123
4199
|
|
|
4124
4200
|
const installExtension = {
|
|
4125
4201
|
__proto__: null,
|
|
4126
|
-
mutation: mutation$
|
|
4127
|
-
name: name$
|
|
4202
|
+
mutation: mutation$C,
|
|
4203
|
+
name: name$S
|
|
4128
4204
|
};
|
|
4129
4205
|
|
|
4130
|
-
const name$
|
|
4131
|
-
const mutation$
|
|
4132
|
-
[name$
|
|
4206
|
+
const name$R = "uninstallExtension";
|
|
4207
|
+
const mutation$B = Selector("Mutation")({
|
|
4208
|
+
[name$R]: [{ data: $("data", "UninstallExtensionInput!") }, true]
|
|
4133
4209
|
});
|
|
4134
4210
|
|
|
4135
4211
|
const uninstallExtension = {
|
|
4136
4212
|
__proto__: null,
|
|
4137
|
-
mutation: mutation$
|
|
4138
|
-
name: name$
|
|
4213
|
+
mutation: mutation$B,
|
|
4214
|
+
name: name$R
|
|
4139
4215
|
};
|
|
4140
4216
|
|
|
4141
|
-
const name$
|
|
4142
|
-
const mutation$
|
|
4143
|
-
[name$
|
|
4217
|
+
const name$Q = "updateExtension";
|
|
4218
|
+
const mutation$A = Selector("Mutation")({
|
|
4219
|
+
[name$Q]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
4144
4220
|
});
|
|
4145
4221
|
|
|
4146
4222
|
const updateExtension = {
|
|
4147
4223
|
__proto__: null,
|
|
4148
|
-
mutation: mutation$
|
|
4149
|
-
name: name$
|
|
4224
|
+
mutation: mutation$A,
|
|
4225
|
+
name: name$Q
|
|
4150
4226
|
};
|
|
4151
4227
|
|
|
4152
|
-
const index$
|
|
4228
|
+
const index$p = {
|
|
4153
4229
|
__proto__: null,
|
|
4154
4230
|
InstallExtension: installExtension,
|
|
4155
4231
|
UninstallExtension: uninstallExtension,
|
|
4156
4232
|
UpdateExtension: updateExtension
|
|
4157
4233
|
};
|
|
4158
4234
|
|
|
4159
|
-
const name$
|
|
4160
|
-
const mutation$
|
|
4161
|
-
[name$
|
|
4235
|
+
const name$P = "generateProjectOfFreeDecision";
|
|
4236
|
+
const mutation$z = Selector("Mutation")({
|
|
4237
|
+
[name$P]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4162
4238
|
});
|
|
4163
4239
|
|
|
4164
4240
|
const generateProjectOfFreeDecisionDocument = {
|
|
4165
4241
|
__proto__: null,
|
|
4166
|
-
mutation: mutation$
|
|
4167
|
-
name: name$
|
|
4242
|
+
mutation: mutation$z,
|
|
4243
|
+
name: name$P
|
|
4168
4244
|
};
|
|
4169
4245
|
|
|
4170
|
-
const name$
|
|
4171
|
-
const mutation$
|
|
4172
|
-
[name$
|
|
4246
|
+
const name$O = "generateFreeDecision";
|
|
4247
|
+
const mutation$y = Selector("Mutation")({
|
|
4248
|
+
[name$O]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4173
4249
|
});
|
|
4174
4250
|
|
|
4175
4251
|
const generateFreeDecision = {
|
|
4176
4252
|
__proto__: null,
|
|
4177
|
-
mutation: mutation$
|
|
4178
|
-
name: name$
|
|
4253
|
+
mutation: mutation$y,
|
|
4254
|
+
name: name$O
|
|
4179
4255
|
};
|
|
4180
4256
|
|
|
4181
|
-
const name$
|
|
4182
|
-
const mutation$
|
|
4183
|
-
[name$
|
|
4257
|
+
const name$N = "publishProjectOfFreeDecision";
|
|
4258
|
+
const mutation$x = Selector("Mutation")({
|
|
4259
|
+
[name$N]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
|
|
4184
4260
|
});
|
|
4185
4261
|
|
|
4186
4262
|
const publishProjectOfFreeDecision = {
|
|
4187
4263
|
__proto__: null,
|
|
4188
|
-
mutation: mutation$
|
|
4189
|
-
name: name$
|
|
4264
|
+
mutation: mutation$x,
|
|
4265
|
+
name: name$N
|
|
4190
4266
|
};
|
|
4191
4267
|
|
|
4192
|
-
const name$
|
|
4193
|
-
const mutation$
|
|
4194
|
-
[name$
|
|
4268
|
+
const name$M = "createProjectOfFreeDecision";
|
|
4269
|
+
const mutation$w = Selector("Mutation")({
|
|
4270
|
+
[name$M]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
|
|
4195
4271
|
});
|
|
4196
4272
|
|
|
4197
4273
|
const createProjectOfFreeDecision = {
|
|
4198
4274
|
__proto__: null,
|
|
4199
|
-
mutation: mutation$
|
|
4200
|
-
name: name$
|
|
4275
|
+
mutation: mutation$w,
|
|
4276
|
+
name: name$M
|
|
4201
4277
|
};
|
|
4202
4278
|
|
|
4203
|
-
const index$
|
|
4279
|
+
const index$o = {
|
|
4204
4280
|
__proto__: null,
|
|
4205
4281
|
CreateProjectOfFreeDecision: createProjectOfFreeDecision,
|
|
4206
4282
|
GenerateFreeDecision: generateFreeDecision,
|
|
@@ -4208,60 +4284,60 @@ const index$m = {
|
|
|
4208
4284
|
PublishProjectOfFreeDecision: publishProjectOfFreeDecision
|
|
4209
4285
|
};
|
|
4210
4286
|
|
|
4211
|
-
const name$
|
|
4212
|
-
const mutation$
|
|
4213
|
-
[name$
|
|
4287
|
+
const name$L = "setPaymentStatus";
|
|
4288
|
+
const mutation$v = Selector("Mutation")({
|
|
4289
|
+
[name$L]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
|
|
4214
4290
|
});
|
|
4215
4291
|
|
|
4216
4292
|
const updatePaymentStatus = {
|
|
4217
4293
|
__proto__: null,
|
|
4218
|
-
mutation: mutation$
|
|
4219
|
-
name: name$
|
|
4294
|
+
mutation: mutation$v,
|
|
4295
|
+
name: name$L
|
|
4220
4296
|
};
|
|
4221
4297
|
|
|
4222
|
-
const name$
|
|
4223
|
-
const mutation$
|
|
4224
|
-
[name$
|
|
4298
|
+
const name$K = "createInitialPayment";
|
|
4299
|
+
const mutation$u = Selector("Mutation")({
|
|
4300
|
+
[name$K]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
4225
4301
|
});
|
|
4226
4302
|
|
|
4227
4303
|
const createInitialPayment$1 = {
|
|
4228
4304
|
__proto__: null,
|
|
4229
|
-
mutation: mutation$
|
|
4230
|
-
name: name$
|
|
4305
|
+
mutation: mutation$u,
|
|
4306
|
+
name: name$K
|
|
4231
4307
|
};
|
|
4232
4308
|
|
|
4233
|
-
const name$
|
|
4234
|
-
const mutation$
|
|
4235
|
-
[name$
|
|
4309
|
+
const name$J = "createDepositPayment";
|
|
4310
|
+
const mutation$t = Selector("Mutation")({
|
|
4311
|
+
[name$J]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
4236
4312
|
});
|
|
4237
4313
|
|
|
4238
4314
|
const createDepositPayment$1 = {
|
|
4239
4315
|
__proto__: null,
|
|
4240
|
-
mutation: mutation$
|
|
4241
|
-
name: name$
|
|
4316
|
+
mutation: mutation$t,
|
|
4317
|
+
name: name$J
|
|
4242
4318
|
};
|
|
4243
4319
|
|
|
4244
|
-
const index$
|
|
4320
|
+
const index$n = {
|
|
4245
4321
|
__proto__: null,
|
|
4246
4322
|
CreateDepositPayment: createDepositPayment$1,
|
|
4247
4323
|
CreateInitialPayment: createInitialPayment$1,
|
|
4248
4324
|
SetPaymentStatus: updatePaymentStatus
|
|
4249
4325
|
};
|
|
4250
4326
|
|
|
4251
|
-
const name$
|
|
4252
|
-
const mutation$
|
|
4253
|
-
[name$
|
|
4327
|
+
const name$I = "createAnnualGeneralMeet";
|
|
4328
|
+
const mutation$s = Selector("Mutation")({
|
|
4329
|
+
[name$I]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4254
4330
|
});
|
|
4255
4331
|
|
|
4256
4332
|
const createAnnualGeneralMeet = {
|
|
4257
4333
|
__proto__: null,
|
|
4258
|
-
mutation: mutation$
|
|
4259
|
-
name: name$
|
|
4334
|
+
mutation: mutation$s,
|
|
4335
|
+
name: name$I
|
|
4260
4336
|
};
|
|
4261
4337
|
|
|
4262
|
-
const name$
|
|
4263
|
-
const mutation$
|
|
4264
|
-
[name$
|
|
4338
|
+
const name$H = "generateAnnualGeneralMeetAgendaDocument";
|
|
4339
|
+
const mutation$r = Selector("Mutation")({
|
|
4340
|
+
[name$H]: [
|
|
4265
4341
|
{
|
|
4266
4342
|
data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
|
|
4267
4343
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4272,13 +4348,13 @@ const mutation$p = Selector("Mutation")({
|
|
|
4272
4348
|
|
|
4273
4349
|
const generateAnnualGeneralMeetAgendaDocument = {
|
|
4274
4350
|
__proto__: null,
|
|
4275
|
-
mutation: mutation$
|
|
4276
|
-
name: name$
|
|
4351
|
+
mutation: mutation$r,
|
|
4352
|
+
name: name$H
|
|
4277
4353
|
};
|
|
4278
4354
|
|
|
4279
|
-
const name$
|
|
4280
|
-
const mutation$
|
|
4281
|
-
[name$
|
|
4355
|
+
const name$G = "generateAnnualGeneralMeetDecisionDocument";
|
|
4356
|
+
const mutation$q = Selector("Mutation")({
|
|
4357
|
+
[name$G]: [
|
|
4282
4358
|
{
|
|
4283
4359
|
data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
|
|
4284
4360
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4289,13 +4365,13 @@ const mutation$o = Selector("Mutation")({
|
|
|
4289
4365
|
|
|
4290
4366
|
const generateAnnualGeneralMeetDecisionDocument = {
|
|
4291
4367
|
__proto__: null,
|
|
4292
|
-
mutation: mutation$
|
|
4293
|
-
name: name$
|
|
4368
|
+
mutation: mutation$q,
|
|
4369
|
+
name: name$G
|
|
4294
4370
|
};
|
|
4295
4371
|
|
|
4296
|
-
const name$
|
|
4297
|
-
const mutation$
|
|
4298
|
-
[name$
|
|
4372
|
+
const name$F = "generateAnnualGeneralMeetNotificationDocument";
|
|
4373
|
+
const mutation$p = Selector("Mutation")({
|
|
4374
|
+
[name$F]: [
|
|
4299
4375
|
{
|
|
4300
4376
|
data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
|
|
4301
4377
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4306,13 +4382,13 @@ const mutation$n = Selector("Mutation")({
|
|
|
4306
4382
|
|
|
4307
4383
|
const generateAnnualGeneralMeetNotificationDocument = {
|
|
4308
4384
|
__proto__: null,
|
|
4309
|
-
mutation: mutation$
|
|
4310
|
-
name: name$
|
|
4385
|
+
mutation: mutation$p,
|
|
4386
|
+
name: name$F
|
|
4311
4387
|
};
|
|
4312
4388
|
|
|
4313
|
-
const name$
|
|
4314
|
-
const mutation$
|
|
4315
|
-
[name$
|
|
4389
|
+
const name$E = "generateBallotForAnnualGeneralMeetDocument";
|
|
4390
|
+
const mutation$o = Selector("Mutation")({
|
|
4391
|
+
[name$E]: [
|
|
4316
4392
|
{
|
|
4317
4393
|
data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
|
|
4318
4394
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4323,13 +4399,13 @@ const mutation$m = Selector("Mutation")({
|
|
|
4323
4399
|
|
|
4324
4400
|
const generateBallotForAnnualGeneralMeetDocument = {
|
|
4325
4401
|
__proto__: null,
|
|
4326
|
-
mutation: mutation$
|
|
4327
|
-
name: name$
|
|
4402
|
+
mutation: mutation$o,
|
|
4403
|
+
name: name$E
|
|
4328
4404
|
};
|
|
4329
4405
|
|
|
4330
|
-
const name$
|
|
4331
|
-
const mutation$
|
|
4332
|
-
[name$
|
|
4406
|
+
const name$D = "generateSovietDecisionOnAnnualMeetDocument";
|
|
4407
|
+
const mutation$n = Selector("Mutation")({
|
|
4408
|
+
[name$D]: [{
|
|
4333
4409
|
data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
|
|
4334
4410
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
4335
4411
|
}, documentSelector]
|
|
@@ -4337,66 +4413,66 @@ const mutation$l = Selector("Mutation")({
|
|
|
4337
4413
|
|
|
4338
4414
|
const generateSovietDecisionOnAnnualMeetDocument = {
|
|
4339
4415
|
__proto__: null,
|
|
4340
|
-
mutation: mutation$
|
|
4341
|
-
name: name$
|
|
4416
|
+
mutation: mutation$n,
|
|
4417
|
+
name: name$D
|
|
4342
4418
|
};
|
|
4343
4419
|
|
|
4344
|
-
const name$
|
|
4345
|
-
const mutation$
|
|
4346
|
-
[name$
|
|
4420
|
+
const name$C = "notifyOnAnnualGeneralMeet";
|
|
4421
|
+
const mutation$m = Selector("Mutation")({
|
|
4422
|
+
[name$C]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4347
4423
|
});
|
|
4348
4424
|
|
|
4349
4425
|
const notifyOnAnnualGeneralMeet = {
|
|
4350
4426
|
__proto__: null,
|
|
4351
|
-
mutation: mutation$
|
|
4352
|
-
name: name$
|
|
4427
|
+
mutation: mutation$m,
|
|
4428
|
+
name: name$C
|
|
4353
4429
|
};
|
|
4354
4430
|
|
|
4355
|
-
const name$
|
|
4356
|
-
const mutation$
|
|
4357
|
-
[name$
|
|
4431
|
+
const name$B = "restartAnnualGeneralMeet";
|
|
4432
|
+
const mutation$l = Selector("Mutation")({
|
|
4433
|
+
[name$B]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4358
4434
|
});
|
|
4359
4435
|
|
|
4360
4436
|
const restartAnnualGeneralMeet = {
|
|
4361
4437
|
__proto__: null,
|
|
4362
|
-
mutation: mutation$
|
|
4363
|
-
name: name$
|
|
4438
|
+
mutation: mutation$l,
|
|
4439
|
+
name: name$B
|
|
4364
4440
|
};
|
|
4365
4441
|
|
|
4366
|
-
const name$
|
|
4367
|
-
const mutation$
|
|
4368
|
-
[name$
|
|
4442
|
+
const name$A = "signByPresiderOnAnnualGeneralMeet";
|
|
4443
|
+
const mutation$k = Selector("Mutation")({
|
|
4444
|
+
[name$A]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4369
4445
|
});
|
|
4370
4446
|
|
|
4371
4447
|
const signByPresiderOnAnnualGeneralMeet = {
|
|
4372
4448
|
__proto__: null,
|
|
4373
|
-
mutation: mutation$
|
|
4374
|
-
name: name$
|
|
4449
|
+
mutation: mutation$k,
|
|
4450
|
+
name: name$A
|
|
4375
4451
|
};
|
|
4376
4452
|
|
|
4377
|
-
const name$
|
|
4378
|
-
const mutation$
|
|
4379
|
-
[name$
|
|
4453
|
+
const name$z = "signBySecretaryOnAnnualGeneralMeet";
|
|
4454
|
+
const mutation$j = Selector("Mutation")({
|
|
4455
|
+
[name$z]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4380
4456
|
});
|
|
4381
4457
|
|
|
4382
4458
|
const signBySecretaryOnAnnualGeneralMeet = {
|
|
4383
4459
|
__proto__: null,
|
|
4384
|
-
mutation: mutation$
|
|
4385
|
-
name: name$
|
|
4460
|
+
mutation: mutation$j,
|
|
4461
|
+
name: name$z
|
|
4386
4462
|
};
|
|
4387
4463
|
|
|
4388
|
-
const name$
|
|
4389
|
-
const mutation$
|
|
4390
|
-
[name$
|
|
4464
|
+
const name$y = "voteOnAnnualGeneralMeet";
|
|
4465
|
+
const mutation$i = Selector("Mutation")({
|
|
4466
|
+
[name$y]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4391
4467
|
});
|
|
4392
4468
|
|
|
4393
4469
|
const voteOnAnnualGeneralMeet = {
|
|
4394
4470
|
__proto__: null,
|
|
4395
|
-
mutation: mutation$
|
|
4396
|
-
name: name$
|
|
4471
|
+
mutation: mutation$i,
|
|
4472
|
+
name: name$y
|
|
4397
4473
|
};
|
|
4398
4474
|
|
|
4399
|
-
const index$
|
|
4475
|
+
const index$m = {
|
|
4400
4476
|
__proto__: null,
|
|
4401
4477
|
CreateAnnualGeneralMeet: createAnnualGeneralMeet,
|
|
4402
4478
|
GenerateAnnualGeneralMeetAgendaDocument: generateAnnualGeneralMeetAgendaDocument,
|
|
@@ -4411,62 +4487,90 @@ const index$k = {
|
|
|
4411
4487
|
VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
|
|
4412
4488
|
};
|
|
4413
4489
|
|
|
4414
|
-
const name$
|
|
4490
|
+
const name$x = "createWebPushSubscription";
|
|
4491
|
+
const mutation$h = Selector("Mutation")({
|
|
4492
|
+
[name$x]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
|
|
4493
|
+
});
|
|
4494
|
+
|
|
4495
|
+
const createWebPushSubscription = {
|
|
4496
|
+
__proto__: null,
|
|
4497
|
+
mutation: mutation$h,
|
|
4498
|
+
name: name$x
|
|
4499
|
+
};
|
|
4500
|
+
|
|
4501
|
+
const name$w = "deactivateWebPushSubscriptionById";
|
|
4502
|
+
const mutation$g = Selector("Mutation")({
|
|
4503
|
+
[name$w]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
|
|
4504
|
+
});
|
|
4505
|
+
|
|
4506
|
+
const deactivateWebPushSubscriptionById = {
|
|
4507
|
+
__proto__: null,
|
|
4508
|
+
mutation: mutation$g,
|
|
4509
|
+
name: name$w
|
|
4510
|
+
};
|
|
4511
|
+
|
|
4512
|
+
const index$l = {
|
|
4513
|
+
__proto__: null,
|
|
4514
|
+
CreateWebPushSubscription: createWebPushSubscription,
|
|
4515
|
+
DeactivateWebPushSubscriptionById: deactivateWebPushSubscriptionById
|
|
4516
|
+
};
|
|
4517
|
+
|
|
4518
|
+
const name$v = "addParticipant";
|
|
4415
4519
|
const mutation$f = Selector("Mutation")({
|
|
4416
|
-
[name$
|
|
4520
|
+
[name$v]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
|
|
4417
4521
|
});
|
|
4418
4522
|
|
|
4419
4523
|
const addParticipant = {
|
|
4420
4524
|
__proto__: null,
|
|
4421
4525
|
mutation: mutation$f,
|
|
4422
|
-
name: name$
|
|
4526
|
+
name: name$v
|
|
4423
4527
|
};
|
|
4424
4528
|
|
|
4425
|
-
const name$
|
|
4529
|
+
const name$u = "generateParticipantApplication";
|
|
4426
4530
|
const mutation$e = Selector("Mutation")({
|
|
4427
|
-
[name$
|
|
4531
|
+
[name$u]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4428
4532
|
});
|
|
4429
4533
|
|
|
4430
4534
|
const generateParticipantApplication = {
|
|
4431
4535
|
__proto__: null,
|
|
4432
4536
|
mutation: mutation$e,
|
|
4433
|
-
name: name$
|
|
4537
|
+
name: name$u
|
|
4434
4538
|
};
|
|
4435
4539
|
|
|
4436
|
-
const name$
|
|
4540
|
+
const name$t = "generateParticipantApplicationDecision";
|
|
4437
4541
|
const mutation$d = Selector("Mutation")({
|
|
4438
|
-
[name$
|
|
4542
|
+
[name$t]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4439
4543
|
});
|
|
4440
4544
|
|
|
4441
4545
|
const generateParticipantApplicationDecision = {
|
|
4442
4546
|
__proto__: null,
|
|
4443
4547
|
mutation: mutation$d,
|
|
4444
|
-
name: name$
|
|
4548
|
+
name: name$t
|
|
4445
4549
|
};
|
|
4446
4550
|
|
|
4447
|
-
const name$
|
|
4551
|
+
const name$s = "registerParticipant";
|
|
4448
4552
|
const mutation$c = Selector("Mutation")({
|
|
4449
|
-
[name$
|
|
4553
|
+
[name$s]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
|
|
4450
4554
|
});
|
|
4451
4555
|
|
|
4452
4556
|
const registerParticipant = {
|
|
4453
4557
|
__proto__: null,
|
|
4454
4558
|
mutation: mutation$c,
|
|
4455
|
-
name: name$
|
|
4559
|
+
name: name$s
|
|
4456
4560
|
};
|
|
4457
4561
|
|
|
4458
|
-
const name$
|
|
4562
|
+
const name$r = "createInitialPayment";
|
|
4459
4563
|
const mutation$b = Selector("Mutation")({
|
|
4460
|
-
[name$
|
|
4564
|
+
[name$r]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
4461
4565
|
});
|
|
4462
4566
|
|
|
4463
4567
|
const createInitialPayment = {
|
|
4464
4568
|
__proto__: null,
|
|
4465
4569
|
mutation: mutation$b,
|
|
4466
|
-
name: name$
|
|
4570
|
+
name: name$r
|
|
4467
4571
|
};
|
|
4468
4572
|
|
|
4469
|
-
const index$
|
|
4573
|
+
const index$k = {
|
|
4470
4574
|
__proto__: null,
|
|
4471
4575
|
AddParticipant: addParticipant,
|
|
4472
4576
|
CreateInitialPayment: createInitialPayment,
|
|
@@ -4475,91 +4579,91 @@ const index$j = {
|
|
|
4475
4579
|
RegisterParticipant: registerParticipant
|
|
4476
4580
|
};
|
|
4477
4581
|
|
|
4478
|
-
const name$
|
|
4582
|
+
const name$q = "createBankAccount";
|
|
4479
4583
|
const mutation$a = Selector("Mutation")({
|
|
4480
|
-
[name$
|
|
4584
|
+
[name$q]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
|
|
4481
4585
|
});
|
|
4482
4586
|
|
|
4483
4587
|
const createBankAccount = {
|
|
4484
4588
|
__proto__: null,
|
|
4485
4589
|
mutation: mutation$a,
|
|
4486
|
-
name: name$
|
|
4590
|
+
name: name$q
|
|
4487
4591
|
};
|
|
4488
4592
|
|
|
4489
|
-
const name$
|
|
4593
|
+
const name$p = "deletePaymentMethod";
|
|
4490
4594
|
const mutation$9 = Selector("Mutation")({
|
|
4491
|
-
[name$
|
|
4595
|
+
[name$p]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
|
|
4492
4596
|
});
|
|
4493
4597
|
|
|
4494
4598
|
const deletePaymentMethod = {
|
|
4495
4599
|
__proto__: null,
|
|
4496
4600
|
mutation: mutation$9,
|
|
4497
|
-
name: name$
|
|
4601
|
+
name: name$p
|
|
4498
4602
|
};
|
|
4499
4603
|
|
|
4500
|
-
const name$
|
|
4604
|
+
const name$o = "updateBankAccount";
|
|
4501
4605
|
const mutation$8 = Selector("Mutation")({
|
|
4502
|
-
[name$
|
|
4606
|
+
[name$o]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
|
|
4503
4607
|
});
|
|
4504
4608
|
|
|
4505
4609
|
const updateBankAccount = {
|
|
4506
4610
|
__proto__: null,
|
|
4507
4611
|
mutation: mutation$8,
|
|
4508
|
-
name: name$
|
|
4612
|
+
name: name$o
|
|
4509
4613
|
};
|
|
4510
4614
|
|
|
4511
|
-
const index$
|
|
4615
|
+
const index$j = {
|
|
4512
4616
|
__proto__: null,
|
|
4513
4617
|
CreateBankAccount: createBankAccount,
|
|
4514
4618
|
DeletePaymentMethod: deletePaymentMethod,
|
|
4515
4619
|
UpdateBankAccount: updateBankAccount
|
|
4516
4620
|
};
|
|
4517
4621
|
|
|
4518
|
-
const name$
|
|
4622
|
+
const name$n = "initSystem";
|
|
4519
4623
|
const mutation$7 = Selector("Mutation")({
|
|
4520
|
-
[name$
|
|
4624
|
+
[name$n]: [{ data: $("data", "Init!") }, systemInfoSelector]
|
|
4521
4625
|
});
|
|
4522
4626
|
|
|
4523
4627
|
const initSystem = {
|
|
4524
4628
|
__proto__: null,
|
|
4525
4629
|
mutation: mutation$7,
|
|
4526
|
-
name: name$
|
|
4630
|
+
name: name$n
|
|
4527
4631
|
};
|
|
4528
4632
|
|
|
4529
|
-
const name$
|
|
4633
|
+
const name$m = "installSystem";
|
|
4530
4634
|
const mutation$6 = Selector("Mutation")({
|
|
4531
|
-
[name$
|
|
4635
|
+
[name$m]: [{ data: $("data", "Install!") }, systemInfoSelector]
|
|
4532
4636
|
});
|
|
4533
4637
|
|
|
4534
4638
|
const installSystem = {
|
|
4535
4639
|
__proto__: null,
|
|
4536
4640
|
mutation: mutation$6,
|
|
4537
|
-
name: name$
|
|
4641
|
+
name: name$m
|
|
4538
4642
|
};
|
|
4539
4643
|
|
|
4540
|
-
const name$
|
|
4644
|
+
const name$l = "setWif";
|
|
4541
4645
|
const mutation$5 = Selector("Mutation")({
|
|
4542
|
-
[name$
|
|
4646
|
+
[name$l]: [{ data: $("data", "Update!") }, true]
|
|
4543
4647
|
});
|
|
4544
4648
|
|
|
4545
4649
|
const setWif = {
|
|
4546
4650
|
__proto__: null,
|
|
4547
4651
|
mutation: mutation$5,
|
|
4548
|
-
name: name$
|
|
4652
|
+
name: name$l
|
|
4549
4653
|
};
|
|
4550
4654
|
|
|
4551
|
-
const name$
|
|
4655
|
+
const name$k = "updateSystem";
|
|
4552
4656
|
const mutation$4 = Selector("Mutation")({
|
|
4553
|
-
[name$
|
|
4657
|
+
[name$k]: [{ data: $("data", "Update!") }, systemInfoSelector]
|
|
4554
4658
|
});
|
|
4555
4659
|
|
|
4556
4660
|
const updateSystem = {
|
|
4557
4661
|
__proto__: null,
|
|
4558
4662
|
mutation: mutation$4,
|
|
4559
|
-
name: name$
|
|
4663
|
+
name: name$k
|
|
4560
4664
|
};
|
|
4561
4665
|
|
|
4562
|
-
const index$
|
|
4666
|
+
const index$i = {
|
|
4563
4667
|
__proto__: null,
|
|
4564
4668
|
InitSystem: initSystem,
|
|
4565
4669
|
InstallSystem: installSystem,
|
|
@@ -4567,31 +4671,31 @@ const index$h = {
|
|
|
4567
4671
|
UpdateSystem: updateSystem
|
|
4568
4672
|
};
|
|
4569
4673
|
|
|
4570
|
-
const name$
|
|
4674
|
+
const name$j = "createWithdraw";
|
|
4571
4675
|
const mutation$3 = Selector("Mutation")({
|
|
4572
|
-
[name$
|
|
4676
|
+
[name$j]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
|
|
4573
4677
|
});
|
|
4574
4678
|
|
|
4575
4679
|
const createWithdraw = {
|
|
4576
4680
|
__proto__: null,
|
|
4577
4681
|
mutation: mutation$3,
|
|
4578
|
-
name: name$
|
|
4682
|
+
name: name$j
|
|
4579
4683
|
};
|
|
4580
4684
|
|
|
4581
|
-
const name$
|
|
4685
|
+
const name$i = "createDepositPayment";
|
|
4582
4686
|
const mutation$2 = Selector("Mutation")({
|
|
4583
|
-
[name$
|
|
4687
|
+
[name$i]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
4584
4688
|
});
|
|
4585
4689
|
|
|
4586
4690
|
const createDepositPayment = {
|
|
4587
4691
|
__proto__: null,
|
|
4588
4692
|
mutation: mutation$2,
|
|
4589
|
-
name: name$
|
|
4693
|
+
name: name$i
|
|
4590
4694
|
};
|
|
4591
4695
|
|
|
4592
|
-
const name$
|
|
4696
|
+
const name$h = "generateReturnByMoneyStatementDocument";
|
|
4593
4697
|
const mutation$1 = Selector("Mutation")({
|
|
4594
|
-
[name$
|
|
4698
|
+
[name$h]: [
|
|
4595
4699
|
{
|
|
4596
4700
|
data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
|
|
4597
4701
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4603,12 +4707,12 @@ const mutation$1 = Selector("Mutation")({
|
|
|
4603
4707
|
const generateReturnByMoneyStatementDocument = {
|
|
4604
4708
|
__proto__: null,
|
|
4605
4709
|
mutation: mutation$1,
|
|
4606
|
-
name: name$
|
|
4710
|
+
name: name$h
|
|
4607
4711
|
};
|
|
4608
4712
|
|
|
4609
|
-
const name$
|
|
4713
|
+
const name$g = "generateReturnByMoneyDecisionDocument";
|
|
4610
4714
|
const mutation = Selector("Mutation")({
|
|
4611
|
-
[name$
|
|
4715
|
+
[name$g]: [
|
|
4612
4716
|
{
|
|
4613
4717
|
data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
|
|
4614
4718
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4620,10 +4724,10 @@ const mutation = Selector("Mutation")({
|
|
|
4620
4724
|
const generateReturnByMoneyDecisionDocument = {
|
|
4621
4725
|
__proto__: null,
|
|
4622
4726
|
mutation: mutation,
|
|
4623
|
-
name: name$
|
|
4727
|
+
name: name$g
|
|
4624
4728
|
};
|
|
4625
4729
|
|
|
4626
|
-
const index$
|
|
4730
|
+
const index$h = {
|
|
4627
4731
|
__proto__: null,
|
|
4628
4732
|
CreateDepositPayment: createDepositPayment,
|
|
4629
4733
|
CreateWithdraw: createWithdraw,
|
|
@@ -4633,41 +4737,42 @@ const index$g = {
|
|
|
4633
4737
|
|
|
4634
4738
|
const Mutations = {
|
|
4635
4739
|
__proto__: null,
|
|
4636
|
-
Accounts: index$
|
|
4637
|
-
Agreements: index$
|
|
4638
|
-
Auth: index$
|
|
4639
|
-
Branches: index$
|
|
4640
|
-
Cooplace: index$
|
|
4641
|
-
Extensions: index$
|
|
4642
|
-
FreeDecisions: index$
|
|
4643
|
-
Gateway: index$
|
|
4644
|
-
Meet: index$
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4649
|
-
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
const
|
|
4653
|
-
|
|
4740
|
+
Accounts: index$u,
|
|
4741
|
+
Agreements: index$t,
|
|
4742
|
+
Auth: index$s,
|
|
4743
|
+
Branches: index$r,
|
|
4744
|
+
Cooplace: index$q,
|
|
4745
|
+
Extensions: index$p,
|
|
4746
|
+
FreeDecisions: index$o,
|
|
4747
|
+
Gateway: index$n,
|
|
4748
|
+
Meet: index$m,
|
|
4749
|
+
Notification: index$l,
|
|
4750
|
+
Participants: index$k,
|
|
4751
|
+
PaymentMethods: index$j,
|
|
4752
|
+
System: index$i,
|
|
4753
|
+
Wallet: index$h
|
|
4754
|
+
};
|
|
4755
|
+
|
|
4756
|
+
const name$f = "getAccount";
|
|
4757
|
+
const query$f = Selector("Query")({
|
|
4758
|
+
[name$f]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
|
|
4654
4759
|
});
|
|
4655
4760
|
|
|
4656
4761
|
const getAccount = {
|
|
4657
4762
|
__proto__: null,
|
|
4658
|
-
name: name$
|
|
4659
|
-
query: query$
|
|
4763
|
+
name: name$f,
|
|
4764
|
+
query: query$f
|
|
4660
4765
|
};
|
|
4661
4766
|
|
|
4662
|
-
const name$
|
|
4663
|
-
const query$
|
|
4664
|
-
[name$
|
|
4767
|
+
const name$e = "getAccounts";
|
|
4768
|
+
const query$e = Selector("Query")({
|
|
4769
|
+
[name$e]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
4665
4770
|
});
|
|
4666
4771
|
|
|
4667
4772
|
const getAccounts = {
|
|
4668
4773
|
__proto__: null,
|
|
4669
|
-
name: name$
|
|
4670
|
-
query: query$
|
|
4774
|
+
name: name$e,
|
|
4775
|
+
query: query$e
|
|
4671
4776
|
};
|
|
4672
4777
|
|
|
4673
4778
|
const rawSearchPrivateAccountsResultSelector = {
|
|
@@ -4684,18 +4789,18 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
|
|
|
4684
4789
|
rawSearchPrivateAccountsResultSelector
|
|
4685
4790
|
);
|
|
4686
4791
|
|
|
4687
|
-
const name$
|
|
4688
|
-
const query$
|
|
4689
|
-
[name$
|
|
4792
|
+
const name$d = "searchPrivateAccounts";
|
|
4793
|
+
const query$d = Selector("Query")({
|
|
4794
|
+
[name$d]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
|
|
4690
4795
|
});
|
|
4691
4796
|
|
|
4692
4797
|
const searchPrivateAccounts = {
|
|
4693
4798
|
__proto__: null,
|
|
4694
|
-
name: name$
|
|
4695
|
-
query: query$
|
|
4799
|
+
name: name$d,
|
|
4800
|
+
query: query$d
|
|
4696
4801
|
};
|
|
4697
4802
|
|
|
4698
|
-
const index$
|
|
4803
|
+
const index$g = {
|
|
4699
4804
|
__proto__: null,
|
|
4700
4805
|
GetAccount: getAccount,
|
|
4701
4806
|
GetAccounts: getAccounts,
|
|
@@ -4763,45 +4868,45 @@ const rawAgendaSelector = {
|
|
|
4763
4868
|
};
|
|
4764
4869
|
const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
|
|
4765
4870
|
|
|
4766
|
-
const name$
|
|
4767
|
-
const query$
|
|
4768
|
-
[name$
|
|
4871
|
+
const name$c = "getAgenda";
|
|
4872
|
+
const query$c = Selector("Query")({
|
|
4873
|
+
[name$c]: agendaSelector
|
|
4769
4874
|
});
|
|
4770
4875
|
|
|
4771
4876
|
const getAgenda = {
|
|
4772
4877
|
__proto__: null,
|
|
4773
|
-
name: name$
|
|
4774
|
-
query: query$
|
|
4878
|
+
name: name$c,
|
|
4879
|
+
query: query$c
|
|
4775
4880
|
};
|
|
4776
4881
|
|
|
4777
|
-
const index$
|
|
4882
|
+
const index$f = {
|
|
4778
4883
|
__proto__: null,
|
|
4779
4884
|
GetAgenda: getAgenda
|
|
4780
4885
|
};
|
|
4781
4886
|
|
|
4782
|
-
const name$
|
|
4783
|
-
const query$
|
|
4784
|
-
[name$
|
|
4887
|
+
const name$b = "getBranches";
|
|
4888
|
+
const query$b = Selector("Query")({
|
|
4889
|
+
[name$b]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
|
|
4785
4890
|
});
|
|
4786
4891
|
|
|
4787
4892
|
const getBranches = {
|
|
4788
4893
|
__proto__: null,
|
|
4789
|
-
name: name$
|
|
4790
|
-
query: query$
|
|
4894
|
+
name: name$b,
|
|
4895
|
+
query: query$b
|
|
4791
4896
|
};
|
|
4792
4897
|
|
|
4793
|
-
const name$
|
|
4794
|
-
const query$
|
|
4795
|
-
[name$
|
|
4898
|
+
const name$a = "getBranches";
|
|
4899
|
+
const query$a = Selector("Query")({
|
|
4900
|
+
[name$a]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
|
|
4796
4901
|
});
|
|
4797
4902
|
|
|
4798
4903
|
const getPublicBranches = {
|
|
4799
4904
|
__proto__: null,
|
|
4800
|
-
name: name$
|
|
4801
|
-
query: query$
|
|
4905
|
+
name: name$a,
|
|
4906
|
+
query: query$a
|
|
4802
4907
|
};
|
|
4803
4908
|
|
|
4804
|
-
const index$
|
|
4909
|
+
const index$e = {
|
|
4805
4910
|
__proto__: null,
|
|
4806
4911
|
GetBranches: getBranches,
|
|
4807
4912
|
GetPublicBranches: getPublicBranches
|
|
@@ -4822,59 +4927,59 @@ const rawDesktopSelector = {
|
|
|
4822
4927
|
};
|
|
4823
4928
|
const desktopSelector = Selector("Desktop")(rawDesktopSelector);
|
|
4824
4929
|
|
|
4825
|
-
const name$
|
|
4826
|
-
const query$
|
|
4827
|
-
[name$
|
|
4930
|
+
const name$9 = "getDesktop";
|
|
4931
|
+
const query$9 = Selector("Query")({
|
|
4932
|
+
[name$9]: desktopSelector
|
|
4828
4933
|
});
|
|
4829
4934
|
|
|
4830
4935
|
const getDesktop = {
|
|
4831
4936
|
__proto__: null,
|
|
4832
|
-
name: name$
|
|
4833
|
-
query: query$
|
|
4937
|
+
name: name$9,
|
|
4938
|
+
query: query$9
|
|
4834
4939
|
};
|
|
4835
4940
|
|
|
4836
|
-
const index$
|
|
4941
|
+
const index$d = {
|
|
4837
4942
|
__proto__: null,
|
|
4838
4943
|
GetDesktop: getDesktop
|
|
4839
4944
|
};
|
|
4840
4945
|
|
|
4841
4946
|
const documentPaginationSelector = { ...paginationSelector, items: rawDocumentPackageAggregateSelector };
|
|
4842
|
-
const name$
|
|
4843
|
-
const query$
|
|
4844
|
-
[name$
|
|
4947
|
+
const name$8 = "getDocuments";
|
|
4948
|
+
const query$8 = Selector("Query")({
|
|
4949
|
+
[name$8]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
|
|
4845
4950
|
});
|
|
4846
4951
|
|
|
4847
4952
|
const getDocuments = {
|
|
4848
4953
|
__proto__: null,
|
|
4849
|
-
name: name$
|
|
4850
|
-
query: query$
|
|
4954
|
+
name: name$8,
|
|
4955
|
+
query: query$8
|
|
4851
4956
|
};
|
|
4852
4957
|
|
|
4853
|
-
const index$
|
|
4958
|
+
const index$c = {
|
|
4854
4959
|
__proto__: null,
|
|
4855
4960
|
GetDocuments: getDocuments
|
|
4856
4961
|
};
|
|
4857
4962
|
|
|
4858
|
-
const name$
|
|
4859
|
-
const query$
|
|
4860
|
-
[name$
|
|
4963
|
+
const name$7 = "getExtensions";
|
|
4964
|
+
const query$7 = Selector("Query")({
|
|
4965
|
+
[name$7]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
|
|
4861
4966
|
});
|
|
4862
4967
|
|
|
4863
4968
|
const getExtensions = {
|
|
4864
4969
|
__proto__: null,
|
|
4865
|
-
name: name$
|
|
4866
|
-
query: query$
|
|
4970
|
+
name: name$7,
|
|
4971
|
+
query: query$7
|
|
4867
4972
|
};
|
|
4868
4973
|
|
|
4869
|
-
const index$
|
|
4974
|
+
const index$b = {
|
|
4870
4975
|
__proto__: null,
|
|
4871
4976
|
GetExtensions: getExtensions
|
|
4872
4977
|
};
|
|
4873
4978
|
|
|
4874
4979
|
const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
|
|
4875
|
-
const name$
|
|
4876
|
-
const query$
|
|
4877
|
-
[name$
|
|
4980
|
+
const name$6 = "getPayments";
|
|
4981
|
+
const query$6 = Selector("Query")({
|
|
4982
|
+
[name$6]: [
|
|
4878
4983
|
{
|
|
4879
4984
|
data: $("data", "PaymentFiltersInput"),
|
|
4880
4985
|
options: $("options", "PaginationInput")
|
|
@@ -4884,6 +4989,33 @@ const query$4 = Selector("Query")({
|
|
|
4884
4989
|
});
|
|
4885
4990
|
|
|
4886
4991
|
const getPayments = {
|
|
4992
|
+
__proto__: null,
|
|
4993
|
+
name: name$6,
|
|
4994
|
+
query: query$6
|
|
4995
|
+
};
|
|
4996
|
+
|
|
4997
|
+
const index$a = {
|
|
4998
|
+
__proto__: null,
|
|
4999
|
+
GetPayments: getPayments
|
|
5000
|
+
};
|
|
5001
|
+
|
|
5002
|
+
const name$5 = "getMeet";
|
|
5003
|
+
const query$5 = Selector("Query")({
|
|
5004
|
+
[name$5]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
|
|
5005
|
+
});
|
|
5006
|
+
|
|
5007
|
+
const getMeet = {
|
|
5008
|
+
__proto__: null,
|
|
5009
|
+
name: name$5,
|
|
5010
|
+
query: query$5
|
|
5011
|
+
};
|
|
5012
|
+
|
|
5013
|
+
const name$4 = "getMeets";
|
|
5014
|
+
const query$4 = Selector("Query")({
|
|
5015
|
+
[name$4]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
|
|
5016
|
+
});
|
|
5017
|
+
|
|
5018
|
+
const getMeets = {
|
|
4887
5019
|
__proto__: null,
|
|
4888
5020
|
name: name$4,
|
|
4889
5021
|
query: query$4
|
|
@@ -4891,26 +5023,27 @@ const getPayments = {
|
|
|
4891
5023
|
|
|
4892
5024
|
const index$9 = {
|
|
4893
5025
|
__proto__: null,
|
|
4894
|
-
|
|
5026
|
+
GetMeet: getMeet,
|
|
5027
|
+
GetMeets: getMeets
|
|
4895
5028
|
};
|
|
4896
5029
|
|
|
4897
|
-
const name$3 = "
|
|
5030
|
+
const name$3 = "getUserWebPushSubscriptions";
|
|
4898
5031
|
const query$3 = Selector("Query")({
|
|
4899
|
-
[name$3]: [{ data: $("data", "
|
|
5032
|
+
[name$3]: [{ data: $("data", "GetUserSubscriptionsInput!") }, rawWebPushSubscriptionSelector]
|
|
4900
5033
|
});
|
|
4901
5034
|
|
|
4902
|
-
const
|
|
5035
|
+
const getUserWebPushSubscriptions = {
|
|
4903
5036
|
__proto__: null,
|
|
4904
5037
|
name: name$3,
|
|
4905
5038
|
query: query$3
|
|
4906
5039
|
};
|
|
4907
5040
|
|
|
4908
|
-
const name$2 = "
|
|
5041
|
+
const name$2 = "getWebPushSubscriptionStats";
|
|
4909
5042
|
const query$2 = Selector("Query")({
|
|
4910
|
-
[name$2]:
|
|
5043
|
+
[name$2]: rawSubscriptionStatsSelector
|
|
4911
5044
|
});
|
|
4912
5045
|
|
|
4913
|
-
const
|
|
5046
|
+
const getWebPushSubscriptionStats = {
|
|
4914
5047
|
__proto__: null,
|
|
4915
5048
|
name: name$2,
|
|
4916
5049
|
query: query$2
|
|
@@ -4918,8 +5051,8 @@ const getMeets = {
|
|
|
4918
5051
|
|
|
4919
5052
|
const index$8 = {
|
|
4920
5053
|
__proto__: null,
|
|
4921
|
-
|
|
4922
|
-
|
|
5054
|
+
GetUserWebPushSubscriptions: getUserWebPushSubscriptions,
|
|
5055
|
+
GetWebPushSubscriptionStats: getWebPushSubscriptionStats
|
|
4923
5056
|
};
|
|
4924
5057
|
|
|
4925
5058
|
const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
|
|
@@ -4958,14 +5091,15 @@ const index$6 = {
|
|
|
4958
5091
|
|
|
4959
5092
|
const index$5 = {
|
|
4960
5093
|
__proto__: null,
|
|
4961
|
-
Accounts: index$
|
|
4962
|
-
Agenda: index$
|
|
4963
|
-
Branches: index$
|
|
4964
|
-
Desktop: index$
|
|
4965
|
-
Documents: index$
|
|
4966
|
-
Extensions: index$
|
|
4967
|
-
Gateway: index$
|
|
4968
|
-
Meet: index$
|
|
5094
|
+
Accounts: index$g,
|
|
5095
|
+
Agenda: index$f,
|
|
5096
|
+
Branches: index$e,
|
|
5097
|
+
Desktop: index$d,
|
|
5098
|
+
Documents: index$c,
|
|
5099
|
+
Extensions: index$b,
|
|
5100
|
+
Gateway: index$a,
|
|
5101
|
+
Meet: index$9,
|
|
5102
|
+
Notification: index$8,
|
|
4969
5103
|
PaymentMethods: index$7,
|
|
4970
5104
|
System: index$6
|
|
4971
5105
|
};
|
|
@@ -5069,8 +5203,8 @@ const _Client = class _Client {
|
|
|
5069
5203
|
signature
|
|
5070
5204
|
}
|
|
5071
5205
|
};
|
|
5072
|
-
const { [name$
|
|
5073
|
-
mutation$
|
|
5206
|
+
const { [name$1l]: result } = await this.thunder("mutation")(
|
|
5207
|
+
mutation$15,
|
|
5074
5208
|
{
|
|
5075
5209
|
variables
|
|
5076
5210
|
}
|
|
@@ -5197,4 +5331,4 @@ exports.Client = Client;
|
|
|
5197
5331
|
exports.Mutations = Mutations;
|
|
5198
5332
|
exports.Queries = index$5;
|
|
5199
5333
|
exports.Types = index;
|
|
5200
|
-
exports.Zeus = index$
|
|
5334
|
+
exports.Zeus = index$v;
|