docs: update docusaurus to v3 (#5625)
* update dependencies * update onboarding mdx * fixes for mdx issues * fixes for mdx compatibility * resolve mdx errors * fixes in reference * fix check errors * revert change in vale action * fix node version in action * fix summary in markdown
This commit is contained in:
@@ -10,14 +10,14 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
|
||||
### constructor
|
||||
|
||||
**new PaymentCollectionService**(`«destructured»`)
|
||||
`**new PaymentCollectionService**(«destructured»)`
|
||||
|
||||
#### Parameters
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "__namedParameters",
|
||||
"type": "[`InjectedDependencies`](../types/InjectedDependencies-23.mdx)",
|
||||
"type": "[InjectedDependencies](../types/InjectedDependencies-23.mdx)",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -31,7 +31,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "__configModule__",
|
||||
"type": "Record<`string`, `unknown`\\>",
|
||||
"type": "`Record<string, unknown>`",
|
||||
"description": "",
|
||||
"optional": true,
|
||||
"defaultValue": "",
|
||||
@@ -49,7 +49,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "__moduleDeclaration__",
|
||||
"type": "Record<`string`, `unknown`\\>",
|
||||
"type": "`Record<string, unknown>`",
|
||||
"description": "",
|
||||
"optional": true,
|
||||
"defaultValue": "",
|
||||
@@ -58,7 +58,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "customerService_",
|
||||
"type": "[`CustomerService`](CustomerService.mdx)",
|
||||
"type": "[CustomerService](CustomerService.mdx)",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -67,7 +67,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "eventBusService_",
|
||||
"type": "[`EventBusService`](EventBusService.mdx)",
|
||||
"type": "[EventBusService](EventBusService.mdx)",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -76,7 +76,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "manager_",
|
||||
"type": "`EntityManager`",
|
||||
"type": "EntityManager",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -85,7 +85,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "paymentCollectionRepository_",
|
||||
"type": "`Repository`<[`PaymentCollection`](PaymentCollection.mdx)\\> & { `getPaymentCollectionIdByPaymentId`: Method getPaymentCollectionIdByPaymentId ; `getPaymentCollectionIdBySessionId`: Method getPaymentCollectionIdBySessionId }",
|
||||
"type": "Repository<[PaymentCollection](PaymentCollection.mdx)> & `{ getPaymentCollectionIdByPaymentId: Method getPaymentCollectionIdByPaymentId ; getPaymentCollectionIdBySessionId: Method getPaymentCollectionIdBySessionId }`",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -94,7 +94,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "paymentProviderService_",
|
||||
"type": "[`PaymentProviderService`](PaymentProviderService.mdx)",
|
||||
"type": "[PaymentProviderService](PaymentProviderService.mdx)",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -103,7 +103,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
},
|
||||
{
|
||||
"name": "transactionManager_",
|
||||
"type": "`undefined` \\| `EntityManager`",
|
||||
"type": "`undefined` \\| EntityManager",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -161,16 +161,16 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
|
||||
### activeManager\_
|
||||
|
||||
`Protected` `get` **activeManager_**(): `EntityManager`
|
||||
`Protected get**activeManager_**(): EntityManager`
|
||||
|
||||
#### Returns
|
||||
|
||||
`EntityManager`
|
||||
EntityManager
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "EntityManager",
|
||||
"type": "`EntityManager`",
|
||||
"type": "EntityManager",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "",
|
||||
@@ -183,7 +183,7 @@ import ParameterTypes from "@site/src/components/ParameterTypes"
|
||||
|
||||
### atomicPhase\_
|
||||
|
||||
`Protected` **atomicPhase_**<`TResult`, `TError`\>(`work`, `isolationOrErrorHandler?`, `maybeErrorHandlerOrDontFail?`): `Promise`<`TResult`\>
|
||||
`Protected **atomicPhase_**<TypeParameter TResult, TypeParameter TError>(work, isolationOrErrorHandler?, maybeErrorHandlerOrDontFail?): Promise<TResult>`
|
||||
|
||||
Wraps some work within a transactional block. If the service already has
|
||||
a transaction manager attached this will be reused, otherwise a new
|
||||
@@ -215,7 +215,7 @@ transaction manager is created.
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "work",
|
||||
"type": "(`transactionManager`: `EntityManager`) => `Promise`<`TResult`\\>",
|
||||
"type": "(`transactionManager`: EntityManager) => Promise<TResult>",
|
||||
"description": "the transactional work to be done",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -224,7 +224,7 @@ transaction manager is created.
|
||||
},
|
||||
{
|
||||
"name": "isolationOrErrorHandler",
|
||||
"type": "`IsolationLevel` \\| (`error`: `TError`) => `Promise`<`void` \\| `TResult`\\>",
|
||||
"type": "`IsolationLevel` \\| (`error`: `TError`) => Promise<void \\| TResult>",
|
||||
"description": "the isolation level to be used for the work.",
|
||||
"optional": true,
|
||||
"defaultValue": "",
|
||||
@@ -233,7 +233,7 @@ transaction manager is created.
|
||||
},
|
||||
{
|
||||
"name": "maybeErrorHandlerOrDontFail",
|
||||
"type": "(`error`: `TError`) => `Promise`<`void` \\| `TResult`\\>",
|
||||
"type": "(`error`: `TError`) => Promise<void \\| TResult>",
|
||||
"description": "Potential error handler",
|
||||
"optional": true,
|
||||
"defaultValue": "",
|
||||
@@ -244,12 +244,12 @@ transaction manager is created.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<`TResult`\>
|
||||
Promise<TResult>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<`TResult`\\>",
|
||||
"type": "Promise<TResult>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the result of the transactional work",
|
||||
@@ -262,7 +262,7 @@ ___
|
||||
|
||||
### authorizePaymentSessions
|
||||
|
||||
**authorizePaymentSessions**(`paymentCollectionId`, `sessionIds`, `context?`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**authorizePaymentSessions**(paymentCollectionId, sessionIds, context?): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Authorizes the payment sessions of a payment collection.
|
||||
|
||||
@@ -289,7 +289,7 @@ Authorizes the payment sessions of a payment collection.
|
||||
},
|
||||
{
|
||||
"name": "context",
|
||||
"type": "Record<`string`, `unknown`\\>",
|
||||
"type": "`Record<string, unknown>`",
|
||||
"description": "additional data required by payment providers",
|
||||
"optional": false,
|
||||
"defaultValue": "{}",
|
||||
@@ -300,12 +300,12 @@ Authorizes the payment sessions of a payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection and its payment session.",
|
||||
@@ -318,7 +318,7 @@ ___
|
||||
|
||||
### create
|
||||
|
||||
**create**(`data`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**create**(data): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Creates a new payment collection.
|
||||
|
||||
@@ -327,7 +327,7 @@ Creates a new payment collection.
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "data",
|
||||
"type": "[`CreatePaymentCollectionInput`](../types/CreatePaymentCollectionInput.mdx)",
|
||||
"type": "[CreatePaymentCollectionInput](../types/CreatePaymentCollectionInput.mdx)",
|
||||
"description": "info to create the payment collection",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -338,12 +338,12 @@ Creates a new payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection created.",
|
||||
@@ -356,7 +356,7 @@ ___
|
||||
|
||||
### delete
|
||||
|
||||
**delete**(`paymentCollectionId`): `Promise`<`undefined` \| [`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**delete**(paymentCollectionId): Promise<undefined \| [PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Deletes a payment collection.
|
||||
|
||||
@@ -376,12 +376,12 @@ Deletes a payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<`undefined` \| [`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<undefined \| [PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<`undefined` \\| [`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<undefined \\| [PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection removed.",
|
||||
@@ -394,7 +394,7 @@ ___
|
||||
|
||||
### isValidTotalAmount
|
||||
|
||||
`Private` **isValidTotalAmount**(`total`, `sessionsInput`): `boolean`
|
||||
`Private **isValidTotalAmount**(total, sessionsInput): boolean`
|
||||
|
||||
#### Parameters
|
||||
|
||||
@@ -410,7 +410,7 @@ ___
|
||||
},
|
||||
{
|
||||
"name": "sessionsInput",
|
||||
"type": "[`PaymentCollectionsSessionsBatchInput`](../types/PaymentCollectionsSessionsBatchInput.mdx)[]",
|
||||
"type": "[PaymentCollectionsSessionsBatchInput](../types/PaymentCollectionsSessionsBatchInput.mdx)[]",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -439,7 +439,7 @@ ___
|
||||
|
||||
### markAsAuthorized
|
||||
|
||||
**markAsAuthorized**(`paymentCollectionId`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**markAsAuthorized**(paymentCollectionId): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Marks a payment collection as authorized bypassing the payment flow.
|
||||
|
||||
@@ -459,12 +459,12 @@ Marks a payment collection as authorized bypassing the payment flow.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment session authorized.",
|
||||
@@ -477,7 +477,7 @@ ___
|
||||
|
||||
### refreshPaymentSession
|
||||
|
||||
**refreshPaymentSession**(`paymentCollectionId`, `sessionId`, `customerId`): `Promise`<[`PaymentSession`](PaymentSession.mdx)\>
|
||||
`**refreshPaymentSession**(paymentCollectionId, sessionId, customerId): Promise<[PaymentSession](PaymentSession.mdx)>`
|
||||
|
||||
Removes and recreate a payment session of a payment collection.
|
||||
|
||||
@@ -515,12 +515,12 @@ Removes and recreate a payment session of a payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentSession`](PaymentSession.mdx)\>
|
||||
Promise<[PaymentSession](PaymentSession.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentSession`](PaymentSession.mdx)\\>",
|
||||
"type": "Promise<[PaymentSession](PaymentSession.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the new payment session created.",
|
||||
@@ -533,7 +533,7 @@ ___
|
||||
|
||||
### retrieve
|
||||
|
||||
**retrieve**(`paymentCollectionId`, `config?`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**retrieve**(paymentCollectionId, config?): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Retrieves a payment collection by id.
|
||||
|
||||
@@ -551,7 +551,7 @@ Retrieves a payment collection by id.
|
||||
},
|
||||
{
|
||||
"name": "config",
|
||||
"type": "[`FindConfig`](../interfaces/FindConfig.mdx)<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "[FindConfig](../interfaces/FindConfig.mdx)<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"description": "the config to retrieve the payment collection",
|
||||
"optional": false,
|
||||
"defaultValue": "{}",
|
||||
@@ -562,12 +562,12 @@ Retrieves a payment collection by id.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection.",
|
||||
@@ -580,7 +580,7 @@ ___
|
||||
|
||||
### setPaymentSession
|
||||
|
||||
**setPaymentSession**(`paymentCollectionId`, `sessionInput`, `customerId`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**setPaymentSession**(paymentCollectionId, sessionInput, customerId): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Manages a single payment sessions of a payment collection.
|
||||
|
||||
@@ -598,7 +598,7 @@ Manages a single payment sessions of a payment collection.
|
||||
},
|
||||
{
|
||||
"name": "sessionInput",
|
||||
"type": "[`PaymentCollectionsSessionsInput`](../types/PaymentCollectionsSessionsInput.mdx)",
|
||||
"type": "[PaymentCollectionsSessionsInput](../types/PaymentCollectionsSessionsInput.mdx)",
|
||||
"description": "object containing payment session info",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -618,12 +618,12 @@ Manages a single payment sessions of a payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection and its payment session.",
|
||||
@@ -636,7 +636,7 @@ ___
|
||||
|
||||
### setPaymentSessionsBatch
|
||||
|
||||
**setPaymentSessionsBatch**(`paymentCollectionOrId`, `sessionsInput`, `customerId`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**setPaymentSessionsBatch**(paymentCollectionOrId, sessionsInput, customerId): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Manages multiple payment sessions of a payment collection.
|
||||
|
||||
@@ -645,7 +645,7 @@ Manages multiple payment sessions of a payment collection.
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "paymentCollectionOrId",
|
||||
"type": "`string` \\| [`PaymentCollection`](PaymentCollection.mdx)",
|
||||
"type": "`string` \\| [PaymentCollection](PaymentCollection.mdx)",
|
||||
"description": "the id of the payment collection",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -654,7 +654,7 @@ Manages multiple payment sessions of a payment collection.
|
||||
},
|
||||
{
|
||||
"name": "sessionsInput",
|
||||
"type": "[`PaymentCollectionsSessionsBatchInput`](../types/PaymentCollectionsSessionsBatchInput.mdx)[]",
|
||||
"type": "[PaymentCollectionsSessionsBatchInput](../types/PaymentCollectionsSessionsBatchInput.mdx)[]",
|
||||
"description": "array containing payment session info",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -674,12 +674,12 @@ Manages multiple payment sessions of a payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection and its payment sessions.",
|
||||
@@ -692,14 +692,14 @@ ___
|
||||
|
||||
### shouldRetryTransaction\_
|
||||
|
||||
`Protected` **shouldRetryTransaction_**(`err`): `boolean`
|
||||
`Protected **shouldRetryTransaction_**(err): boolean`
|
||||
|
||||
#### Parameters
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "err",
|
||||
"type": "Record<`string`, `unknown`\\> \\| { `code`: `string` }",
|
||||
"type": "`Record<string, unknown>` \\| `{ code: string }`",
|
||||
"description": "",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -728,7 +728,7 @@ ___
|
||||
|
||||
### update
|
||||
|
||||
**update**(`paymentCollectionId`, `data`): `Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
`**update**(paymentCollectionId, data): Promise<[PaymentCollection](PaymentCollection.mdx)>`
|
||||
|
||||
Updates a payment collection.
|
||||
|
||||
@@ -746,7 +746,7 @@ Updates a payment collection.
|
||||
},
|
||||
{
|
||||
"name": "data",
|
||||
"type": "`DeepPartial`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "DeepPartial<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"description": "info to be updated",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
@@ -757,12 +757,12 @@ Updates a payment collection.
|
||||
|
||||
#### Returns
|
||||
|
||||
`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\>
|
||||
Promise<[PaymentCollection](PaymentCollection.mdx)>
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "Promise",
|
||||
"type": "`Promise`<[`PaymentCollection`](PaymentCollection.mdx)\\>",
|
||||
"type": "Promise<[PaymentCollection](PaymentCollection.mdx)>",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "the payment collection updated.",
|
||||
@@ -775,14 +775,14 @@ ___
|
||||
|
||||
### withTransaction
|
||||
|
||||
**withTransaction**(`transactionManager?`): [`PaymentCollectionService`](PaymentCollectionService.mdx)
|
||||
`**withTransaction**(transactionManager?): [PaymentCollectionService](PaymentCollectionService.mdx)`
|
||||
|
||||
#### Parameters
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "transactionManager",
|
||||
"type": "`EntityManager`",
|
||||
"type": "EntityManager",
|
||||
"description": "",
|
||||
"optional": true,
|
||||
"defaultValue": "",
|
||||
@@ -793,12 +793,12 @@ ___
|
||||
|
||||
#### Returns
|
||||
|
||||
[`PaymentCollectionService`](PaymentCollectionService.mdx)
|
||||
[PaymentCollectionService](PaymentCollectionService.mdx)
|
||||
|
||||
<ParameterTypes parameters={[
|
||||
{
|
||||
"name": "default",
|
||||
"type": "[`PaymentCollectionService`](PaymentCollectionService.mdx)",
|
||||
"type": "[PaymentCollectionService](PaymentCollectionService.mdx)",
|
||||
"optional": false,
|
||||
"defaultValue": "",
|
||||
"description": "",
|
||||
|
||||
Reference in New Issue
Block a user