@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.mjs
CHANGED
|
@@ -821,10 +821,14 @@ const AllTypesProps = {
|
|
|
821
821
|
},
|
|
822
822
|
CreateParentOfferInput: {},
|
|
823
823
|
CreateProjectFreeDecisionInput: {},
|
|
824
|
+
CreateSubscriptionInput: {
|
|
825
|
+
subscription: "WebPushSubscriptionDataInput"
|
|
826
|
+
},
|
|
824
827
|
CreateWithdrawInput: {
|
|
825
828
|
statement: "ReturnByMoneySignedDocumentInput"
|
|
826
829
|
},
|
|
827
830
|
DateTime: `scalar.DateTime`,
|
|
831
|
+
DeactivateSubscriptionInput: {},
|
|
828
832
|
DeclineRequestInput: {},
|
|
829
833
|
DeleteBranchInput: {},
|
|
830
834
|
DeletePaymentMethodInput: {},
|
|
@@ -854,6 +858,7 @@ const AllTypesProps = {
|
|
|
854
858
|
GetMeetInput: {},
|
|
855
859
|
GetMeetsInput: {},
|
|
856
860
|
GetPaymentMethodsInput: {},
|
|
861
|
+
GetUserSubscriptionsInput: {},
|
|
857
862
|
Init: {
|
|
858
863
|
organization_data: "CreateOrganizationDataInput",
|
|
859
864
|
vars: "VarsInput"
|
|
@@ -913,9 +918,15 @@ const AllTypesProps = {
|
|
|
913
918
|
createProjectOfFreeDecision: {
|
|
914
919
|
data: "CreateProjectFreeDecisionInput"
|
|
915
920
|
},
|
|
921
|
+
createWebPushSubscription: {
|
|
922
|
+
data: "CreateSubscriptionInput"
|
|
923
|
+
},
|
|
916
924
|
createWithdraw: {
|
|
917
925
|
input: "CreateWithdrawInput"
|
|
918
926
|
},
|
|
927
|
+
deactivateWebPushSubscriptionById: {
|
|
928
|
+
data: "DeactivateSubscriptionInput"
|
|
929
|
+
},
|
|
919
930
|
declineRequest: {
|
|
920
931
|
data: "DeclineRequestInput"
|
|
921
932
|
},
|
|
@@ -1182,6 +1193,9 @@ const AllTypesProps = {
|
|
|
1182
1193
|
data: "PaymentFiltersInput",
|
|
1183
1194
|
options: "PaginationInput"
|
|
1184
1195
|
},
|
|
1196
|
+
getUserWebPushSubscriptions: {
|
|
1197
|
+
data: "GetUserSubscriptionsInput"
|
|
1198
|
+
},
|
|
1185
1199
|
searchPrivateAccounts: {
|
|
1186
1200
|
data: "SearchPrivateAccountsInput"
|
|
1187
1201
|
}
|
|
@@ -1306,7 +1320,11 @@ const AllTypesProps = {
|
|
|
1306
1320
|
VoteOnAnnualGeneralMeetInput: {
|
|
1307
1321
|
ballot: "AnnualGeneralMeetingVotingBallotSignedDocumentInput",
|
|
1308
1322
|
votes: "VoteItemInput"
|
|
1309
|
-
}
|
|
1323
|
+
},
|
|
1324
|
+
WebPushSubscriptionDataInput: {
|
|
1325
|
+
keys: "WebPushSubscriptionKeysInput"
|
|
1326
|
+
},
|
|
1327
|
+
WebPushSubscriptionKeysInput: {}
|
|
1310
1328
|
};
|
|
1311
1329
|
const ReturnTypes = {
|
|
1312
1330
|
Account: {
|
|
@@ -1532,6 +1550,11 @@ const ReturnTypes = {
|
|
|
1532
1550
|
username: "String",
|
|
1533
1551
|
verifications: "Verification"
|
|
1534
1552
|
},
|
|
1553
|
+
CreateSubscriptionResponse: {
|
|
1554
|
+
message: "String",
|
|
1555
|
+
subscription: "WebPushSubscriptionDto",
|
|
1556
|
+
success: "Boolean"
|
|
1557
|
+
},
|
|
1535
1558
|
CreateWithdrawResponse: {
|
|
1536
1559
|
withdraw_hash: "String"
|
|
1537
1560
|
},
|
|
@@ -1791,6 +1814,8 @@ const ReturnTypes = {
|
|
|
1791
1814
|
referer: "String",
|
|
1792
1815
|
role: "String",
|
|
1793
1816
|
status: "UserStatus",
|
|
1817
|
+
subscriber_hash: "String",
|
|
1818
|
+
subscriber_id: "String",
|
|
1794
1819
|
type: "String",
|
|
1795
1820
|
username: "String"
|
|
1796
1821
|
},
|
|
@@ -1810,7 +1835,9 @@ const ReturnTypes = {
|
|
|
1810
1835
|
createInitialPayment: "GatewayPayment",
|
|
1811
1836
|
createParentOffer: "Transaction",
|
|
1812
1837
|
createProjectOfFreeDecision: "CreatedProjectFreeDecision",
|
|
1838
|
+
createWebPushSubscription: "CreateSubscriptionResponse",
|
|
1813
1839
|
createWithdraw: "CreateWithdrawResponse",
|
|
1840
|
+
deactivateWebPushSubscriptionById: "Boolean",
|
|
1814
1841
|
declineRequest: "Transaction",
|
|
1815
1842
|
deleteBranch: "Boolean",
|
|
1816
1843
|
deletePaymentMethod: "Boolean",
|
|
@@ -2002,6 +2029,8 @@ const ReturnTypes = {
|
|
|
2002
2029
|
getPaymentMethods: "PaymentMethodPaginationResult",
|
|
2003
2030
|
getPayments: "PaginatedGatewayPaymentsPaginationResult",
|
|
2004
2031
|
getSystemInfo: "SystemInfo",
|
|
2032
|
+
getUserWebPushSubscriptions: "WebPushSubscriptionDto",
|
|
2033
|
+
getWebPushSubscriptionStats: "SubscriptionStatsDto",
|
|
2005
2034
|
searchPrivateAccounts: "PrivateAccountSearchResult"
|
|
2006
2035
|
},
|
|
2007
2036
|
Question: {
|
|
@@ -2088,6 +2117,12 @@ const ReturnTypes = {
|
|
|
2088
2117
|
action: "ExtendedBlockchainAction",
|
|
2089
2118
|
documentAggregate: "DocumentAggregate"
|
|
2090
2119
|
},
|
|
2120
|
+
SubscriptionStatsDto: {
|
|
2121
|
+
active: "Int",
|
|
2122
|
+
inactive: "Int",
|
|
2123
|
+
total: "Int",
|
|
2124
|
+
uniqueUsers: "Int"
|
|
2125
|
+
},
|
|
2091
2126
|
SystemInfo: {
|
|
2092
2127
|
blockchain_account: "BlockchainAccount",
|
|
2093
2128
|
blockchain_info: "BlockchainInfoDTO",
|
|
@@ -2162,6 +2197,17 @@ const ReturnTypes = {
|
|
|
2162
2197
|
WaitWeight: {
|
|
2163
2198
|
wait_sec: "Int",
|
|
2164
2199
|
weight: "Int"
|
|
2200
|
+
},
|
|
2201
|
+
WebPushSubscriptionDto: {
|
|
2202
|
+
authKey: "String",
|
|
2203
|
+
createdAt: "DateTime",
|
|
2204
|
+
endpoint: "String",
|
|
2205
|
+
id: "String",
|
|
2206
|
+
isActive: "Boolean",
|
|
2207
|
+
p256dhKey: "String",
|
|
2208
|
+
updatedAt: "DateTime",
|
|
2209
|
+
userAgent: "String",
|
|
2210
|
+
username: "String"
|
|
2165
2211
|
}
|
|
2166
2212
|
};
|
|
2167
2213
|
const Ops = {
|
|
@@ -2755,7 +2801,7 @@ var UserStatus = /* @__PURE__ */ ((UserStatus2) => {
|
|
|
2755
2801
|
return UserStatus2;
|
|
2756
2802
|
})(UserStatus || {});
|
|
2757
2803
|
|
|
2758
|
-
const index$
|
|
2804
|
+
const index$v = {
|
|
2759
2805
|
__proto__: null,
|
|
2760
2806
|
$: $,
|
|
2761
2807
|
AccountType: AccountType,
|
|
@@ -2881,7 +2927,9 @@ const rawMonoAccountSelector = {
|
|
|
2881
2927
|
role: true,
|
|
2882
2928
|
status: true,
|
|
2883
2929
|
type: true,
|
|
2884
|
-
username: true
|
|
2930
|
+
username: true,
|
|
2931
|
+
subscriber_id: true,
|
|
2932
|
+
subscriber_hash: true
|
|
2885
2933
|
};
|
|
2886
2934
|
Selector("MonoAccount")(
|
|
2887
2935
|
rawMonoAccountSelector
|
|
@@ -3133,37 +3181,37 @@ const registeredAccountSelector = Selector("RegisteredAccount")(
|
|
|
3133
3181
|
rawRegisteredAccountSelector
|
|
3134
3182
|
);
|
|
3135
3183
|
|
|
3136
|
-
const name$
|
|
3137
|
-
const mutation$
|
|
3138
|
-
[name$
|
|
3184
|
+
const name$1v = "registerAccount";
|
|
3185
|
+
const mutation$1f = Selector("Mutation")({
|
|
3186
|
+
[name$1v]: [{ data: $("data", "RegisterAccountInput!") }, registeredAccountSelector]
|
|
3139
3187
|
});
|
|
3140
3188
|
|
|
3141
3189
|
const registerAccount = {
|
|
3142
3190
|
__proto__: null,
|
|
3143
|
-
mutation: mutation$
|
|
3144
|
-
name: name$
|
|
3191
|
+
mutation: mutation$1f,
|
|
3192
|
+
name: name$1v
|
|
3145
3193
|
};
|
|
3146
3194
|
|
|
3147
|
-
const name$
|
|
3148
|
-
const mutation$
|
|
3149
|
-
[name$
|
|
3195
|
+
const name$1u = "resetKey";
|
|
3196
|
+
const mutation$1e = Selector("Mutation")({
|
|
3197
|
+
[name$1u]: [{ data: $("data", "ResetKeyInput!") }, true]
|
|
3150
3198
|
});
|
|
3151
3199
|
|
|
3152
3200
|
const resetKey = {
|
|
3153
3201
|
__proto__: null,
|
|
3154
|
-
mutation: mutation$
|
|
3155
|
-
name: name$
|
|
3202
|
+
mutation: mutation$1e,
|
|
3203
|
+
name: name$1u
|
|
3156
3204
|
};
|
|
3157
3205
|
|
|
3158
|
-
const name$
|
|
3159
|
-
const mutation$
|
|
3160
|
-
[name$
|
|
3206
|
+
const name$1t = "startResetKey";
|
|
3207
|
+
const mutation$1d = Selector("Mutation")({
|
|
3208
|
+
[name$1t]: [{ data: $("data", "StartResetKeyInput!") }, true]
|
|
3161
3209
|
});
|
|
3162
3210
|
|
|
3163
3211
|
const startResetKey = {
|
|
3164
3212
|
__proto__: null,
|
|
3165
|
-
mutation: mutation$
|
|
3166
|
-
name: name$
|
|
3213
|
+
mutation: mutation$1d,
|
|
3214
|
+
name: name$1t
|
|
3167
3215
|
};
|
|
3168
3216
|
|
|
3169
3217
|
const paginationSelector = {
|
|
@@ -3484,6 +3532,34 @@ const rawMeetAggregateSelector = {
|
|
|
3484
3532
|
};
|
|
3485
3533
|
const meetAggregateSelector = Selector("MeetAggregate")(rawMeetAggregateSelector);
|
|
3486
3534
|
|
|
3535
|
+
const rawWebPushSubscriptionSelector = {
|
|
3536
|
+
id: true,
|
|
3537
|
+
username: true,
|
|
3538
|
+
endpoint: true,
|
|
3539
|
+
p256dhKey: true,
|
|
3540
|
+
authKey: true,
|
|
3541
|
+
userAgent: true,
|
|
3542
|
+
isActive: true,
|
|
3543
|
+
createdAt: true,
|
|
3544
|
+
updatedAt: true
|
|
3545
|
+
};
|
|
3546
|
+
Selector("WebPushSubscriptionDto")(rawWebPushSubscriptionSelector);
|
|
3547
|
+
|
|
3548
|
+
const rawCreateSubscriptionResponseSelector = {
|
|
3549
|
+
success: true,
|
|
3550
|
+
message: true,
|
|
3551
|
+
subscription: rawWebPushSubscriptionSelector
|
|
3552
|
+
};
|
|
3553
|
+
Selector("CreateSubscriptionResponse")(rawCreateSubscriptionResponseSelector);
|
|
3554
|
+
|
|
3555
|
+
const rawSubscriptionStatsSelector = {
|
|
3556
|
+
total: true,
|
|
3557
|
+
active: true,
|
|
3558
|
+
inactive: true,
|
|
3559
|
+
uniqueUsers: true
|
|
3560
|
+
};
|
|
3561
|
+
Selector("SubscriptionStatsDto")(rawSubscriptionStatsSelector);
|
|
3562
|
+
|
|
3487
3563
|
const rawPaymentMethodSelector = {
|
|
3488
3564
|
data: {
|
|
3489
3565
|
"__typename": true,
|
|
@@ -3618,18 +3694,18 @@ const rawCreateWithdrawResponseSelector = {
|
|
|
3618
3694
|
};
|
|
3619
3695
|
const createWithdrawResponseSelector = Selector("CreateWithdrawResponse")(rawCreateWithdrawResponseSelector);
|
|
3620
3696
|
|
|
3621
|
-
const name$
|
|
3622
|
-
const mutation$
|
|
3623
|
-
[name$
|
|
3697
|
+
const name$1s = "updateAccount";
|
|
3698
|
+
const mutation$1c = Selector("Mutation")({
|
|
3699
|
+
[name$1s]: [{ data: $("data", "UpdateAccountInput!") }, accountSelector]
|
|
3624
3700
|
});
|
|
3625
3701
|
|
|
3626
3702
|
const updateAccount = {
|
|
3627
3703
|
__proto__: null,
|
|
3628
|
-
mutation: mutation$
|
|
3629
|
-
name: name$
|
|
3704
|
+
mutation: mutation$1c,
|
|
3705
|
+
name: name$1s
|
|
3630
3706
|
};
|
|
3631
3707
|
|
|
3632
|
-
const index$
|
|
3708
|
+
const index$u = {
|
|
3633
3709
|
__proto__: null,
|
|
3634
3710
|
RegisterAccount: registerAccount,
|
|
3635
3711
|
ResetKey: resetKey,
|
|
@@ -3637,51 +3713,51 @@ const index$s = {
|
|
|
3637
3713
|
UpdateAccount: updateAccount
|
|
3638
3714
|
};
|
|
3639
3715
|
|
|
3640
|
-
const name$
|
|
3641
|
-
const mutation$
|
|
3642
|
-
[name$
|
|
3716
|
+
const name$1r = "generatePrivacyAgreement";
|
|
3717
|
+
const mutation$1b = Selector("Mutation")({
|
|
3718
|
+
[name$1r]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3643
3719
|
});
|
|
3644
3720
|
|
|
3645
3721
|
const generatePrivacyAgreement = {
|
|
3646
3722
|
__proto__: null,
|
|
3647
|
-
mutation: mutation$
|
|
3648
|
-
name: name$
|
|
3723
|
+
mutation: mutation$1b,
|
|
3724
|
+
name: name$1r
|
|
3649
3725
|
};
|
|
3650
3726
|
|
|
3651
|
-
const name$
|
|
3652
|
-
const mutation$
|
|
3653
|
-
[name$
|
|
3727
|
+
const name$1q = "generateSignatureAgreement";
|
|
3728
|
+
const mutation$1a = Selector("Mutation")({
|
|
3729
|
+
[name$1q]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3654
3730
|
});
|
|
3655
3731
|
|
|
3656
3732
|
const generateSignatureAgreement = {
|
|
3657
3733
|
__proto__: null,
|
|
3658
|
-
mutation: mutation$
|
|
3659
|
-
name: name$
|
|
3734
|
+
mutation: mutation$1a,
|
|
3735
|
+
name: name$1q
|
|
3660
3736
|
};
|
|
3661
3737
|
|
|
3662
|
-
const name$
|
|
3663
|
-
const mutation$
|
|
3664
|
-
[name$
|
|
3738
|
+
const name$1p = "generateWalletAgreement";
|
|
3739
|
+
const mutation$19 = Selector("Mutation")({
|
|
3740
|
+
[name$1p]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3665
3741
|
});
|
|
3666
3742
|
|
|
3667
3743
|
const generateWalletAgreement = {
|
|
3668
3744
|
__proto__: null,
|
|
3669
|
-
mutation: mutation$
|
|
3670
|
-
name: name$
|
|
3745
|
+
mutation: mutation$19,
|
|
3746
|
+
name: name$1p
|
|
3671
3747
|
};
|
|
3672
3748
|
|
|
3673
|
-
const name$
|
|
3674
|
-
const mutation$
|
|
3675
|
-
[name$
|
|
3749
|
+
const name$1o = "generateUserAgreement";
|
|
3750
|
+
const mutation$18 = Selector("Mutation")({
|
|
3751
|
+
[name$1o]: [{ data: $("data", "GenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3676
3752
|
});
|
|
3677
3753
|
|
|
3678
3754
|
const generateUserAgreement = {
|
|
3679
3755
|
__proto__: null,
|
|
3680
|
-
mutation: mutation$
|
|
3681
|
-
name: name$
|
|
3756
|
+
mutation: mutation$18,
|
|
3757
|
+
name: name$1o
|
|
3682
3758
|
};
|
|
3683
3759
|
|
|
3684
|
-
const index$
|
|
3760
|
+
const index$t = {
|
|
3685
3761
|
__proto__: null,
|
|
3686
3762
|
GeneratePrivacyAgreement: generatePrivacyAgreement,
|
|
3687
3763
|
GenerateSignatureAgreement: generateSignatureAgreement,
|
|
@@ -3689,124 +3765,124 @@ const index$r = {
|
|
|
3689
3765
|
GenerateWalletAgreement: generateWalletAgreement
|
|
3690
3766
|
};
|
|
3691
3767
|
|
|
3692
|
-
const name$
|
|
3693
|
-
const mutation$
|
|
3694
|
-
[name$
|
|
3768
|
+
const name$1n = "refresh";
|
|
3769
|
+
const mutation$17 = Selector("Mutation")({
|
|
3770
|
+
[name$1n]: [{ data: $("data", "RefreshInput!") }, registeredAccountSelector]
|
|
3695
3771
|
});
|
|
3696
3772
|
|
|
3697
3773
|
const refresh = {
|
|
3698
3774
|
__proto__: null,
|
|
3699
|
-
mutation: mutation$
|
|
3700
|
-
name: name$
|
|
3775
|
+
mutation: mutation$17,
|
|
3776
|
+
name: name$1n
|
|
3701
3777
|
};
|
|
3702
3778
|
|
|
3703
|
-
const name$
|
|
3704
|
-
const mutation$
|
|
3705
|
-
[name$
|
|
3779
|
+
const name$1m = "logout";
|
|
3780
|
+
const mutation$16 = Selector("Mutation")({
|
|
3781
|
+
[name$1m]: [{ data: $("data", "LogoutInput!") }, true]
|
|
3706
3782
|
});
|
|
3707
3783
|
|
|
3708
3784
|
const logout = {
|
|
3709
3785
|
__proto__: null,
|
|
3710
|
-
mutation: mutation$
|
|
3711
|
-
name: name$
|
|
3786
|
+
mutation: mutation$16,
|
|
3787
|
+
name: name$1m
|
|
3712
3788
|
};
|
|
3713
3789
|
|
|
3714
|
-
const name$
|
|
3715
|
-
const mutation$
|
|
3716
|
-
[name$
|
|
3790
|
+
const name$1l = "login";
|
|
3791
|
+
const mutation$15 = Selector("Mutation")({
|
|
3792
|
+
[name$1l]: [{ data: $("data", "LoginInput!") }, registeredAccountSelector]
|
|
3717
3793
|
});
|
|
3718
3794
|
|
|
3719
3795
|
const login = {
|
|
3720
3796
|
__proto__: null,
|
|
3721
|
-
mutation: mutation$
|
|
3722
|
-
name: name$
|
|
3797
|
+
mutation: mutation$15,
|
|
3798
|
+
name: name$1l
|
|
3723
3799
|
};
|
|
3724
3800
|
|
|
3725
|
-
const index$
|
|
3801
|
+
const index$s = {
|
|
3726
3802
|
__proto__: null,
|
|
3727
3803
|
Login: login,
|
|
3728
3804
|
Logout: logout,
|
|
3729
3805
|
Refresh: refresh
|
|
3730
3806
|
};
|
|
3731
3807
|
|
|
3732
|
-
const name$
|
|
3733
|
-
const mutation$
|
|
3734
|
-
[name$
|
|
3808
|
+
const name$1k = "addTrustedAccount";
|
|
3809
|
+
const mutation$14 = Selector("Mutation")({
|
|
3810
|
+
[name$1k]: [{ data: $("data", "AddTrustedAccountInput!") }, branchSelector]
|
|
3735
3811
|
});
|
|
3736
3812
|
|
|
3737
3813
|
const addTrustedAccount = {
|
|
3738
3814
|
__proto__: null,
|
|
3739
|
-
mutation: mutation$
|
|
3740
|
-
name: name$
|
|
3815
|
+
mutation: mutation$14,
|
|
3816
|
+
name: name$1k
|
|
3741
3817
|
};
|
|
3742
3818
|
|
|
3743
|
-
const name$
|
|
3744
|
-
const mutation$
|
|
3745
|
-
[name$
|
|
3819
|
+
const name$1j = "createBranch";
|
|
3820
|
+
const mutation$13 = Selector("Mutation")({
|
|
3821
|
+
[name$1j]: [{ data: $("data", "CreateBranchInput!") }, branchSelector]
|
|
3746
3822
|
});
|
|
3747
3823
|
|
|
3748
3824
|
const createBranch = {
|
|
3749
3825
|
__proto__: null,
|
|
3750
|
-
mutation: mutation$
|
|
3751
|
-
name: name$
|
|
3826
|
+
mutation: mutation$13,
|
|
3827
|
+
name: name$1j
|
|
3752
3828
|
};
|
|
3753
3829
|
|
|
3754
|
-
const name$
|
|
3755
|
-
const mutation$
|
|
3756
|
-
[name$
|
|
3830
|
+
const name$1i = "deleteBranch";
|
|
3831
|
+
const mutation$12 = Selector("Mutation")({
|
|
3832
|
+
[name$1i]: [{ data: $("data", "DeleteBranchInput!") }, true]
|
|
3757
3833
|
});
|
|
3758
3834
|
|
|
3759
3835
|
const deleteBranch = {
|
|
3760
3836
|
__proto__: null,
|
|
3761
|
-
mutation: mutation$
|
|
3762
|
-
name: name$
|
|
3837
|
+
mutation: mutation$12,
|
|
3838
|
+
name: name$1i
|
|
3763
3839
|
};
|
|
3764
3840
|
|
|
3765
|
-
const name$
|
|
3766
|
-
const mutation
|
|
3767
|
-
[name$
|
|
3841
|
+
const name$1h = "deleteTrustedAccount";
|
|
3842
|
+
const mutation$11 = Selector("Mutation")({
|
|
3843
|
+
[name$1h]: [{ data: $("data", "DeleteTrustedAccountInput!") }, branchSelector]
|
|
3768
3844
|
});
|
|
3769
3845
|
|
|
3770
3846
|
const deleteTrustedAccount = {
|
|
3771
3847
|
__proto__: null,
|
|
3772
|
-
mutation: mutation
|
|
3773
|
-
name: name$
|
|
3848
|
+
mutation: mutation$11,
|
|
3849
|
+
name: name$1h
|
|
3774
3850
|
};
|
|
3775
3851
|
|
|
3776
|
-
const name$
|
|
3777
|
-
const mutation$
|
|
3778
|
-
[name$
|
|
3852
|
+
const name$1g = "editBranch";
|
|
3853
|
+
const mutation$10 = Selector("Mutation")({
|
|
3854
|
+
[name$1g]: [{ data: $("data", "EditBranchInput!") }, branchSelector]
|
|
3779
3855
|
});
|
|
3780
3856
|
|
|
3781
3857
|
const editBranch = {
|
|
3782
3858
|
__proto__: null,
|
|
3783
|
-
mutation: mutation$
|
|
3784
|
-
name: name$
|
|
3859
|
+
mutation: mutation$10,
|
|
3860
|
+
name: name$1g
|
|
3785
3861
|
};
|
|
3786
3862
|
|
|
3787
|
-
const name$
|
|
3788
|
-
const mutation
|
|
3789
|
-
[name$
|
|
3863
|
+
const name$1f = "generateSelectBranchDocument";
|
|
3864
|
+
const mutation$$ = Selector("Mutation")({
|
|
3865
|
+
[name$1f]: [{ data: $("data", "SelectBranchGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3790
3866
|
});
|
|
3791
3867
|
|
|
3792
3868
|
const generateSelectBranchDocument = {
|
|
3793
3869
|
__proto__: null,
|
|
3794
|
-
mutation: mutation
|
|
3795
|
-
name: name$
|
|
3870
|
+
mutation: mutation$$,
|
|
3871
|
+
name: name$1f
|
|
3796
3872
|
};
|
|
3797
3873
|
|
|
3798
|
-
const name$
|
|
3799
|
-
const mutation$
|
|
3800
|
-
[name$
|
|
3874
|
+
const name$1e = "selectBranch";
|
|
3875
|
+
const mutation$_ = Selector("Mutation")({
|
|
3876
|
+
[name$1e]: [{ data: $("data", "SelectBranchInput!") }, true]
|
|
3801
3877
|
});
|
|
3802
3878
|
|
|
3803
3879
|
const selectBranch = {
|
|
3804
3880
|
__proto__: null,
|
|
3805
|
-
mutation: mutation$
|
|
3806
|
-
name: name$
|
|
3881
|
+
mutation: mutation$_,
|
|
3882
|
+
name: name$1e
|
|
3807
3883
|
};
|
|
3808
3884
|
|
|
3809
|
-
const index$
|
|
3885
|
+
const index$r = {
|
|
3810
3886
|
__proto__: null,
|
|
3811
3887
|
AddTrustedAccount: addTrustedAccount,
|
|
3812
3888
|
CreateBranch: createBranch,
|
|
@@ -3817,260 +3893,260 @@ const index$p = {
|
|
|
3817
3893
|
SelectBranch: selectBranch
|
|
3818
3894
|
};
|
|
3819
3895
|
|
|
3820
|
-
const name$
|
|
3821
|
-
const mutation$
|
|
3822
|
-
[name$
|
|
3896
|
+
const name$1d = "acceptChildOrder";
|
|
3897
|
+
const mutation$Z = Selector("Mutation")({
|
|
3898
|
+
[name$1d]: [{ data: $("data", "AcceptChildOrderInput!") }, rawTransactionSelector]
|
|
3823
3899
|
});
|
|
3824
3900
|
|
|
3825
3901
|
const acceptChildOrder = {
|
|
3902
|
+
__proto__: null,
|
|
3903
|
+
mutation: mutation$Z,
|
|
3904
|
+
name: name$1d
|
|
3905
|
+
};
|
|
3906
|
+
|
|
3907
|
+
const name$1c = "cancelRequest";
|
|
3908
|
+
const mutation$Y = Selector("Mutation")({
|
|
3909
|
+
[name$1c]: [{ data: $("data", "CancelRequestInput!") }, rawTransactionSelector]
|
|
3910
|
+
});
|
|
3911
|
+
|
|
3912
|
+
const cancelRequest = {
|
|
3913
|
+
__proto__: null,
|
|
3914
|
+
mutation: mutation$Y,
|
|
3915
|
+
name: name$1c
|
|
3916
|
+
};
|
|
3917
|
+
|
|
3918
|
+
const name$1b = "confirmReceiveOnRequest";
|
|
3919
|
+
const mutation$X = Selector("Mutation")({
|
|
3920
|
+
[name$1b]: [{ data: $("data", "ConfirmReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
3921
|
+
});
|
|
3922
|
+
|
|
3923
|
+
const completeReceiveOnRequest = {
|
|
3826
3924
|
__proto__: null,
|
|
3827
3925
|
mutation: mutation$X,
|
|
3828
|
-
name: name$
|
|
3926
|
+
name: name$1b
|
|
3829
3927
|
};
|
|
3830
3928
|
|
|
3831
|
-
const name$
|
|
3929
|
+
const name$1a = "completeRequest";
|
|
3832
3930
|
const mutation$W = Selector("Mutation")({
|
|
3833
|
-
[name$
|
|
3931
|
+
[name$1a]: [{ data: $("data", "CompleteRequestInput!") }, rawTransactionSelector]
|
|
3834
3932
|
});
|
|
3835
3933
|
|
|
3836
|
-
const
|
|
3934
|
+
const completeRequest = {
|
|
3837
3935
|
__proto__: null,
|
|
3838
3936
|
mutation: mutation$W,
|
|
3839
|
-
name: name$
|
|
3937
|
+
name: name$1a
|
|
3840
3938
|
};
|
|
3841
3939
|
|
|
3842
|
-
const name$
|
|
3940
|
+
const name$19 = "confirmSupplyOnRequest";
|
|
3843
3941
|
const mutation$V = Selector("Mutation")({
|
|
3844
|
-
[name$
|
|
3942
|
+
[name$19]: [{ data: $("data", "ConfirmSupplyOnRequestInput!") }, rawTransactionSelector]
|
|
3845
3943
|
});
|
|
3846
3944
|
|
|
3847
|
-
const
|
|
3945
|
+
const confirmSupplyOnRequest = {
|
|
3848
3946
|
__proto__: null,
|
|
3849
3947
|
mutation: mutation$V,
|
|
3850
|
-
name: name$
|
|
3948
|
+
name: name$19
|
|
3851
3949
|
};
|
|
3852
3950
|
|
|
3853
|
-
const name$
|
|
3951
|
+
const name$18 = "createChildOrder";
|
|
3854
3952
|
const mutation$U = Selector("Mutation")({
|
|
3855
|
-
[name$
|
|
3953
|
+
[name$18]: [{ data: $("data", "CreateChildOrderInput!") }, rawTransactionSelector]
|
|
3856
3954
|
});
|
|
3857
3955
|
|
|
3858
|
-
const
|
|
3956
|
+
const createChildOrder = {
|
|
3859
3957
|
__proto__: null,
|
|
3860
3958
|
mutation: mutation$U,
|
|
3861
|
-
name: name$
|
|
3959
|
+
name: name$18
|
|
3862
3960
|
};
|
|
3863
3961
|
|
|
3864
|
-
const name$
|
|
3962
|
+
const name$17 = "createParentOffer";
|
|
3865
3963
|
const mutation$T = Selector("Mutation")({
|
|
3866
|
-
[name$
|
|
3964
|
+
[name$17]: [{ data: $("data", "CreateParentOfferInput!") }, rawTransactionSelector]
|
|
3867
3965
|
});
|
|
3868
3966
|
|
|
3869
|
-
const
|
|
3967
|
+
const createParentOffer = {
|
|
3870
3968
|
__proto__: null,
|
|
3871
3969
|
mutation: mutation$T,
|
|
3872
|
-
name: name$
|
|
3970
|
+
name: name$17
|
|
3873
3971
|
};
|
|
3874
3972
|
|
|
3875
|
-
const name$
|
|
3973
|
+
const name$16 = "declineRequest";
|
|
3876
3974
|
const mutation$S = Selector("Mutation")({
|
|
3877
|
-
[name$
|
|
3975
|
+
[name$16]: [{ data: $("data", "DeclineRequestInput!") }, rawTransactionSelector]
|
|
3878
3976
|
});
|
|
3879
3977
|
|
|
3880
|
-
const
|
|
3978
|
+
const declineRequest = {
|
|
3881
3979
|
__proto__: null,
|
|
3882
3980
|
mutation: mutation$S,
|
|
3883
|
-
name: name$
|
|
3981
|
+
name: name$16
|
|
3884
3982
|
};
|
|
3885
3983
|
|
|
3886
|
-
const name$
|
|
3984
|
+
const name$15 = "deliverOnRequest";
|
|
3887
3985
|
const mutation$R = Selector("Mutation")({
|
|
3888
|
-
[name$
|
|
3986
|
+
[name$15]: [{ data: $("data", "DeliverOnRequestInput!") }, rawTransactionSelector]
|
|
3889
3987
|
});
|
|
3890
3988
|
|
|
3891
|
-
const
|
|
3989
|
+
const deliverOnRequest = {
|
|
3892
3990
|
__proto__: null,
|
|
3893
3991
|
mutation: mutation$R,
|
|
3894
|
-
name: name$
|
|
3992
|
+
name: name$15
|
|
3895
3993
|
};
|
|
3896
3994
|
|
|
3897
|
-
const name$
|
|
3995
|
+
const name$14 = "disputeOnRequest";
|
|
3898
3996
|
const mutation$Q = Selector("Mutation")({
|
|
3899
|
-
[name$
|
|
3997
|
+
[name$14]: [{ data: $("data", "DisputeOnRequestInput!") }, rawTransactionSelector]
|
|
3900
3998
|
});
|
|
3901
3999
|
|
|
3902
|
-
const
|
|
4000
|
+
const disputeOnRequest = {
|
|
3903
4001
|
__proto__: null,
|
|
3904
4002
|
mutation: mutation$Q,
|
|
3905
|
-
name: name$
|
|
4003
|
+
name: name$14
|
|
3906
4004
|
};
|
|
3907
4005
|
|
|
3908
|
-
const name$
|
|
4006
|
+
const name$13 = "generateAssetContributionAct";
|
|
3909
4007
|
const mutation$P = Selector("Mutation")({
|
|
3910
|
-
[name$
|
|
4008
|
+
[name$13]: [{ data: $("data", "AssetContributionActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3911
4009
|
});
|
|
3912
4010
|
|
|
3913
|
-
const
|
|
4011
|
+
const generateAssetContributionAct = {
|
|
3914
4012
|
__proto__: null,
|
|
3915
4013
|
mutation: mutation$P,
|
|
3916
|
-
name: name$
|
|
4014
|
+
name: name$13
|
|
3917
4015
|
};
|
|
3918
4016
|
|
|
3919
|
-
const name$
|
|
4017
|
+
const name$12 = "generateAssetContributionDecision";
|
|
3920
4018
|
const mutation$O = Selector("Mutation")({
|
|
3921
|
-
[name$
|
|
4019
|
+
[name$12]: [{ data: $("data", "AssetContributionDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3922
4020
|
});
|
|
3923
4021
|
|
|
3924
|
-
const
|
|
4022
|
+
const generateAssetContributionDecision = {
|
|
3925
4023
|
__proto__: null,
|
|
3926
4024
|
mutation: mutation$O,
|
|
3927
|
-
name: name$
|
|
4025
|
+
name: name$12
|
|
3928
4026
|
};
|
|
3929
4027
|
|
|
3930
|
-
const name
|
|
4028
|
+
const name$11 = "generateAssetContributionStatement";
|
|
3931
4029
|
const mutation$N = Selector("Mutation")({
|
|
3932
|
-
[name
|
|
4030
|
+
[name$11]: [{ data: $("data", "AssetContributionStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3933
4031
|
});
|
|
3934
4032
|
|
|
3935
|
-
const
|
|
4033
|
+
const generateAssetContributionStatement = {
|
|
3936
4034
|
__proto__: null,
|
|
3937
4035
|
mutation: mutation$N,
|
|
3938
|
-
name: name
|
|
4036
|
+
name: name$11
|
|
3939
4037
|
};
|
|
3940
4038
|
|
|
3941
|
-
const name$
|
|
4039
|
+
const name$10 = "generateReturnByAssetAct";
|
|
3942
4040
|
const mutation$M = Selector("Mutation")({
|
|
3943
|
-
[name$
|
|
4041
|
+
[name$10]: [{ data: $("data", "ReturnByAssetActGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3944
4042
|
});
|
|
3945
4043
|
|
|
3946
|
-
const
|
|
4044
|
+
const generateReturnByAssetAct = {
|
|
3947
4045
|
__proto__: null,
|
|
3948
4046
|
mutation: mutation$M,
|
|
3949
|
-
name: name$
|
|
4047
|
+
name: name$10
|
|
3950
4048
|
};
|
|
3951
4049
|
|
|
3952
|
-
const name
|
|
4050
|
+
const name$$ = "generateReturnByAssetDecision";
|
|
3953
4051
|
const mutation$L = Selector("Mutation")({
|
|
3954
|
-
[name
|
|
4052
|
+
[name$$]: [{ data: $("data", "ReturnByAssetDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3955
4053
|
});
|
|
3956
4054
|
|
|
3957
|
-
const
|
|
4055
|
+
const generateReturnByAssetDecision = {
|
|
3958
4056
|
__proto__: null,
|
|
3959
4057
|
mutation: mutation$L,
|
|
3960
|
-
name: name
|
|
4058
|
+
name: name$$
|
|
3961
4059
|
};
|
|
3962
4060
|
|
|
3963
|
-
const name$
|
|
4061
|
+
const name$_ = "generateReturnByAssetStatement";
|
|
3964
4062
|
const mutation$K = Selector("Mutation")({
|
|
3965
|
-
[name$
|
|
4063
|
+
[name$_]: [{ data: $("data", "ReturnByAssetStatementGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
3966
4064
|
});
|
|
3967
4065
|
|
|
3968
|
-
const
|
|
4066
|
+
const generateReturnByAssetStatement = {
|
|
3969
4067
|
__proto__: null,
|
|
3970
4068
|
mutation: mutation$K,
|
|
3971
|
-
name: name$
|
|
4069
|
+
name: name$_
|
|
3972
4070
|
};
|
|
3973
4071
|
|
|
3974
|
-
const name$
|
|
4072
|
+
const name$Z = "moderateRequest";
|
|
3975
4073
|
const mutation$J = Selector("Mutation")({
|
|
3976
|
-
[name$
|
|
4074
|
+
[name$Z]: [{ data: $("data", "ModerateRequestInput!") }, rawTransactionSelector]
|
|
3977
4075
|
});
|
|
3978
4076
|
|
|
3979
|
-
const
|
|
4077
|
+
const moderateRequest = {
|
|
3980
4078
|
__proto__: null,
|
|
3981
4079
|
mutation: mutation$J,
|
|
3982
|
-
name: name$
|
|
4080
|
+
name: name$Z
|
|
3983
4081
|
};
|
|
3984
4082
|
|
|
3985
|
-
const name$
|
|
4083
|
+
const name$Y = "prohibitRequest";
|
|
3986
4084
|
const mutation$I = Selector("Mutation")({
|
|
3987
|
-
[name$
|
|
4085
|
+
[name$Y]: [{ data: $("data", "ProhibitRequestInput!") }, rawTransactionSelector]
|
|
3988
4086
|
});
|
|
3989
4087
|
|
|
3990
|
-
const
|
|
4088
|
+
const prohibitRequest = {
|
|
3991
4089
|
__proto__: null,
|
|
3992
4090
|
mutation: mutation$I,
|
|
3993
|
-
name: name$
|
|
4091
|
+
name: name$Y
|
|
3994
4092
|
};
|
|
3995
4093
|
|
|
3996
|
-
const name$
|
|
4094
|
+
const name$X = "publishRequest";
|
|
3997
4095
|
const mutation$H = Selector("Mutation")({
|
|
3998
|
-
[name$
|
|
4096
|
+
[name$X]: [{ data: $("data", "PublishRequestInput!") }, rawTransactionSelector]
|
|
3999
4097
|
});
|
|
4000
4098
|
|
|
4001
|
-
const
|
|
4099
|
+
const publishRequest = {
|
|
4002
4100
|
__proto__: null,
|
|
4003
4101
|
mutation: mutation$H,
|
|
4004
|
-
name: name$
|
|
4102
|
+
name: name$X
|
|
4005
4103
|
};
|
|
4006
4104
|
|
|
4007
|
-
const name$
|
|
4105
|
+
const name$W = "receiveOnRequest";
|
|
4008
4106
|
const mutation$G = Selector("Mutation")({
|
|
4009
|
-
[name$
|
|
4107
|
+
[name$W]: [{ data: $("data", "ReceiveOnRequestInput!") }, rawTransactionSelector]
|
|
4010
4108
|
});
|
|
4011
4109
|
|
|
4012
|
-
const
|
|
4110
|
+
const receiveOnRequest = {
|
|
4013
4111
|
__proto__: null,
|
|
4014
4112
|
mutation: mutation$G,
|
|
4015
|
-
name: name$
|
|
4113
|
+
name: name$W
|
|
4016
4114
|
};
|
|
4017
4115
|
|
|
4018
|
-
const name$
|
|
4116
|
+
const name$V = "supplyOnRequest";
|
|
4019
4117
|
const mutation$F = Selector("Mutation")({
|
|
4020
|
-
[name$
|
|
4118
|
+
[name$V]: [{ data: $("data", "SupplyOnRequestInput!") }, rawTransactionSelector]
|
|
4021
4119
|
});
|
|
4022
4120
|
|
|
4023
|
-
const
|
|
4121
|
+
const supplyOnRequest = {
|
|
4024
4122
|
__proto__: null,
|
|
4025
4123
|
mutation: mutation$F,
|
|
4026
|
-
name: name$
|
|
4124
|
+
name: name$V
|
|
4027
4125
|
};
|
|
4028
4126
|
|
|
4029
|
-
const name$
|
|
4127
|
+
const name$U = "unpublishRequest";
|
|
4030
4128
|
const mutation$E = Selector("Mutation")({
|
|
4031
|
-
[name$
|
|
4129
|
+
[name$U]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
4032
4130
|
});
|
|
4033
4131
|
|
|
4034
|
-
const
|
|
4132
|
+
const unpublishRequest = {
|
|
4035
4133
|
__proto__: null,
|
|
4036
4134
|
mutation: mutation$E,
|
|
4037
|
-
name: name$
|
|
4135
|
+
name: name$U
|
|
4038
4136
|
};
|
|
4039
4137
|
|
|
4040
|
-
const name$
|
|
4138
|
+
const name$T = "updateRequest";
|
|
4041
4139
|
const mutation$D = Selector("Mutation")({
|
|
4042
|
-
[name$
|
|
4043
|
-
});
|
|
4044
|
-
|
|
4045
|
-
const supplyOnRequest = {
|
|
4046
|
-
__proto__: null,
|
|
4047
|
-
mutation: mutation$D,
|
|
4048
|
-
name: name$R
|
|
4049
|
-
};
|
|
4050
|
-
|
|
4051
|
-
const name$Q = "unpublishRequest";
|
|
4052
|
-
const mutation$C = Selector("Mutation")({
|
|
4053
|
-
[name$Q]: [{ data: $("data", "UnpublishRequestInput!") }, rawTransactionSelector]
|
|
4054
|
-
});
|
|
4055
|
-
|
|
4056
|
-
const unpublishRequest = {
|
|
4057
|
-
__proto__: null,
|
|
4058
|
-
mutation: mutation$C,
|
|
4059
|
-
name: name$Q
|
|
4060
|
-
};
|
|
4061
|
-
|
|
4062
|
-
const name$P = "updateRequest";
|
|
4063
|
-
const mutation$B = Selector("Mutation")({
|
|
4064
|
-
[name$P]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
4140
|
+
[name$T]: [{ data: $("data", "UpdateRequestInput!") }, rawTransactionSelector]
|
|
4065
4141
|
});
|
|
4066
4142
|
|
|
4067
4143
|
const updateRequest = {
|
|
4068
4144
|
__proto__: null,
|
|
4069
|
-
mutation: mutation$
|
|
4070
|
-
name: name$
|
|
4145
|
+
mutation: mutation$D,
|
|
4146
|
+
name: name$T
|
|
4071
4147
|
};
|
|
4072
4148
|
|
|
4073
|
-
const index$
|
|
4149
|
+
const index$q = {
|
|
4074
4150
|
__proto__: null,
|
|
4075
4151
|
AcceptChildOrder: acceptChildOrder,
|
|
4076
4152
|
CancelRequest: cancelRequest,
|
|
@@ -4097,91 +4173,91 @@ const index$o = {
|
|
|
4097
4173
|
UpdateRequest: updateRequest
|
|
4098
4174
|
};
|
|
4099
4175
|
|
|
4100
|
-
const name$
|
|
4101
|
-
const mutation$
|
|
4102
|
-
[name$
|
|
4176
|
+
const name$S = "installExtension";
|
|
4177
|
+
const mutation$C = Selector("Mutation")({
|
|
4178
|
+
[name$S]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
4103
4179
|
});
|
|
4104
4180
|
|
|
4105
4181
|
const installExtension = {
|
|
4106
4182
|
__proto__: null,
|
|
4107
|
-
mutation: mutation$
|
|
4108
|
-
name: name$
|
|
4183
|
+
mutation: mutation$C,
|
|
4184
|
+
name: name$S
|
|
4109
4185
|
};
|
|
4110
4186
|
|
|
4111
|
-
const name$
|
|
4112
|
-
const mutation$
|
|
4113
|
-
[name$
|
|
4187
|
+
const name$R = "uninstallExtension";
|
|
4188
|
+
const mutation$B = Selector("Mutation")({
|
|
4189
|
+
[name$R]: [{ data: $("data", "UninstallExtensionInput!") }, true]
|
|
4114
4190
|
});
|
|
4115
4191
|
|
|
4116
4192
|
const uninstallExtension = {
|
|
4117
4193
|
__proto__: null,
|
|
4118
|
-
mutation: mutation$
|
|
4119
|
-
name: name$
|
|
4194
|
+
mutation: mutation$B,
|
|
4195
|
+
name: name$R
|
|
4120
4196
|
};
|
|
4121
4197
|
|
|
4122
|
-
const name$
|
|
4123
|
-
const mutation$
|
|
4124
|
-
[name$
|
|
4198
|
+
const name$Q = "updateExtension";
|
|
4199
|
+
const mutation$A = Selector("Mutation")({
|
|
4200
|
+
[name$Q]: [{ data: $("data", "ExtensionInput!") }, extensionSelector]
|
|
4125
4201
|
});
|
|
4126
4202
|
|
|
4127
4203
|
const updateExtension = {
|
|
4128
4204
|
__proto__: null,
|
|
4129
|
-
mutation: mutation$
|
|
4130
|
-
name: name$
|
|
4205
|
+
mutation: mutation$A,
|
|
4206
|
+
name: name$Q
|
|
4131
4207
|
};
|
|
4132
4208
|
|
|
4133
|
-
const index$
|
|
4209
|
+
const index$p = {
|
|
4134
4210
|
__proto__: null,
|
|
4135
4211
|
InstallExtension: installExtension,
|
|
4136
4212
|
UninstallExtension: uninstallExtension,
|
|
4137
4213
|
UpdateExtension: updateExtension
|
|
4138
4214
|
};
|
|
4139
4215
|
|
|
4140
|
-
const name$
|
|
4141
|
-
const mutation$
|
|
4142
|
-
[name$
|
|
4216
|
+
const name$P = "generateProjectOfFreeDecision";
|
|
4217
|
+
const mutation$z = Selector("Mutation")({
|
|
4218
|
+
[name$P]: [{ data: $("data", "ProjectFreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4143
4219
|
});
|
|
4144
4220
|
|
|
4145
4221
|
const generateProjectOfFreeDecisionDocument = {
|
|
4146
4222
|
__proto__: null,
|
|
4147
|
-
mutation: mutation$
|
|
4148
|
-
name: name$
|
|
4223
|
+
mutation: mutation$z,
|
|
4224
|
+
name: name$P
|
|
4149
4225
|
};
|
|
4150
4226
|
|
|
4151
|
-
const name$
|
|
4152
|
-
const mutation$
|
|
4153
|
-
[name$
|
|
4227
|
+
const name$O = "generateFreeDecision";
|
|
4228
|
+
const mutation$y = Selector("Mutation")({
|
|
4229
|
+
[name$O]: [{ data: $("data", "FreeDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4154
4230
|
});
|
|
4155
4231
|
|
|
4156
4232
|
const generateFreeDecision = {
|
|
4157
4233
|
__proto__: null,
|
|
4158
|
-
mutation: mutation$
|
|
4159
|
-
name: name$
|
|
4234
|
+
mutation: mutation$y,
|
|
4235
|
+
name: name$O
|
|
4160
4236
|
};
|
|
4161
4237
|
|
|
4162
|
-
const name$
|
|
4163
|
-
const mutation$
|
|
4164
|
-
[name$
|
|
4238
|
+
const name$N = "publishProjectOfFreeDecision";
|
|
4239
|
+
const mutation$x = Selector("Mutation")({
|
|
4240
|
+
[name$N]: [{ data: $("data", "PublishProjectFreeDecisionInput!") }, true]
|
|
4165
4241
|
});
|
|
4166
4242
|
|
|
4167
4243
|
const publishProjectOfFreeDecision = {
|
|
4168
4244
|
__proto__: null,
|
|
4169
|
-
mutation: mutation$
|
|
4170
|
-
name: name$
|
|
4245
|
+
mutation: mutation$x,
|
|
4246
|
+
name: name$N
|
|
4171
4247
|
};
|
|
4172
4248
|
|
|
4173
|
-
const name$
|
|
4174
|
-
const mutation$
|
|
4175
|
-
[name$
|
|
4249
|
+
const name$M = "createProjectOfFreeDecision";
|
|
4250
|
+
const mutation$w = Selector("Mutation")({
|
|
4251
|
+
[name$M]: [{ data: $("data", "CreateProjectFreeDecisionInput!") }, createdProjectFreeDecisionSelector]
|
|
4176
4252
|
});
|
|
4177
4253
|
|
|
4178
4254
|
const createProjectOfFreeDecision = {
|
|
4179
4255
|
__proto__: null,
|
|
4180
|
-
mutation: mutation$
|
|
4181
|
-
name: name$
|
|
4256
|
+
mutation: mutation$w,
|
|
4257
|
+
name: name$M
|
|
4182
4258
|
};
|
|
4183
4259
|
|
|
4184
|
-
const index$
|
|
4260
|
+
const index$o = {
|
|
4185
4261
|
__proto__: null,
|
|
4186
4262
|
CreateProjectOfFreeDecision: createProjectOfFreeDecision,
|
|
4187
4263
|
GenerateFreeDecision: generateFreeDecision,
|
|
@@ -4189,60 +4265,60 @@ const index$m = {
|
|
|
4189
4265
|
PublishProjectOfFreeDecision: publishProjectOfFreeDecision
|
|
4190
4266
|
};
|
|
4191
4267
|
|
|
4192
|
-
const name$
|
|
4193
|
-
const mutation$
|
|
4194
|
-
[name$
|
|
4268
|
+
const name$L = "setPaymentStatus";
|
|
4269
|
+
const mutation$v = Selector("Mutation")({
|
|
4270
|
+
[name$L]: [{ data: $("data", "SetPaymentStatusInput!") }, paymentSelector]
|
|
4195
4271
|
});
|
|
4196
4272
|
|
|
4197
4273
|
const updatePaymentStatus = {
|
|
4198
4274
|
__proto__: null,
|
|
4199
|
-
mutation: mutation$
|
|
4200
|
-
name: name$
|
|
4275
|
+
mutation: mutation$v,
|
|
4276
|
+
name: name$L
|
|
4201
4277
|
};
|
|
4202
4278
|
|
|
4203
|
-
const name$
|
|
4204
|
-
const mutation$
|
|
4205
|
-
[name$
|
|
4279
|
+
const name$K = "createInitialPayment";
|
|
4280
|
+
const mutation$u = Selector("Mutation")({
|
|
4281
|
+
[name$K]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
4206
4282
|
});
|
|
4207
4283
|
|
|
4208
4284
|
const createInitialPayment$1 = {
|
|
4209
4285
|
__proto__: null,
|
|
4210
|
-
mutation: mutation$
|
|
4211
|
-
name: name$
|
|
4286
|
+
mutation: mutation$u,
|
|
4287
|
+
name: name$K
|
|
4212
4288
|
};
|
|
4213
4289
|
|
|
4214
|
-
const name$
|
|
4215
|
-
const mutation$
|
|
4216
|
-
[name$
|
|
4290
|
+
const name$J = "createDepositPayment";
|
|
4291
|
+
const mutation$t = Selector("Mutation")({
|
|
4292
|
+
[name$J]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
4217
4293
|
});
|
|
4218
4294
|
|
|
4219
4295
|
const createDepositPayment$1 = {
|
|
4220
4296
|
__proto__: null,
|
|
4221
|
-
mutation: mutation$
|
|
4222
|
-
name: name$
|
|
4297
|
+
mutation: mutation$t,
|
|
4298
|
+
name: name$J
|
|
4223
4299
|
};
|
|
4224
4300
|
|
|
4225
|
-
const index$
|
|
4301
|
+
const index$n = {
|
|
4226
4302
|
__proto__: null,
|
|
4227
4303
|
CreateDepositPayment: createDepositPayment$1,
|
|
4228
4304
|
CreateInitialPayment: createInitialPayment$1,
|
|
4229
4305
|
SetPaymentStatus: updatePaymentStatus
|
|
4230
4306
|
};
|
|
4231
4307
|
|
|
4232
|
-
const name$
|
|
4233
|
-
const mutation$
|
|
4234
|
-
[name$
|
|
4308
|
+
const name$I = "createAnnualGeneralMeet";
|
|
4309
|
+
const mutation$s = Selector("Mutation")({
|
|
4310
|
+
[name$I]: [{ data: $("data", "CreateAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4235
4311
|
});
|
|
4236
4312
|
|
|
4237
4313
|
const createAnnualGeneralMeet = {
|
|
4238
4314
|
__proto__: null,
|
|
4239
|
-
mutation: mutation$
|
|
4240
|
-
name: name$
|
|
4315
|
+
mutation: mutation$s,
|
|
4316
|
+
name: name$I
|
|
4241
4317
|
};
|
|
4242
4318
|
|
|
4243
|
-
const name$
|
|
4244
|
-
const mutation$
|
|
4245
|
-
[name$
|
|
4319
|
+
const name$H = "generateAnnualGeneralMeetAgendaDocument";
|
|
4320
|
+
const mutation$r = Selector("Mutation")({
|
|
4321
|
+
[name$H]: [
|
|
4246
4322
|
{
|
|
4247
4323
|
data: $("data", "AnnualGeneralMeetingAgendaGenerateDocumentInput!"),
|
|
4248
4324
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4253,13 +4329,13 @@ const mutation$p = Selector("Mutation")({
|
|
|
4253
4329
|
|
|
4254
4330
|
const generateAnnualGeneralMeetAgendaDocument = {
|
|
4255
4331
|
__proto__: null,
|
|
4256
|
-
mutation: mutation$
|
|
4257
|
-
name: name$
|
|
4332
|
+
mutation: mutation$r,
|
|
4333
|
+
name: name$H
|
|
4258
4334
|
};
|
|
4259
4335
|
|
|
4260
|
-
const name$
|
|
4261
|
-
const mutation$
|
|
4262
|
-
[name$
|
|
4336
|
+
const name$G = "generateAnnualGeneralMeetDecisionDocument";
|
|
4337
|
+
const mutation$q = Selector("Mutation")({
|
|
4338
|
+
[name$G]: [
|
|
4263
4339
|
{
|
|
4264
4340
|
data: $("data", "AnnualGeneralMeetingDecisionGenerateDocumentInput!"),
|
|
4265
4341
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4270,13 +4346,13 @@ const mutation$o = Selector("Mutation")({
|
|
|
4270
4346
|
|
|
4271
4347
|
const generateAnnualGeneralMeetDecisionDocument = {
|
|
4272
4348
|
__proto__: null,
|
|
4273
|
-
mutation: mutation$
|
|
4274
|
-
name: name$
|
|
4349
|
+
mutation: mutation$q,
|
|
4350
|
+
name: name$G
|
|
4275
4351
|
};
|
|
4276
4352
|
|
|
4277
|
-
const name$
|
|
4278
|
-
const mutation$
|
|
4279
|
-
[name$
|
|
4353
|
+
const name$F = "generateAnnualGeneralMeetNotificationDocument";
|
|
4354
|
+
const mutation$p = Selector("Mutation")({
|
|
4355
|
+
[name$F]: [
|
|
4280
4356
|
{
|
|
4281
4357
|
data: $("data", "AnnualGeneralMeetingNotificationGenerateDocumentInput!"),
|
|
4282
4358
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4287,13 +4363,13 @@ const mutation$n = Selector("Mutation")({
|
|
|
4287
4363
|
|
|
4288
4364
|
const generateAnnualGeneralMeetNotificationDocument = {
|
|
4289
4365
|
__proto__: null,
|
|
4290
|
-
mutation: mutation$
|
|
4291
|
-
name: name$
|
|
4366
|
+
mutation: mutation$p,
|
|
4367
|
+
name: name$F
|
|
4292
4368
|
};
|
|
4293
4369
|
|
|
4294
|
-
const name$
|
|
4295
|
-
const mutation$
|
|
4296
|
-
[name$
|
|
4370
|
+
const name$E = "generateBallotForAnnualGeneralMeetDocument";
|
|
4371
|
+
const mutation$o = Selector("Mutation")({
|
|
4372
|
+
[name$E]: [
|
|
4297
4373
|
{
|
|
4298
4374
|
data: $("data", "AnnualGeneralMeetingVotingBallotGenerateDocumentInput!"),
|
|
4299
4375
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4304,13 +4380,13 @@ const mutation$m = Selector("Mutation")({
|
|
|
4304
4380
|
|
|
4305
4381
|
const generateBallotForAnnualGeneralMeetDocument = {
|
|
4306
4382
|
__proto__: null,
|
|
4307
|
-
mutation: mutation$
|
|
4308
|
-
name: name$
|
|
4383
|
+
mutation: mutation$o,
|
|
4384
|
+
name: name$E
|
|
4309
4385
|
};
|
|
4310
4386
|
|
|
4311
|
-
const name$
|
|
4312
|
-
const mutation$
|
|
4313
|
-
[name$
|
|
4387
|
+
const name$D = "generateSovietDecisionOnAnnualMeetDocument";
|
|
4388
|
+
const mutation$n = Selector("Mutation")({
|
|
4389
|
+
[name$D]: [{
|
|
4314
4390
|
data: $("data", "AnnualGeneralMeetingSovietDecisionGenerateDocumentInput!"),
|
|
4315
4391
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
4316
4392
|
}, documentSelector]
|
|
@@ -4318,66 +4394,66 @@ const mutation$l = Selector("Mutation")({
|
|
|
4318
4394
|
|
|
4319
4395
|
const generateSovietDecisionOnAnnualMeetDocument = {
|
|
4320
4396
|
__proto__: null,
|
|
4321
|
-
mutation: mutation$
|
|
4322
|
-
name: name$
|
|
4397
|
+
mutation: mutation$n,
|
|
4398
|
+
name: name$D
|
|
4323
4399
|
};
|
|
4324
4400
|
|
|
4325
|
-
const name$
|
|
4326
|
-
const mutation$
|
|
4327
|
-
[name$
|
|
4401
|
+
const name$C = "notifyOnAnnualGeneralMeet";
|
|
4402
|
+
const mutation$m = Selector("Mutation")({
|
|
4403
|
+
[name$C]: [{ data: $("data", "NotifyOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4328
4404
|
});
|
|
4329
4405
|
|
|
4330
4406
|
const notifyOnAnnualGeneralMeet = {
|
|
4331
4407
|
__proto__: null,
|
|
4332
|
-
mutation: mutation$
|
|
4333
|
-
name: name$
|
|
4408
|
+
mutation: mutation$m,
|
|
4409
|
+
name: name$C
|
|
4334
4410
|
};
|
|
4335
4411
|
|
|
4336
|
-
const name$
|
|
4337
|
-
const mutation$
|
|
4338
|
-
[name$
|
|
4412
|
+
const name$B = "restartAnnualGeneralMeet";
|
|
4413
|
+
const mutation$l = Selector("Mutation")({
|
|
4414
|
+
[name$B]: [{ data: $("data", "RestartAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4339
4415
|
});
|
|
4340
4416
|
|
|
4341
4417
|
const restartAnnualGeneralMeet = {
|
|
4342
4418
|
__proto__: null,
|
|
4343
|
-
mutation: mutation$
|
|
4344
|
-
name: name$
|
|
4419
|
+
mutation: mutation$l,
|
|
4420
|
+
name: name$B
|
|
4345
4421
|
};
|
|
4346
4422
|
|
|
4347
|
-
const name$
|
|
4348
|
-
const mutation$
|
|
4349
|
-
[name$
|
|
4423
|
+
const name$A = "signByPresiderOnAnnualGeneralMeet";
|
|
4424
|
+
const mutation$k = Selector("Mutation")({
|
|
4425
|
+
[name$A]: [{ data: $("data", "SignByPresiderOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4350
4426
|
});
|
|
4351
4427
|
|
|
4352
4428
|
const signByPresiderOnAnnualGeneralMeet = {
|
|
4353
4429
|
__proto__: null,
|
|
4354
|
-
mutation: mutation$
|
|
4355
|
-
name: name$
|
|
4430
|
+
mutation: mutation$k,
|
|
4431
|
+
name: name$A
|
|
4356
4432
|
};
|
|
4357
4433
|
|
|
4358
|
-
const name$
|
|
4359
|
-
const mutation$
|
|
4360
|
-
[name$
|
|
4434
|
+
const name$z = "signBySecretaryOnAnnualGeneralMeet";
|
|
4435
|
+
const mutation$j = Selector("Mutation")({
|
|
4436
|
+
[name$z]: [{ data: $("data", "SignBySecretaryOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4361
4437
|
});
|
|
4362
4438
|
|
|
4363
4439
|
const signBySecretaryOnAnnualGeneralMeet = {
|
|
4364
4440
|
__proto__: null,
|
|
4365
|
-
mutation: mutation$
|
|
4366
|
-
name: name$
|
|
4441
|
+
mutation: mutation$j,
|
|
4442
|
+
name: name$z
|
|
4367
4443
|
};
|
|
4368
4444
|
|
|
4369
|
-
const name$
|
|
4370
|
-
const mutation$
|
|
4371
|
-
[name$
|
|
4445
|
+
const name$y = "voteOnAnnualGeneralMeet";
|
|
4446
|
+
const mutation$i = Selector("Mutation")({
|
|
4447
|
+
[name$y]: [{ data: $("data", "VoteOnAnnualGeneralMeetInput!") }, meetAggregateSelector]
|
|
4372
4448
|
});
|
|
4373
4449
|
|
|
4374
4450
|
const voteOnAnnualGeneralMeet = {
|
|
4375
4451
|
__proto__: null,
|
|
4376
|
-
mutation: mutation$
|
|
4377
|
-
name: name$
|
|
4452
|
+
mutation: mutation$i,
|
|
4453
|
+
name: name$y
|
|
4378
4454
|
};
|
|
4379
4455
|
|
|
4380
|
-
const index$
|
|
4456
|
+
const index$m = {
|
|
4381
4457
|
__proto__: null,
|
|
4382
4458
|
CreateAnnualGeneralMeet: createAnnualGeneralMeet,
|
|
4383
4459
|
GenerateAnnualGeneralMeetAgendaDocument: generateAnnualGeneralMeetAgendaDocument,
|
|
@@ -4392,62 +4468,90 @@ const index$k = {
|
|
|
4392
4468
|
VoteOnAnnualGeneralMeet: voteOnAnnualGeneralMeet
|
|
4393
4469
|
};
|
|
4394
4470
|
|
|
4395
|
-
const name$
|
|
4471
|
+
const name$x = "createWebPushSubscription";
|
|
4472
|
+
const mutation$h = Selector("Mutation")({
|
|
4473
|
+
[name$x]: [{ data: $("data", "CreateSubscriptionInput!") }, rawCreateSubscriptionResponseSelector]
|
|
4474
|
+
});
|
|
4475
|
+
|
|
4476
|
+
const createWebPushSubscription = {
|
|
4477
|
+
__proto__: null,
|
|
4478
|
+
mutation: mutation$h,
|
|
4479
|
+
name: name$x
|
|
4480
|
+
};
|
|
4481
|
+
|
|
4482
|
+
const name$w = "deactivateWebPushSubscriptionById";
|
|
4483
|
+
const mutation$g = Selector("Mutation")({
|
|
4484
|
+
[name$w]: [{ data: $("data", "DeactivateSubscriptionInput!") }, true]
|
|
4485
|
+
});
|
|
4486
|
+
|
|
4487
|
+
const deactivateWebPushSubscriptionById = {
|
|
4488
|
+
__proto__: null,
|
|
4489
|
+
mutation: mutation$g,
|
|
4490
|
+
name: name$w
|
|
4491
|
+
};
|
|
4492
|
+
|
|
4493
|
+
const index$l = {
|
|
4494
|
+
__proto__: null,
|
|
4495
|
+
CreateWebPushSubscription: createWebPushSubscription,
|
|
4496
|
+
DeactivateWebPushSubscriptionById: deactivateWebPushSubscriptionById
|
|
4497
|
+
};
|
|
4498
|
+
|
|
4499
|
+
const name$v = "addParticipant";
|
|
4396
4500
|
const mutation$f = Selector("Mutation")({
|
|
4397
|
-
[name$
|
|
4501
|
+
[name$v]: [{ data: $("data", "AddParticipantInput!") }, accountSelector]
|
|
4398
4502
|
});
|
|
4399
4503
|
|
|
4400
4504
|
const addParticipant = {
|
|
4401
4505
|
__proto__: null,
|
|
4402
4506
|
mutation: mutation$f,
|
|
4403
|
-
name: name$
|
|
4507
|
+
name: name$v
|
|
4404
4508
|
};
|
|
4405
4509
|
|
|
4406
|
-
const name$
|
|
4510
|
+
const name$u = "generateParticipantApplication";
|
|
4407
4511
|
const mutation$e = Selector("Mutation")({
|
|
4408
|
-
[name$
|
|
4512
|
+
[name$u]: [{ data: $("data", "ParticipantApplicationGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4409
4513
|
});
|
|
4410
4514
|
|
|
4411
4515
|
const generateParticipantApplication = {
|
|
4412
4516
|
__proto__: null,
|
|
4413
4517
|
mutation: mutation$e,
|
|
4414
|
-
name: name$
|
|
4518
|
+
name: name$u
|
|
4415
4519
|
};
|
|
4416
4520
|
|
|
4417
|
-
const name$
|
|
4521
|
+
const name$t = "generateParticipantApplicationDecision";
|
|
4418
4522
|
const mutation$d = Selector("Mutation")({
|
|
4419
|
-
[name$
|
|
4523
|
+
[name$t]: [{ data: $("data", "ParticipantApplicationDecisionGenerateDocumentInput!"), options: $("options", "GenerateDocumentOptionsInput") }, documentSelector]
|
|
4420
4524
|
});
|
|
4421
4525
|
|
|
4422
4526
|
const generateParticipantApplicationDecision = {
|
|
4423
4527
|
__proto__: null,
|
|
4424
4528
|
mutation: mutation$d,
|
|
4425
|
-
name: name$
|
|
4529
|
+
name: name$t
|
|
4426
4530
|
};
|
|
4427
4531
|
|
|
4428
|
-
const name$
|
|
4532
|
+
const name$s = "registerParticipant";
|
|
4429
4533
|
const mutation$c = Selector("Mutation")({
|
|
4430
|
-
[name$
|
|
4534
|
+
[name$s]: [{ data: $("data", "RegisterParticipantInput!") }, accountSelector]
|
|
4431
4535
|
});
|
|
4432
4536
|
|
|
4433
4537
|
const registerParticipant = {
|
|
4434
4538
|
__proto__: null,
|
|
4435
4539
|
mutation: mutation$c,
|
|
4436
|
-
name: name$
|
|
4540
|
+
name: name$s
|
|
4437
4541
|
};
|
|
4438
4542
|
|
|
4439
|
-
const name$
|
|
4543
|
+
const name$r = "createInitialPayment";
|
|
4440
4544
|
const mutation$b = Selector("Mutation")({
|
|
4441
|
-
[name$
|
|
4545
|
+
[name$r]: [{ data: $("data", "CreateInitialPaymentInput!") }, paymentSelector]
|
|
4442
4546
|
});
|
|
4443
4547
|
|
|
4444
4548
|
const createInitialPayment = {
|
|
4445
4549
|
__proto__: null,
|
|
4446
4550
|
mutation: mutation$b,
|
|
4447
|
-
name: name$
|
|
4551
|
+
name: name$r
|
|
4448
4552
|
};
|
|
4449
4553
|
|
|
4450
|
-
const index$
|
|
4554
|
+
const index$k = {
|
|
4451
4555
|
__proto__: null,
|
|
4452
4556
|
AddParticipant: addParticipant,
|
|
4453
4557
|
CreateInitialPayment: createInitialPayment,
|
|
@@ -4456,91 +4560,91 @@ const index$j = {
|
|
|
4456
4560
|
RegisterParticipant: registerParticipant
|
|
4457
4561
|
};
|
|
4458
4562
|
|
|
4459
|
-
const name$
|
|
4563
|
+
const name$q = "createBankAccount";
|
|
4460
4564
|
const mutation$a = Selector("Mutation")({
|
|
4461
|
-
[name$
|
|
4565
|
+
[name$q]: [{ data: $("data", "CreateBankAccountInput!") }, paymentMethodSelector]
|
|
4462
4566
|
});
|
|
4463
4567
|
|
|
4464
4568
|
const createBankAccount = {
|
|
4465
4569
|
__proto__: null,
|
|
4466
4570
|
mutation: mutation$a,
|
|
4467
|
-
name: name$
|
|
4571
|
+
name: name$q
|
|
4468
4572
|
};
|
|
4469
4573
|
|
|
4470
|
-
const name$
|
|
4574
|
+
const name$p = "deletePaymentMethod";
|
|
4471
4575
|
const mutation$9 = Selector("Mutation")({
|
|
4472
|
-
[name$
|
|
4576
|
+
[name$p]: [{ data: $("data", "DeletePaymentMethodInput!") }, true]
|
|
4473
4577
|
});
|
|
4474
4578
|
|
|
4475
4579
|
const deletePaymentMethod = {
|
|
4476
4580
|
__proto__: null,
|
|
4477
4581
|
mutation: mutation$9,
|
|
4478
|
-
name: name$
|
|
4582
|
+
name: name$p
|
|
4479
4583
|
};
|
|
4480
4584
|
|
|
4481
|
-
const name$
|
|
4585
|
+
const name$o = "updateBankAccount";
|
|
4482
4586
|
const mutation$8 = Selector("Mutation")({
|
|
4483
|
-
[name$
|
|
4587
|
+
[name$o]: [{ data: $("data", "UpdateBankAccountInput!") }, paymentMethodSelector]
|
|
4484
4588
|
});
|
|
4485
4589
|
|
|
4486
4590
|
const updateBankAccount = {
|
|
4487
4591
|
__proto__: null,
|
|
4488
4592
|
mutation: mutation$8,
|
|
4489
|
-
name: name$
|
|
4593
|
+
name: name$o
|
|
4490
4594
|
};
|
|
4491
4595
|
|
|
4492
|
-
const index$
|
|
4596
|
+
const index$j = {
|
|
4493
4597
|
__proto__: null,
|
|
4494
4598
|
CreateBankAccount: createBankAccount,
|
|
4495
4599
|
DeletePaymentMethod: deletePaymentMethod,
|
|
4496
4600
|
UpdateBankAccount: updateBankAccount
|
|
4497
4601
|
};
|
|
4498
4602
|
|
|
4499
|
-
const name$
|
|
4603
|
+
const name$n = "initSystem";
|
|
4500
4604
|
const mutation$7 = Selector("Mutation")({
|
|
4501
|
-
[name$
|
|
4605
|
+
[name$n]: [{ data: $("data", "Init!") }, systemInfoSelector]
|
|
4502
4606
|
});
|
|
4503
4607
|
|
|
4504
4608
|
const initSystem = {
|
|
4505
4609
|
__proto__: null,
|
|
4506
4610
|
mutation: mutation$7,
|
|
4507
|
-
name: name$
|
|
4611
|
+
name: name$n
|
|
4508
4612
|
};
|
|
4509
4613
|
|
|
4510
|
-
const name$
|
|
4614
|
+
const name$m = "installSystem";
|
|
4511
4615
|
const mutation$6 = Selector("Mutation")({
|
|
4512
|
-
[name$
|
|
4616
|
+
[name$m]: [{ data: $("data", "Install!") }, systemInfoSelector]
|
|
4513
4617
|
});
|
|
4514
4618
|
|
|
4515
4619
|
const installSystem = {
|
|
4516
4620
|
__proto__: null,
|
|
4517
4621
|
mutation: mutation$6,
|
|
4518
|
-
name: name$
|
|
4622
|
+
name: name$m
|
|
4519
4623
|
};
|
|
4520
4624
|
|
|
4521
|
-
const name$
|
|
4625
|
+
const name$l = "setWif";
|
|
4522
4626
|
const mutation$5 = Selector("Mutation")({
|
|
4523
|
-
[name$
|
|
4627
|
+
[name$l]: [{ data: $("data", "Update!") }, true]
|
|
4524
4628
|
});
|
|
4525
4629
|
|
|
4526
4630
|
const setWif = {
|
|
4527
4631
|
__proto__: null,
|
|
4528
4632
|
mutation: mutation$5,
|
|
4529
|
-
name: name$
|
|
4633
|
+
name: name$l
|
|
4530
4634
|
};
|
|
4531
4635
|
|
|
4532
|
-
const name$
|
|
4636
|
+
const name$k = "updateSystem";
|
|
4533
4637
|
const mutation$4 = Selector("Mutation")({
|
|
4534
|
-
[name$
|
|
4638
|
+
[name$k]: [{ data: $("data", "Update!") }, systemInfoSelector]
|
|
4535
4639
|
});
|
|
4536
4640
|
|
|
4537
4641
|
const updateSystem = {
|
|
4538
4642
|
__proto__: null,
|
|
4539
4643
|
mutation: mutation$4,
|
|
4540
|
-
name: name$
|
|
4644
|
+
name: name$k
|
|
4541
4645
|
};
|
|
4542
4646
|
|
|
4543
|
-
const index$
|
|
4647
|
+
const index$i = {
|
|
4544
4648
|
__proto__: null,
|
|
4545
4649
|
InitSystem: initSystem,
|
|
4546
4650
|
InstallSystem: installSystem,
|
|
@@ -4548,31 +4652,31 @@ const index$h = {
|
|
|
4548
4652
|
UpdateSystem: updateSystem
|
|
4549
4653
|
};
|
|
4550
4654
|
|
|
4551
|
-
const name$
|
|
4655
|
+
const name$j = "createWithdraw";
|
|
4552
4656
|
const mutation$3 = Selector("Mutation")({
|
|
4553
|
-
[name$
|
|
4657
|
+
[name$j]: [{ input: $("input", "CreateWithdrawInput!") }, createWithdrawResponseSelector]
|
|
4554
4658
|
});
|
|
4555
4659
|
|
|
4556
4660
|
const createWithdraw = {
|
|
4557
4661
|
__proto__: null,
|
|
4558
4662
|
mutation: mutation$3,
|
|
4559
|
-
name: name$
|
|
4663
|
+
name: name$j
|
|
4560
4664
|
};
|
|
4561
4665
|
|
|
4562
|
-
const name$
|
|
4666
|
+
const name$i = "createDepositPayment";
|
|
4563
4667
|
const mutation$2 = Selector("Mutation")({
|
|
4564
|
-
[name$
|
|
4668
|
+
[name$i]: [{ data: $("data", "CreateDepositPaymentInput!") }, paymentSelector]
|
|
4565
4669
|
});
|
|
4566
4670
|
|
|
4567
4671
|
const createDepositPayment = {
|
|
4568
4672
|
__proto__: null,
|
|
4569
4673
|
mutation: mutation$2,
|
|
4570
|
-
name: name$
|
|
4674
|
+
name: name$i
|
|
4571
4675
|
};
|
|
4572
4676
|
|
|
4573
|
-
const name$
|
|
4677
|
+
const name$h = "generateReturnByMoneyStatementDocument";
|
|
4574
4678
|
const mutation$1 = Selector("Mutation")({
|
|
4575
|
-
[name$
|
|
4679
|
+
[name$h]: [
|
|
4576
4680
|
{
|
|
4577
4681
|
data: $("data", "ReturnByMoneyGenerateDocumentInput!"),
|
|
4578
4682
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4584,12 +4688,12 @@ const mutation$1 = Selector("Mutation")({
|
|
|
4584
4688
|
const generateReturnByMoneyStatementDocument = {
|
|
4585
4689
|
__proto__: null,
|
|
4586
4690
|
mutation: mutation$1,
|
|
4587
|
-
name: name$
|
|
4691
|
+
name: name$h
|
|
4588
4692
|
};
|
|
4589
4693
|
|
|
4590
|
-
const name$
|
|
4694
|
+
const name$g = "generateReturnByMoneyDecisionDocument";
|
|
4591
4695
|
const mutation = Selector("Mutation")({
|
|
4592
|
-
[name$
|
|
4696
|
+
[name$g]: [
|
|
4593
4697
|
{
|
|
4594
4698
|
data: $("data", "ReturnByMoneyDecisionGenerateDocumentInput!"),
|
|
4595
4699
|
options: $("options", "GenerateDocumentOptionsInput")
|
|
@@ -4601,10 +4705,10 @@ const mutation = Selector("Mutation")({
|
|
|
4601
4705
|
const generateReturnByMoneyDecisionDocument = {
|
|
4602
4706
|
__proto__: null,
|
|
4603
4707
|
mutation: mutation,
|
|
4604
|
-
name: name$
|
|
4708
|
+
name: name$g
|
|
4605
4709
|
};
|
|
4606
4710
|
|
|
4607
|
-
const index$
|
|
4711
|
+
const index$h = {
|
|
4608
4712
|
__proto__: null,
|
|
4609
4713
|
CreateDepositPayment: createDepositPayment,
|
|
4610
4714
|
CreateWithdraw: createWithdraw,
|
|
@@ -4614,41 +4718,42 @@ const index$g = {
|
|
|
4614
4718
|
|
|
4615
4719
|
const Mutations = {
|
|
4616
4720
|
__proto__: null,
|
|
4617
|
-
Accounts: index$
|
|
4618
|
-
Agreements: index$
|
|
4619
|
-
Auth: index$
|
|
4620
|
-
Branches: index$
|
|
4621
|
-
Cooplace: index$
|
|
4622
|
-
Extensions: index$
|
|
4623
|
-
FreeDecisions: index$
|
|
4624
|
-
Gateway: index$
|
|
4625
|
-
Meet: index$
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
const
|
|
4634
|
-
|
|
4721
|
+
Accounts: index$u,
|
|
4722
|
+
Agreements: index$t,
|
|
4723
|
+
Auth: index$s,
|
|
4724
|
+
Branches: index$r,
|
|
4725
|
+
Cooplace: index$q,
|
|
4726
|
+
Extensions: index$p,
|
|
4727
|
+
FreeDecisions: index$o,
|
|
4728
|
+
Gateway: index$n,
|
|
4729
|
+
Meet: index$m,
|
|
4730
|
+
Notification: index$l,
|
|
4731
|
+
Participants: index$k,
|
|
4732
|
+
PaymentMethods: index$j,
|
|
4733
|
+
System: index$i,
|
|
4734
|
+
Wallet: index$h
|
|
4735
|
+
};
|
|
4736
|
+
|
|
4737
|
+
const name$f = "getAccount";
|
|
4738
|
+
const query$f = Selector("Query")({
|
|
4739
|
+
[name$f]: [{ data: $("data", "GetAccountInput!") }, accountSelector]
|
|
4635
4740
|
});
|
|
4636
4741
|
|
|
4637
4742
|
const getAccount = {
|
|
4638
4743
|
__proto__: null,
|
|
4639
|
-
name: name$
|
|
4640
|
-
query: query$
|
|
4744
|
+
name: name$f,
|
|
4745
|
+
query: query$f
|
|
4641
4746
|
};
|
|
4642
4747
|
|
|
4643
|
-
const name$
|
|
4644
|
-
const query$
|
|
4645
|
-
[name$
|
|
4748
|
+
const name$e = "getAccounts";
|
|
4749
|
+
const query$e = Selector("Query")({
|
|
4750
|
+
[name$e]: [{ data: $("data", "GetAccountsInput"), options: $("options", "PaginationInput") }, accountsPaginationSelector]
|
|
4646
4751
|
});
|
|
4647
4752
|
|
|
4648
4753
|
const getAccounts = {
|
|
4649
4754
|
__proto__: null,
|
|
4650
|
-
name: name$
|
|
4651
|
-
query: query$
|
|
4755
|
+
name: name$e,
|
|
4756
|
+
query: query$e
|
|
4652
4757
|
};
|
|
4653
4758
|
|
|
4654
4759
|
const rawSearchPrivateAccountsResultSelector = {
|
|
@@ -4665,18 +4770,18 @@ const privateAccountSearchResultSelector = Selector("PrivateAccountSearchResult"
|
|
|
4665
4770
|
rawSearchPrivateAccountsResultSelector
|
|
4666
4771
|
);
|
|
4667
4772
|
|
|
4668
|
-
const name$
|
|
4669
|
-
const query$
|
|
4670
|
-
[name$
|
|
4773
|
+
const name$d = "searchPrivateAccounts";
|
|
4774
|
+
const query$d = Selector("Query")({
|
|
4775
|
+
[name$d]: [{ data: $("data", "SearchPrivateAccountsInput!") }, privateAccountSearchResultSelector]
|
|
4671
4776
|
});
|
|
4672
4777
|
|
|
4673
4778
|
const searchPrivateAccounts = {
|
|
4674
4779
|
__proto__: null,
|
|
4675
|
-
name: name$
|
|
4676
|
-
query: query$
|
|
4780
|
+
name: name$d,
|
|
4781
|
+
query: query$d
|
|
4677
4782
|
};
|
|
4678
4783
|
|
|
4679
|
-
const index$
|
|
4784
|
+
const index$g = {
|
|
4680
4785
|
__proto__: null,
|
|
4681
4786
|
GetAccount: getAccount,
|
|
4682
4787
|
GetAccounts: getAccounts,
|
|
@@ -4744,45 +4849,45 @@ const rawAgendaSelector = {
|
|
|
4744
4849
|
};
|
|
4745
4850
|
const agendaSelector = Selector("AgendaWithDocuments")(rawAgendaSelector);
|
|
4746
4851
|
|
|
4747
|
-
const name$
|
|
4748
|
-
const query$
|
|
4749
|
-
[name$
|
|
4852
|
+
const name$c = "getAgenda";
|
|
4853
|
+
const query$c = Selector("Query")({
|
|
4854
|
+
[name$c]: agendaSelector
|
|
4750
4855
|
});
|
|
4751
4856
|
|
|
4752
4857
|
const getAgenda = {
|
|
4753
4858
|
__proto__: null,
|
|
4754
|
-
name: name$
|
|
4755
|
-
query: query$
|
|
4859
|
+
name: name$c,
|
|
4860
|
+
query: query$c
|
|
4756
4861
|
};
|
|
4757
4862
|
|
|
4758
|
-
const index$
|
|
4863
|
+
const index$f = {
|
|
4759
4864
|
__proto__: null,
|
|
4760
4865
|
GetAgenda: getAgenda
|
|
4761
4866
|
};
|
|
4762
4867
|
|
|
4763
|
-
const name$
|
|
4764
|
-
const query$
|
|
4765
|
-
[name$
|
|
4868
|
+
const name$b = "getBranches";
|
|
4869
|
+
const query$b = Selector("Query")({
|
|
4870
|
+
[name$b]: [{ data: $("data", "GetBranchesInput!") }, branchSelector]
|
|
4766
4871
|
});
|
|
4767
4872
|
|
|
4768
4873
|
const getBranches = {
|
|
4769
4874
|
__proto__: null,
|
|
4770
|
-
name: name$
|
|
4771
|
-
query: query$
|
|
4875
|
+
name: name$b,
|
|
4876
|
+
query: query$b
|
|
4772
4877
|
};
|
|
4773
4878
|
|
|
4774
|
-
const name$
|
|
4775
|
-
const query$
|
|
4776
|
-
[name$
|
|
4879
|
+
const name$a = "getBranches";
|
|
4880
|
+
const query$a = Selector("Query")({
|
|
4881
|
+
[name$a]: [{ data: $("data", "GetBranchesInput!") }, branchSelectorForUsers]
|
|
4777
4882
|
});
|
|
4778
4883
|
|
|
4779
4884
|
const getPublicBranches = {
|
|
4780
4885
|
__proto__: null,
|
|
4781
|
-
name: name$
|
|
4782
|
-
query: query$
|
|
4886
|
+
name: name$a,
|
|
4887
|
+
query: query$a
|
|
4783
4888
|
};
|
|
4784
4889
|
|
|
4785
|
-
const index$
|
|
4890
|
+
const index$e = {
|
|
4786
4891
|
__proto__: null,
|
|
4787
4892
|
GetBranches: getBranches,
|
|
4788
4893
|
GetPublicBranches: getPublicBranches
|
|
@@ -4803,59 +4908,59 @@ const rawDesktopSelector = {
|
|
|
4803
4908
|
};
|
|
4804
4909
|
const desktopSelector = Selector("Desktop")(rawDesktopSelector);
|
|
4805
4910
|
|
|
4806
|
-
const name$
|
|
4807
|
-
const query$
|
|
4808
|
-
[name$
|
|
4911
|
+
const name$9 = "getDesktop";
|
|
4912
|
+
const query$9 = Selector("Query")({
|
|
4913
|
+
[name$9]: desktopSelector
|
|
4809
4914
|
});
|
|
4810
4915
|
|
|
4811
4916
|
const getDesktop = {
|
|
4812
4917
|
__proto__: null,
|
|
4813
|
-
name: name$
|
|
4814
|
-
query: query$
|
|
4918
|
+
name: name$9,
|
|
4919
|
+
query: query$9
|
|
4815
4920
|
};
|
|
4816
4921
|
|
|
4817
|
-
const index$
|
|
4922
|
+
const index$d = {
|
|
4818
4923
|
__proto__: null,
|
|
4819
4924
|
GetDesktop: getDesktop
|
|
4820
4925
|
};
|
|
4821
4926
|
|
|
4822
4927
|
const documentPaginationSelector = { ...paginationSelector, items: rawDocumentPackageAggregateSelector };
|
|
4823
|
-
const name$
|
|
4824
|
-
const query$
|
|
4825
|
-
[name$
|
|
4928
|
+
const name$8 = "getDocuments";
|
|
4929
|
+
const query$8 = Selector("Query")({
|
|
4930
|
+
[name$8]: [{ data: $("data", "GetDocumentsInput!") }, documentPaginationSelector]
|
|
4826
4931
|
});
|
|
4827
4932
|
|
|
4828
4933
|
const getDocuments = {
|
|
4829
4934
|
__proto__: null,
|
|
4830
|
-
name: name$
|
|
4831
|
-
query: query$
|
|
4935
|
+
name: name$8,
|
|
4936
|
+
query: query$8
|
|
4832
4937
|
};
|
|
4833
4938
|
|
|
4834
|
-
const index$
|
|
4939
|
+
const index$c = {
|
|
4835
4940
|
__proto__: null,
|
|
4836
4941
|
GetDocuments: getDocuments
|
|
4837
4942
|
};
|
|
4838
4943
|
|
|
4839
|
-
const name$
|
|
4840
|
-
const query$
|
|
4841
|
-
[name$
|
|
4944
|
+
const name$7 = "getExtensions";
|
|
4945
|
+
const query$7 = Selector("Query")({
|
|
4946
|
+
[name$7]: [{ data: $("data", "GetExtensionsInput") }, extensionSelector]
|
|
4842
4947
|
});
|
|
4843
4948
|
|
|
4844
4949
|
const getExtensions = {
|
|
4845
4950
|
__proto__: null,
|
|
4846
|
-
name: name$
|
|
4847
|
-
query: query$
|
|
4951
|
+
name: name$7,
|
|
4952
|
+
query: query$7
|
|
4848
4953
|
};
|
|
4849
4954
|
|
|
4850
|
-
const index$
|
|
4955
|
+
const index$b = {
|
|
4851
4956
|
__proto__: null,
|
|
4852
4957
|
GetExtensions: getExtensions
|
|
4853
4958
|
};
|
|
4854
4959
|
|
|
4855
4960
|
const paginatedPaymentsSelector = { ...paginationSelector, items: rawPaymentSelector };
|
|
4856
|
-
const name$
|
|
4857
|
-
const query$
|
|
4858
|
-
[name$
|
|
4961
|
+
const name$6 = "getPayments";
|
|
4962
|
+
const query$6 = Selector("Query")({
|
|
4963
|
+
[name$6]: [
|
|
4859
4964
|
{
|
|
4860
4965
|
data: $("data", "PaymentFiltersInput"),
|
|
4861
4966
|
options: $("options", "PaginationInput")
|
|
@@ -4865,6 +4970,33 @@ const query$4 = Selector("Query")({
|
|
|
4865
4970
|
});
|
|
4866
4971
|
|
|
4867
4972
|
const getPayments = {
|
|
4973
|
+
__proto__: null,
|
|
4974
|
+
name: name$6,
|
|
4975
|
+
query: query$6
|
|
4976
|
+
};
|
|
4977
|
+
|
|
4978
|
+
const index$a = {
|
|
4979
|
+
__proto__: null,
|
|
4980
|
+
GetPayments: getPayments
|
|
4981
|
+
};
|
|
4982
|
+
|
|
4983
|
+
const name$5 = "getMeet";
|
|
4984
|
+
const query$5 = Selector("Query")({
|
|
4985
|
+
[name$5]: [{ data: $("data", "GetMeetInput!") }, meetAggregateSelector]
|
|
4986
|
+
});
|
|
4987
|
+
|
|
4988
|
+
const getMeet = {
|
|
4989
|
+
__proto__: null,
|
|
4990
|
+
name: name$5,
|
|
4991
|
+
query: query$5
|
|
4992
|
+
};
|
|
4993
|
+
|
|
4994
|
+
const name$4 = "getMeets";
|
|
4995
|
+
const query$4 = Selector("Query")({
|
|
4996
|
+
[name$4]: [{ data: $("data", "GetMeetsInput!") }, meetAggregateSelector]
|
|
4997
|
+
});
|
|
4998
|
+
|
|
4999
|
+
const getMeets = {
|
|
4868
5000
|
__proto__: null,
|
|
4869
5001
|
name: name$4,
|
|
4870
5002
|
query: query$4
|
|
@@ -4872,26 +5004,27 @@ const getPayments = {
|
|
|
4872
5004
|
|
|
4873
5005
|
const index$9 = {
|
|
4874
5006
|
__proto__: null,
|
|
4875
|
-
|
|
5007
|
+
GetMeet: getMeet,
|
|
5008
|
+
GetMeets: getMeets
|
|
4876
5009
|
};
|
|
4877
5010
|
|
|
4878
|
-
const name$3 = "
|
|
5011
|
+
const name$3 = "getUserWebPushSubscriptions";
|
|
4879
5012
|
const query$3 = Selector("Query")({
|
|
4880
|
-
[name$3]: [{ data: $("data", "
|
|
5013
|
+
[name$3]: [{ data: $("data", "GetUserSubscriptionsInput!") }, rawWebPushSubscriptionSelector]
|
|
4881
5014
|
});
|
|
4882
5015
|
|
|
4883
|
-
const
|
|
5016
|
+
const getUserWebPushSubscriptions = {
|
|
4884
5017
|
__proto__: null,
|
|
4885
5018
|
name: name$3,
|
|
4886
5019
|
query: query$3
|
|
4887
5020
|
};
|
|
4888
5021
|
|
|
4889
|
-
const name$2 = "
|
|
5022
|
+
const name$2 = "getWebPushSubscriptionStats";
|
|
4890
5023
|
const query$2 = Selector("Query")({
|
|
4891
|
-
[name$2]:
|
|
5024
|
+
[name$2]: rawSubscriptionStatsSelector
|
|
4892
5025
|
});
|
|
4893
5026
|
|
|
4894
|
-
const
|
|
5027
|
+
const getWebPushSubscriptionStats = {
|
|
4895
5028
|
__proto__: null,
|
|
4896
5029
|
name: name$2,
|
|
4897
5030
|
query: query$2
|
|
@@ -4899,8 +5032,8 @@ const getMeets = {
|
|
|
4899
5032
|
|
|
4900
5033
|
const index$8 = {
|
|
4901
5034
|
__proto__: null,
|
|
4902
|
-
|
|
4903
|
-
|
|
5035
|
+
GetUserWebPushSubscriptions: getUserWebPushSubscriptions,
|
|
5036
|
+
GetWebPushSubscriptionStats: getWebPushSubscriptionStats
|
|
4904
5037
|
};
|
|
4905
5038
|
|
|
4906
5039
|
const rawPaymentMethodPaginationSelector = { ...paginationSelector, items: rawPaymentMethodSelector };
|
|
@@ -4939,14 +5072,15 @@ const index$6 = {
|
|
|
4939
5072
|
|
|
4940
5073
|
const index$5 = {
|
|
4941
5074
|
__proto__: null,
|
|
4942
|
-
Accounts: index$
|
|
4943
|
-
Agenda: index$
|
|
4944
|
-
Branches: index$
|
|
4945
|
-
Desktop: index$
|
|
4946
|
-
Documents: index$
|
|
4947
|
-
Extensions: index$
|
|
4948
|
-
Gateway: index$
|
|
4949
|
-
Meet: index$
|
|
5075
|
+
Accounts: index$g,
|
|
5076
|
+
Agenda: index$f,
|
|
5077
|
+
Branches: index$e,
|
|
5078
|
+
Desktop: index$d,
|
|
5079
|
+
Documents: index$c,
|
|
5080
|
+
Extensions: index$b,
|
|
5081
|
+
Gateway: index$a,
|
|
5082
|
+
Meet: index$9,
|
|
5083
|
+
Notification: index$8,
|
|
4950
5084
|
PaymentMethods: index$7,
|
|
4951
5085
|
System: index$6
|
|
4952
5086
|
};
|
|
@@ -5050,8 +5184,8 @@ const _Client = class _Client {
|
|
|
5050
5184
|
signature
|
|
5051
5185
|
}
|
|
5052
5186
|
};
|
|
5053
|
-
const { [name$
|
|
5054
|
-
mutation$
|
|
5187
|
+
const { [name$1l]: result } = await this.thunder("mutation")(
|
|
5188
|
+
mutation$15,
|
|
5055
5189
|
{
|
|
5056
5190
|
variables
|
|
5057
5191
|
}
|
|
@@ -5173,4 +5307,4 @@ __publicField(_Client, "scalars", ZeusScalars({
|
|
|
5173
5307
|
}));
|
|
5174
5308
|
let Client = _Client;
|
|
5175
5309
|
|
|
5176
|
-
export { Classes, Client, Mutations, index$5 as Queries, index as Types, index$
|
|
5310
|
+
export { Classes, Client, Mutations, index$5 as Queries, index as Types, index$v as Zeus };
|