@wix/auto_sdk_payments_payment-acceptance-configurations 1.0.43 → 1.0.45
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +80 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +63 -1
- package/build/cjs/index.typings.js +69 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +49 -2
- package/build/cjs/meta.js +58 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +79 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +63 -1
- package/build/es/index.typings.mjs +68 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +49 -2
- package/build/es/meta.mjs +57 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +18 -5
- package/build/internal/cjs/index.js +80 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +77 -3
- package/build/internal/cjs/index.typings.js +69 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +49 -2
- package/build/internal/cjs/meta.js +58 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +18 -5
- package/build/internal/es/index.mjs +79 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +77 -3
- package/build/internal/es/index.typings.mjs +68 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +49 -2
- package/build/internal/es/meta.mjs +57 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -238,6 +238,33 @@ interface RemovePaymentAcceptanceConfigurationRulesResponse {
|
|
|
238
238
|
/** Updated PaymentAcceptanceConfiguration */
|
|
239
239
|
paymentAcceptanceConfiguration?: PaymentAcceptanceConfiguration;
|
|
240
240
|
}
|
|
241
|
+
interface ModifyPaymentAcceptanceConfigurationRulesRequest {
|
|
242
|
+
/**
|
|
243
|
+
* Id of payment acceptance configuration to update
|
|
244
|
+
* @format GUID
|
|
245
|
+
*/
|
|
246
|
+
paymentAcceptanceConfigurationId: string;
|
|
247
|
+
/**
|
|
248
|
+
* Payment acceptance configuration revision
|
|
249
|
+
* @readonly
|
|
250
|
+
*/
|
|
251
|
+
paymentAcceptanceConfigurationRevision?: string | null;
|
|
252
|
+
/**
|
|
253
|
+
* Rules to add
|
|
254
|
+
* @maxSize 1000
|
|
255
|
+
*/
|
|
256
|
+
rulesToAdd?: PaymentAcceptanceRule[];
|
|
257
|
+
/**
|
|
258
|
+
* IDs of the rules to remove
|
|
259
|
+
* @format GUID
|
|
260
|
+
* @maxSize 1000
|
|
261
|
+
*/
|
|
262
|
+
rulesToRemoveIds?: string[];
|
|
263
|
+
}
|
|
264
|
+
interface ModifyPaymentAcceptanceConfigurationRulesResponse {
|
|
265
|
+
/** Updated PaymentAcceptanceConfiguration */
|
|
266
|
+
paymentAcceptanceConfiguration?: PaymentAcceptanceConfiguration;
|
|
267
|
+
}
|
|
241
268
|
interface DeletePaymentAcceptanceConfigurationRequest {
|
|
242
269
|
/**
|
|
243
270
|
* Id of payment acceptance configuration to delete
|
|
@@ -1034,6 +1061,23 @@ declare enum WebhookIdentityType {
|
|
|
1034
1061
|
}
|
|
1035
1062
|
/** @enumType */
|
|
1036
1063
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1064
|
+
interface AccountDetails {
|
|
1065
|
+
/**
|
|
1066
|
+
* ID of the account.
|
|
1067
|
+
* @format GUID
|
|
1068
|
+
*/
|
|
1069
|
+
accountId?: string | null;
|
|
1070
|
+
/**
|
|
1071
|
+
* ID of the parent account.
|
|
1072
|
+
* @format GUID
|
|
1073
|
+
*/
|
|
1074
|
+
parentAccountId?: string | null;
|
|
1075
|
+
/**
|
|
1076
|
+
* ID of the site, if applicable.
|
|
1077
|
+
* @format GUID
|
|
1078
|
+
*/
|
|
1079
|
+
siteId?: string | null;
|
|
1080
|
+
}
|
|
1037
1081
|
/**
|
|
1038
1082
|
* Creates a PaymentAcceptanceConfiguration.
|
|
1039
1083
|
* @param paymentAcceptanceConfiguration - PaymentAcceptanceConfiguration to be created.
|
|
@@ -1118,8 +1162,7 @@ interface UpdatePaymentAcceptanceConfiguration {
|
|
|
1118
1162
|
}
|
|
1119
1163
|
/**
|
|
1120
1164
|
* Add PaymentAcceptanceConfiguration Rules
|
|
1121
|
-
* as result new rules
|
|
1122
|
-
* some extra rules may be added
|
|
1165
|
+
* as result new rules will be validated and added to existing ones
|
|
1123
1166
|
* @param paymentAcceptanceConfigurationId - Id of payment acceptance configuration to update
|
|
1124
1167
|
* @internal
|
|
1125
1168
|
* @documentationMaturity preview
|
|
@@ -1169,6 +1212,37 @@ interface RemovePaymentAcceptanceConfigurationRulesOptions {
|
|
|
1169
1212
|
*/
|
|
1170
1213
|
ruleIds: string[];
|
|
1171
1214
|
}
|
|
1215
|
+
/**
|
|
1216
|
+
* Modify PaymentAcceptanceConfiguration Rules
|
|
1217
|
+
* as result new rules will be validated and added to existing ones
|
|
1218
|
+
* rules to removed will be removed, may remove extra rules depending on app_id specific logic
|
|
1219
|
+
* some extra rules may be added
|
|
1220
|
+
* @param paymentAcceptanceConfigurationId - Id of payment acceptance configuration to update
|
|
1221
|
+
* @internal
|
|
1222
|
+
* @documentationMaturity preview
|
|
1223
|
+
* @requiredField paymentAcceptanceConfigurationId
|
|
1224
|
+
* @permissionId PAYMENTS.PAYMENT_ACCEPTANCE_CONFIGURATION_UPDATE
|
|
1225
|
+
* @fqn wix.payments.payment_acceptance_configurations.v1.PaymentAcceptanceConfigurationService.ModifyPaymentAcceptanceConfigurationRules
|
|
1226
|
+
*/
|
|
1227
|
+
declare function modifyPaymentAcceptanceConfigurationRules(paymentAcceptanceConfigurationId: string, options?: ModifyPaymentAcceptanceConfigurationRulesOptions): Promise<NonNullablePaths<ModifyPaymentAcceptanceConfigurationRulesResponse, `paymentAcceptanceConfiguration.rules` | `paymentAcceptanceConfiguration.rules.${number}.paymentMethodTypeId` | `paymentAcceptanceConfiguration.rules.${number}.accountConnectionId` | `paymentAcceptanceConfiguration.rules.${number}.merchantEnabled` | `paymentAcceptanceConfiguration.tags.tags.tagIds`, 5>>;
|
|
1228
|
+
interface ModifyPaymentAcceptanceConfigurationRulesOptions {
|
|
1229
|
+
/**
|
|
1230
|
+
* Payment acceptance configuration revision
|
|
1231
|
+
* @readonly
|
|
1232
|
+
*/
|
|
1233
|
+
paymentAcceptanceConfigurationRevision?: string | null;
|
|
1234
|
+
/**
|
|
1235
|
+
* Rules to add
|
|
1236
|
+
* @maxSize 1000
|
|
1237
|
+
*/
|
|
1238
|
+
rulesToAdd?: PaymentAcceptanceRule[];
|
|
1239
|
+
/**
|
|
1240
|
+
* IDs of the rules to remove
|
|
1241
|
+
* @format GUID
|
|
1242
|
+
* @maxSize 1000
|
|
1243
|
+
*/
|
|
1244
|
+
rulesToRemoveIds?: string[];
|
|
1245
|
+
}
|
|
1172
1246
|
/**
|
|
1173
1247
|
* Delete a PaymentAcceptanceConfiguration
|
|
1174
1248
|
* @param paymentAcceptanceConfigurationId - Id of payment acceptance configuration to delete
|
|
@@ -1378,4 +1452,4 @@ interface BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions {
|
|
|
1378
1452
|
unassignTags?: Tags;
|
|
1379
1453
|
}
|
|
1380
1454
|
|
|
1381
|
-
export { type ActionEvent, type AddPaymentAcceptanceConfigurationRulesOptions, type AddPaymentAcceptanceConfigurationRulesRequest, type AddPaymentAcceptanceConfigurationRulesResponse, type ApplicationError, type Asset, type BulkActionMetadata, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsResult, type CommonQueryWithEntityContext, type Countries, type CreatePaymentAcceptanceConfigurationRequest, type CreatePaymentAcceptanceConfigurationResponse, type Currencies, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteContext, type DeletePaymentAcceptanceConfigurationRequest, type DeletePaymentAcceptanceConfigurationResponse, DeleteStatus, type DeleteStatusWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type GetPaymentAcceptanceConfigurationRequest, type GetPaymentAcceptanceConfigurationResponse, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type PaymentAcceptanceConfiguration, type PaymentAcceptanceConfigurationQuery, type PaymentAcceptanceConfigurationQuerySpec, type PaymentAcceptanceConfigurationsQueryBuilder, type PaymentAcceptanceConfigurationsQueryResult, type PaymentAcceptanceRule, type PaymentBrands, type PicassoAssigned, type PicassoUnassigned, type QueryPaymentAcceptanceConfigurationsRequest, type QueryPaymentAcceptanceConfigurationsResponse, type RemovePaymentAcceptanceConfigurationRulesOptions, type RemovePaymentAcceptanceConfigurationRulesRequest, type RemovePaymentAcceptanceConfigurationRulesResponse, type RestoreInfo, type Restrictions, type RestrictionsCountriesOneOf, type RestrictionsCurrenciesOneOf, type RestrictionsPaymentBrandsOneOf, type ServiceProvisioned, type ServiceRemoved, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type TagList, type Tags, type UpdatePaymentAcceptanceConfiguration, type UpdatePaymentAcceptanceConfigurationRequest, type UpdatePaymentAcceptanceConfigurationResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixelAssigned, type WixelUnassigned, addPaymentAcceptanceConfigurationRules, bulkUpdatePaymentAcceptanceConfigurationTags, bulkUpdatePaymentAcceptanceConfigurationTagsByFilter, createPaymentAcceptanceConfiguration, deletePaymentAcceptanceConfiguration, getPaymentAcceptanceConfiguration, queryPaymentAcceptanceConfigurations, removePaymentAcceptanceConfigurationRules, typedQueryPaymentAcceptanceConfigurations, updatePaymentAcceptanceConfiguration };
|
|
1455
|
+
export { type AccountDetails, type ActionEvent, type AddPaymentAcceptanceConfigurationRulesOptions, type AddPaymentAcceptanceConfigurationRulesRequest, type AddPaymentAcceptanceConfigurationRulesResponse, type ApplicationError, type Asset, type BulkActionMetadata, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsByFilterResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsOptions, type BulkUpdatePaymentAcceptanceConfigurationTagsRequest, type BulkUpdatePaymentAcceptanceConfigurationTagsResponse, type BulkUpdatePaymentAcceptanceConfigurationTagsResult, type CommonQueryWithEntityContext, type Countries, type CreatePaymentAcceptanceConfigurationRequest, type CreatePaymentAcceptanceConfigurationResponse, type Currencies, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteContext, type DeletePaymentAcceptanceConfigurationRequest, type DeletePaymentAcceptanceConfigurationResponse, DeleteStatus, type DeleteStatusWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type ExtendedFields, type GetPaymentAcceptanceConfigurationRequest, type GetPaymentAcceptanceConfigurationResponse, type IdentificationData, type IdentificationDataIdOneOf, type ItemMetadata, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type ModifyPaymentAcceptanceConfigurationRulesOptions, type ModifyPaymentAcceptanceConfigurationRulesRequest, type ModifyPaymentAcceptanceConfigurationRulesResponse, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type OdeditorAssigned, type OdeditorUnassigned, type PaymentAcceptanceConfiguration, type PaymentAcceptanceConfigurationQuery, type PaymentAcceptanceConfigurationQuerySpec, type PaymentAcceptanceConfigurationsQueryBuilder, type PaymentAcceptanceConfigurationsQueryResult, type PaymentAcceptanceRule, type PaymentBrands, type PicassoAssigned, type PicassoUnassigned, type QueryPaymentAcceptanceConfigurationsRequest, type QueryPaymentAcceptanceConfigurationsResponse, type RemovePaymentAcceptanceConfigurationRulesOptions, type RemovePaymentAcceptanceConfigurationRulesRequest, type RemovePaymentAcceptanceConfigurationRulesResponse, type RestoreInfo, type Restrictions, type RestrictionsCountriesOneOf, type RestrictionsCurrenciesOneOf, type RestrictionsPaymentBrandsOneOf, type ServiceProvisioned, type ServiceRemoved, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type TagList, type Tags, type UpdatePaymentAcceptanceConfiguration, type UpdatePaymentAcceptanceConfigurationRequest, type UpdatePaymentAcceptanceConfigurationResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, type WixelAssigned, type WixelUnassigned, addPaymentAcceptanceConfigurationRules, bulkUpdatePaymentAcceptanceConfigurationTags, bulkUpdatePaymentAcceptanceConfigurationTagsByFilter, createPaymentAcceptanceConfiguration, deletePaymentAcceptanceConfiguration, getPaymentAcceptanceConfiguration, modifyPaymentAcceptanceConfigurationRules, queryPaymentAcceptanceConfigurations, removePaymentAcceptanceConfigurationRules, typedQueryPaymentAcceptanceConfigurations, updatePaymentAcceptanceConfiguration };
|
|
@@ -32,6 +32,7 @@ __export(index_typings_exports, {
|
|
|
32
32
|
createPaymentAcceptanceConfiguration: () => createPaymentAcceptanceConfiguration2,
|
|
33
33
|
deletePaymentAcceptanceConfiguration: () => deletePaymentAcceptanceConfiguration2,
|
|
34
34
|
getPaymentAcceptanceConfiguration: () => getPaymentAcceptanceConfiguration2,
|
|
35
|
+
modifyPaymentAcceptanceConfigurationRules: () => modifyPaymentAcceptanceConfigurationRules2,
|
|
35
36
|
queryPaymentAcceptanceConfigurations: () => queryPaymentAcceptanceConfigurations2,
|
|
36
37
|
removePaymentAcceptanceConfigurationRules: () => removePaymentAcceptanceConfigurationRules2,
|
|
37
38
|
typedQueryPaymentAcceptanceConfigurations: () => typedQueryPaymentAcceptanceConfigurations,
|
|
@@ -269,6 +270,38 @@ function removePaymentAcceptanceConfigurationRules(payload) {
|
|
|
269
270
|
}
|
|
270
271
|
return __removePaymentAcceptanceConfigurationRules;
|
|
271
272
|
}
|
|
273
|
+
function modifyPaymentAcceptanceConfigurationRules(payload) {
|
|
274
|
+
function __modifyPaymentAcceptanceConfigurationRules({ host }) {
|
|
275
|
+
const metadata = {
|
|
276
|
+
entityFqdn: "wix.payments.payment_acceptance_configurations.v1.payment_acceptance_configuration",
|
|
277
|
+
method: "POST",
|
|
278
|
+
methodFqn: "wix.payments.payment_acceptance_configurations.v1.PaymentAcceptanceConfigurationService.ModifyPaymentAcceptanceConfigurationRules",
|
|
279
|
+
packageName: PACKAGE_NAME,
|
|
280
|
+
migrationOptions: {
|
|
281
|
+
optInTransformResponse: true
|
|
282
|
+
},
|
|
283
|
+
url: resolveWixPaymentsPaymentAcceptanceConfigurationsV1PaymentAcceptanceConfigurationServiceUrl(
|
|
284
|
+
{
|
|
285
|
+
protoPath: "/v1/payment-acceptance-configurations/{paymentAcceptanceConfigurationId}/modify-rules",
|
|
286
|
+
data: payload,
|
|
287
|
+
host
|
|
288
|
+
}
|
|
289
|
+
),
|
|
290
|
+
data: payload,
|
|
291
|
+
transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
|
|
292
|
+
{
|
|
293
|
+
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
294
|
+
paths: [
|
|
295
|
+
{ path: "paymentAcceptanceConfiguration.createdDate" },
|
|
296
|
+
{ path: "paymentAcceptanceConfiguration.updatedDate" }
|
|
297
|
+
]
|
|
298
|
+
}
|
|
299
|
+
])
|
|
300
|
+
};
|
|
301
|
+
return metadata;
|
|
302
|
+
}
|
|
303
|
+
return __modifyPaymentAcceptanceConfigurationRules;
|
|
304
|
+
}
|
|
272
305
|
function deletePaymentAcceptanceConfiguration(payload) {
|
|
273
306
|
function __deletePaymentAcceptanceConfiguration({ host }) {
|
|
274
307
|
const metadata = {
|
|
@@ -614,6 +647,41 @@ async function removePaymentAcceptanceConfigurationRules2(paymentAcceptanceConfi
|
|
|
614
647
|
throw transformedError;
|
|
615
648
|
}
|
|
616
649
|
}
|
|
650
|
+
async function modifyPaymentAcceptanceConfigurationRules2(paymentAcceptanceConfigurationId, options) {
|
|
651
|
+
const { httpClient, sideEffects } = arguments[2];
|
|
652
|
+
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
653
|
+
paymentAcceptanceConfigurationId,
|
|
654
|
+
paymentAcceptanceConfigurationRevision: options?.paymentAcceptanceConfigurationRevision,
|
|
655
|
+
rulesToAdd: options?.rulesToAdd,
|
|
656
|
+
rulesToRemoveIds: options?.rulesToRemoveIds
|
|
657
|
+
});
|
|
658
|
+
const reqOpts = modifyPaymentAcceptanceConfigurationRules(
|
|
659
|
+
payload
|
|
660
|
+
);
|
|
661
|
+
sideEffects?.onSiteCall?.();
|
|
662
|
+
try {
|
|
663
|
+
const result = await httpClient.request(reqOpts);
|
|
664
|
+
sideEffects?.onSuccess?.(result);
|
|
665
|
+
return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(result.data);
|
|
666
|
+
} catch (err) {
|
|
667
|
+
const transformedError = (0, import_transform_error.transformError)(
|
|
668
|
+
err,
|
|
669
|
+
{
|
|
670
|
+
spreadPathsToArguments: {},
|
|
671
|
+
explicitPathsToArguments: {
|
|
672
|
+
paymentAcceptanceConfigurationId: "$[0]",
|
|
673
|
+
paymentAcceptanceConfigurationRevision: "$[1].paymentAcceptanceConfigurationRevision",
|
|
674
|
+
rulesToAdd: "$[1].rulesToAdd",
|
|
675
|
+
rulesToRemoveIds: "$[1].rulesToRemoveIds"
|
|
676
|
+
},
|
|
677
|
+
singleArgumentUnchanged: false
|
|
678
|
+
},
|
|
679
|
+
["paymentAcceptanceConfigurationId", "options"]
|
|
680
|
+
);
|
|
681
|
+
sideEffects?.onError?.(err);
|
|
682
|
+
throw transformedError;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
617
685
|
async function deletePaymentAcceptanceConfiguration2(paymentAcceptanceConfigurationId) {
|
|
618
686
|
const { httpClient, sideEffects } = arguments[1];
|
|
619
687
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
@@ -792,6 +860,7 @@ async function bulkUpdatePaymentAcceptanceConfigurationTagsByFilter2(filter, opt
|
|
|
792
860
|
createPaymentAcceptanceConfiguration,
|
|
793
861
|
deletePaymentAcceptanceConfiguration,
|
|
794
862
|
getPaymentAcceptanceConfiguration,
|
|
863
|
+
modifyPaymentAcceptanceConfigurationRules,
|
|
795
864
|
queryPaymentAcceptanceConfigurations,
|
|
796
865
|
removePaymentAcceptanceConfigurationRules,
|
|
797
866
|
typedQueryPaymentAcceptanceConfigurations,
|